@font-face {
    font-family: 'Quadrat-Serial';
    src: url('./Quadrat-Serial Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.battleground-event-container {
    width: 628px;
    height: auto;
    margin-bottom: 10px;
    background: #29231b;
    border: 2px solid #474030;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 
        0 0 30px rgba(184, 134, 11, 0.3),
        inset 0 0 50px rgba(0, 0, 0, 0.7);
    position: relative;
    font-family: 'Quadrat-Serial', 'Cinzel', 'Times New Roman', serif;
    color: #d4af37;
    overflow: hidden;
}

.battleground-event-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(184, 134, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(184, 134, 11, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.battleground-event-container > * {
    position: relative;
    z-index: 2;
}

/* Keep content dimmed under loader to prevent flash on hard reload */
.battleground-event-container .loading-overlay { z-index: 60; }

.character-section {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 21px;
}

/* Event start countdown */
.event-countdown {
    direction: rtl;
    font-family: tahoma, Arial, sans-serif;
    font-size: 13px;
    font-weight: bold;
    background: rgba(0,0,0,0.35);
    padding: 6px 10px;
    border: 1px solid #5d5244;
    border-radius: 6px;
    color: #ffd700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 8px rgba(212,175,55,0.3) inset;
}
.event-countdown .cd-time {
    font-family: tahoma, monospace;
    letter-spacing: 1px;
    color: #ffec9a;
    text-shadow: 0 0 6px rgba(255,215,0,0.6);
}

.character-display {
    color: #d4af37;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Quadrat-Serial', 'Cinzel', 'Times New Roman', serif;
}

.character-label {
    color: #8d7e69;
    margin-right: 8px;
    font-family: 'Quadrat-Serial', 'Cinzel', 'Times New Roman', serif;
}

.character-name {
    color: #d4af37;
    font-family: 'Quadrat-Serial', 'Cinzel', 'Times New Roman', serif;
}

.offline-message {
    color: #8d7e69;
    font-size: 14px;
    font-style: italic;
    font-family: 'Quadrat-Serial', 'Cinzel', 'Times New Roman', serif;
    left: 120px;
    top:4px;
    direction:rtl;
}

.offline-text {
    color: #b8860b;
    font-family: 'Quadrat-Serial', 'Cinzel', 'Times New Roman', serif;
    direction:rtl;
}

.participate-btn {
    background: linear-gradient(135deg, #b8860b 0%, #daa520 50%, #b8860b 100%);
    border: 1px solid #ffd700;
    border-radius: 8px;
    padding: 8px 16px;
    color: #1a1106;
    font-weight: bold;
    font-size: 14px;
    font-family: tahoma;
    cursor: pointer;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    direction: rtl;
}

.participate-btn:hover {
    background: linear-gradient(135deg, #daa520 0%, #ffd700 50%, #daa520 100%);
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.xp-rules {
    text-align: center;
    color: #ffdc6a;
    font-size: 13px;
    font-weight: bold;
    font-family: 'Quadrat-Serial', 'Cinzel', 'Times New Roman', serif;
    margin-bottom: 7px;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.event-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    font-family: 'Quadrat-Serial', 'Cinzel', 'Times New Roman', serif;
    color: #e6c89c;
    margin-bottom: 20px;
    letter-spacing: 2px;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.xp-meter {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hexagon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.hexagon-border-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    z-index: 5;
}

.hexagon-border-svg {
    width: 100%;
    height: 100%;
}

.level-number {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #cfc89e;
    font-size: 28px;
    font-weight: bold;
    font-family: 'Quadrat-Serial', 'Cinzel', 'Times New Roman', serif;
    text-shadow: 0 0 10px rgb(39 37 27 / 90%), 0 0 20px rgba(255, 255, 255, 0.5);
    pointer-events: none;
    z-index: 6;
}

.hexagon-base .hexagon-side {
    fill: none;
    stroke: #5d5244;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 1px rgba(0,0,0,.5));
}

.hexagon-progress-side {
    fill: none;
    stroke: #ffd44a;
    stroke-width: 3.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 6px rgba(255, 212, 74, 0.8));
    transition: stroke-dashoffset 0.35s ease, stroke 0.2s ease, stroke-width 0.2s ease;
}

.hexagon-progress-side.off {
    stroke: rgba(255, 212, 74, 0.35);
    filter: none;
}


.xp-text {
    margin-top: -20px;
    font-size: 11px;
    font-family: 'Quadrat-Serial', 'Cinzel', 'Times New Roman', serif;
    color: #d4af37;
    text-align: center;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.milestone-container {
    margin: 30px 0 20px 0;
    padding: 0 20px;
}

.milestone-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.milestone-bar::before {
    content: '';
    position: absolute;
    top: 36%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #68563b 0%, #6affc5 150%);
    border-radius: 2px;
    z-index: 1;
}

.milestone-bar::after {
    content: '';
    position: absolute;
    top: 36%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #ffd700 0%, #b8860b 100%);
    border-radius: 2px;
    z-index: 2;
    transform: translateY(-50%);
    transition: width 0.5s ease;
    width: 0%;
    z-index: 1;
}

.milestone-bar.progress-0::after {
    width: 0%;
}

.milestone-bar.progress-30::after {
    width: 25%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.milestone-bar.progress-50::after {
    width: 50%;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.7);
}

.milestone-bar.progress-75::after {
    width: 75%;
    box-shadow: 0 0 13px rgba(255, 215, 0, 0.75);
}

.milestone-bar.progress-100::after {
    width: 90%;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.milestone-bar::after {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.milestone-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.milestone-icon.unlocked {
    border-color: #ffd700;
    background: linear-gradient(135deg, #8b4513 0%, #b8860b 100%);
    box-shadow: 
        0 0 15px rgba(255, 215, 0, 0.6),
        inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.milestone-icon.locked {
    border-color: #4f402a;
    background: #251f14;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.milestone-icon.claimed {
    border-color: #4fa348;
    background: #236016;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.7);
    /* Let the lock badge overlap the border */
    overflow: visible;
}


/* Milestone-specific images */
.milestone-icon[data-milestone="30"] {
    background-image: url('../img/30.jpg');
}

.milestone-icon[data-milestone="50"] {
    background-image: url('../img/50.jpg');
}

.milestone-icon[data-milestone="75"] {
    background-image: url('../img/75.jpg');
}

.milestone-icon[data-milestone="100"] {
    background-image: url('../img/100.jpg');
}

/* Add overlay for better text visibility */
.milestone-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.milestone-icon.unlocked::before {
    background: rgba(184, 134, 11, 0.2);
}

.milestone-icon.claimed::before {
    background: rgba(79, 163, 72, 0.3);
}

/* Make sure reward icon stays on top */
.reward-icon {
    position: relative;
    z-index: 2;
}

.milestone.claimed {
    cursor: not-allowed;
}

.reward-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.claimed-reward {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Move the claimed lock badge to bottom-right within the milestone tile */
.milestone-icon .claimed-reward {
    position: absolute;
    bottom: -12px; /* overlap border */
    right: -10px;  /* overlap border */
    width: 20px;
    height: 20px;
    border-radius: 2px;
    font-size: 12px;
    z-index: 3;
    background: rgb(99 33 33);
    border: 1px solid #a34848;
    box-shadow: 0 0 6px rgba(79, 163, 72, 0.4);
}

@keyframes rewardGlow {
    0% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.6); }
    100% { box-shadow: 0 0 20px rgba(255, 215, 0, 1); }
}

.milestone-number {
    font-size: 12px;
    font-weight: bold;
    font-family: 'Quadrat-Serial', 'Cinzel', 'Times New Roman', serif;
    color: #bfac6f;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.milestone-title {
    margin-top: 2px;
    font-size: 11px;
    color: #8d7e69;
    font-family: tahoma;
    text-align: center;
    max-width: 100px;
}

.milestone-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.95);
    color: #FFD700;
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #DAA520;
    font-size: 12px;
    font-family: 'Quadrat-Serial', 'Cinzel', 'Times New Roman', serif;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-bottom: 10px;
}

.milestone:hover .milestone-tooltip {
    opacity: 1;
    visibility: visible;
}

.milestone-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #DAA520;
}

.unlocked-text {
    color: #90EE90;
    font-weight: bold;
}

.claimed-text {
    color: #888888;
    font-weight: bold;
}

.event-end {
    text-align: center;
    color: #8d7e69;
    font-size: 12px;
    font-family: 'Quadrat-Serial', 'Cinzel', 'Times New Roman', serif;
    margin-top: 20px;
    text-shadow: 0 0 8px rgba(141, 126, 105, 0.6);
}

.hero-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #252017;
    border: 2px solid #44382d;
    border-radius: 12px;
    padding: 20px;
    width: 400px;
    font-family: 'Quadrat-Serial', 'Cinzel', 'Times New Roman', serif;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #4b4130;
    padding-bottom: 10px;
    direction: rtl;
}

.modal-header h3 {
    color: #c3ad87;
    margin: 0;
    font-family: tahoma;
}

.close-modal {
    font-size: 24px;
    color: #d4af37;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.hero-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-option {
    display: flex;
    align-items: center;
    padding: 10px;
    background: rgba(26, 17, 6, 0.5);
    border: 1px solid #666;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-option:hover {
    border-color: #b8860b;
    background: rgba(184, 134, 11, 0.1);
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.3);
}

.hero-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b8860b 0%, #ffd700 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'Quadrat-Serial', 'Cinzel', 'Times New Roman', serif;
    color: #1a1106;
    margin-right: 15px;
    border: 2px solid #ffd700;
}

.hero-option span {
    color: #decd97;
    font-weight: bold;
    font-family: tahoma;
    flex: 1;
}

.hero-option small {
    color: #b9a07d;
    font-size: 11px;
    font-family: arial;
}

.hero-option.registered-character {
    border-color: #228B22;
    background: rgba(34, 139, 34, 0.1);
}

.hero-option.locked-character {
    opacity: 0.7;
    cursor: not-allowed !important;
    border-color: #6c5c3f !important;
    background: rgb(75 65 47) !important;
}

.hero-option.locked-character:hover {
    border-color: #888888 !important;
    background: rgba(136, 136, 136, 0.1) !important;
}

.hero-option.registered-character:hover {
    border-color: #32CD32;
    background: rgba(50, 205, 50, 0.2);
    box-shadow: 0 0 15px rgba(50, 205, 50, 0.3);
}

.hero-option.new-character {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.hero-option.new-character:hover {
    border-color: #FFA500;
    background: rgba(255, 165, 0, 0.2);
}

.hero-option.change-character {
    border-color: #6c5d42;
    background: rgb(37 32 23);
}

.hero-option.change-character:hover {
    border-color: #776d54;
    background: rgb(63 58 45);
}

.hero-option.selected-character {
    border: 2px solid #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.hero-option.new-character small::after {
    content: " ⭐";
    color: #FFD700;
}

.hero-option.change-character small::after {
    color: #FF8C00;
}

#changeCharacterBtn {
    background: #5c1919;
    border: 1px solid #cd753f;
    font-size: 12px;
    padding: 4px 8px;
    color:#ffdbc5;
    margin-left: 10px;
}

#changeCharacterBtn:hover {
    background: linear-gradient(135deg, #A0522D 0%, #CD853F 50%, #A0522D 100%);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(205, 133, 63, 0.4);
}

@media (max-width: 700px) {
    .battleground-event-container {
        width: 95%;
        margin: 0 auto;
    }
    
    .xp-meter {
        position: static;
        margin: 20px auto;
    }
    
    .event-title {
        font-size: 24px;
    }
    
    .hexagon {
        width: 70px;
        height: 70px;
    }
    
    .level-number {
        font-size: 20px;
    }
}

body.modal-open {
    overflow: hidden;
}

.level-locked-note {
    color: #8a7c62;
    font-size: 11px;
    font-family:tahoma;
    margin-left: 10px;
}

.hero-section-title {
    color: #897550;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 5px;
    font-family: tahoma;
}

.hero-section-title.rtl {
    direction: rtl;
}

.locked-text { color: #FF6B6B; }

.change-locked-box {
    color: #FF6B6B;
    text-align: center;
    font-family:tahoma;
    padding: 20px;
    border: 1px solid #FF6B6B;
    border-radius: 5px;
    margin: 15px 0;
}

.no-characters {
    color: #d4af37;
    text-align: center;
    padding: 20px;
}

.muted-text { color: #8d7e69; }

/* Intro Overlay */
.intro-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(1px);
}

.intro-card {
    width: 92%;
    max-width: 560px;
    background: #252017;
    border: 2px solid #44382d;
    border-radius: 12px;
    box-shadow: 0 0 24px rgba(184,134,11,0.35), inset 0 0 30px rgba(0,0,0,0.6);
    padding: 18px 18px 14px;
    color: #decd97;
    font-family: 'Quadrat-Serial', 'Cinzel', 'Times New Roman', serif;
}

.intro-header {
    border-bottom: 1px solid #4b4130;
    margin-bottom: 12px;
    text-align:right;
    direction:rtl;
}
.intro-header h3 {
    margin-bottom: 10px;
    color: #e6c89c;
    font-family: tahoma;
    font-size: 18px;
}

.intro-body { color: #c9b88f; font-size: 13px; }
.intro-body.rtl { direction: rtl; text-align: right; font-family:tahoma;}
.intro-points { margin: 10px 0 0; padding: 0 18px; }
.intro-points li { margin: 6px 0; color: #bfac6f; }
.intro-points strong { color: #ffd700; }

.intro-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 14px;
}

.intro-start-btn {
    background: linear-gradient(135deg, #b8860b 0%, #daa520 50%, #b8860b 100%);
    border: 1px solid #ffd700;
    border-radius: 8px;
    padding: 8px 16px;
    color: #1a1106;
    font-weight: bold;
    font-size: 14px;
    font-family: tahoma;
    cursor: pointer;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}
.intro-start-btn:hover {
    background: linear-gradient(135deg, #daa520 0%, #ffd700 50%, #daa520 100%);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.4);
    transform: translateY(-1px);
}

/* Loading Overlay */
.loading-overlay {
    position: absolute;
    inset: 0;
    background: rgb(37 32 23);
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1; /* visible from first paint */
}
.loading-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
}
.loading-wowzone {
    display: inline-flex;
    gap: 6px;
    font-family: 'Quadrat-Serial', 'Cinzel', 'Times New Roman', serif;
    font-size: 28px;
    letter-spacing: 2px;
}
.loading-wowzone span {
    color: #897a5c; /* base dim color */
    text-shadow: 0 0 6px rgba(0,0,0,0.35);
    animation: wzLetter 1.4s ease-in-out infinite;
}
.loading-wowzone span:nth-child(1) { animation-delay: 0s; }
.loading-wowzone span:nth-child(2) { animation-delay: 0.1s; }
.loading-wowzone span:nth-child(3) { animation-delay: 0.2s; }
.loading-wowzone span:nth-child(4) { animation-delay: 0.3s; }
.loading-wowzone span:nth-child(5) { animation-delay: 0.4s; }
.loading-wowzone span:nth-child(6) { animation-delay: 0.5s; }
.loading-wowzone span:nth-child(7) { animation-delay: 0.6s; }

@keyframes wzLetter {
    0% { color: #897a5c; filter: none; text-shadow: 0 0 6px rgba(0,0,0,0.35); }
    35% { color: #d4af37; text-shadow: 0 0 10px rgba(212,175,55,0.75), 0 0 16px rgba(212,175,55,0.35); }
    70% { color: #897a5c; text-shadow: 0 0 6px rgba(0,0,0,0.35); }
    100% { color: #897a5c; text-shadow: 0 0 6px rgba(0,0,0,0.35); }
}

/* Tiny help button to reopen intro */
.intro-help-row { text-align: center; margin-top: 8px; }
.intro-help-btn {
    padding: 3px 10px;
    font-size: 11px;
    line-height: 1.3;
    border-radius: 6px;
    background: #3a311f;
    color: #decd97;
    border: 1px solid #6c5d42;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: tahoma;
}
.intro-help-btn:hover {
    color: #1a1106;
    background: linear-gradient(135deg, #b8860b 0%, #ffd700 100%);
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.35);
}

/* Coachmark tooltips (guided hints) */
.wz-coachmark {
    position: absolute;
    z-index: 1200;
    pointer-events: none; /* allow clicks to pass through except on bubble */
    opacity: 0;
    transition: opacity 240ms ease;
}
.wz-coachmark.is-visible { opacity: 1; }
.wz-coachmark .bubble {
    pointer-events: auto;
    background: rgba(20, 16, 10, 0.96);
    color: #decd97;
    border: 1px solid #DAA520;
    border-radius: 8px;
    padding: 10px 12px;
    min-width: 220px;
    max-width: 280px;
    font-size: 12px;
    line-height: 1.6;
    direction: rtl;
    box-shadow: 0 6px 20px rgba(0,0,0,0.45), 0 0 14px rgba(218,165,32,0.15);
    animation: wzFloat 1.6s ease-in-out infinite;
}
.wz-coachmark .bubble:hover { animation-play-state: paused; }
.wz-coachmark .bubble .ok-btn {
    display: inline-block;
    margin-top: 8px;
    background: linear-gradient(135deg, #b8860b 0%, #daa520 50%, #b8860b 100%);
    border: 1px solid #ffd700;
    border-radius: 6px;
    padding: 4px 10px;
    color: #1a1106;
    font-weight: bold;
    font-size: 12px;
    font-family: tahoma;
    cursor: pointer;
}
.wz-coachmark .arrow {
    position: absolute;
    width: 0; height: 0;
    border: 8px solid transparent;
    animation: wzFloat 1.6s ease-in-out infinite;
}
.wz-coachmark .bubble:hover + .arrow { animation-play-state: paused; }
.wz-coachmark.top .arrow {
    border-top-color: #DAA520;
    bottom: -12px; left: 20px;
}
.wz-coachmark.bottom .arrow {
    border-bottom-color: #DAA520;
    top: -12px; left: 20px;
}
@keyframes wzFloat {
    0% { transform: translateY(0); box-shadow: 0 6px 20px rgba(0,0,0,0.45), 0 0 14px rgba(218,165,32,0.15); }
    50% { transform: translateY(-4px); box-shadow: 0 10px 22px rgba(0,0,0,0.5), 0 0 18px rgba(218,165,32,0.22); }
    100% { transform: translateY(0); box-shadow: 0 6px 20px rgba(0,0,0,0.45), 0 0 14px rgba(218,165,32,0.15); }
}