/*
  Mortal Warhammer — Ultra Gothic Theme
  100x visual upgrade: advanced animations, particle effects, 3D transforms,
  faction-themed accents, animated gradients, gothic ornamental elements.
  Brand: Royal Midnight #002D4E, Fresh Growth #8DB23D, Executive Gold #C9A84C
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Outfit:wght@400;600;700;900&family=MedievalSharp&family=Cinzel:wght@400;600;700;900&family=Cinzel+Decorative:wght@400;700;900&display=swap');

/* ================================================================
   CSS Variables — Expanded Palette
   ================================================================ */
:root {
    --royal-midnight: #002D4E;
    --fresh-growth: #8DB23D;
    --executive-gold: #C9A84C;

    --wh-dark: #0a0a0f;
    --wh-darker: #050508;
    --wh-darkest: #020204;
    --wh-surface: #12121a;
    --wh-surface-light: #1a1a2a;
    --wh-surface-hover: #222238;
    --wh-border: #2a2a3a;
    --wh-border-light: #3a3a50;
    --wh-text: #e0ddd4;
    --wh-text-bright: #f5f3ec;
    --wh-text-muted: #8a8677;
    --wh-text-dim: #5a5850;

    --wh-red: #8b2020;
    --wh-red-bright: #c0392b;
    --wh-red-glow: rgba(192, 57, 43, 0.4);
    --wh-green: #27632a;
    --wh-green-bright: #8DB23D;
    --wh-green-glow: rgba(141, 178, 61, 0.4);
    --wh-blue: #1a3a5c;
    --wh-blue-bright: #4a9eff;
    --wh-purple: #3a1a5c;
    --wh-purple-bright: #7a3aff;

    --wh-gold: #C9A84C;
    --wh-gold-bright: #e0c060;
    --wh-gold-dim: #8a7a3a;
    --wh-gold-glow: rgba(201, 168, 76, 0.35);
    --wh-gold-ember: rgba(201, 168, 76, 0.15);

    /* Faction Colors */
    --faction-empire: #C9A84C;
    --faction-empire-bg: rgba(201, 168, 76, 0.08);
    --faction-greenskins: #5ca028;
    --faction-greenskins-bg: rgba(92, 160, 40, 0.08);
    --faction-highelves: #4a8aff;
    --faction-highelves-bg: rgba(74, 138, 255, 0.08);
    --faction-skaven: #6ab030;
    --faction-skaven-bg: rgba(106, 176, 48, 0.08);
    --faction-vampire: #9040c0;
    --faction-vampire-bg: rgba(144, 64, 192, 0.08);

    --shadow-deep: 0 12px 48px rgba(0, 0, 0, 0.7);
    --shadow-glow-gold: 0 0 30px rgba(201, 168, 76, 0.25);
    --shadow-glow-red: 0 0 30px rgba(192, 57, 43, 0.3);
    --shadow-glow-green: 0 0 30px rgba(141, 178, 61, 0.3);

    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ================================================================
   Keyframe Animations
   ================================================================ */
@keyframes shimmerGold {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes floatUp {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-20px); opacity: 0; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes borderGlow {
    0%, 100% { border-color: var(--wh-gold-dim); }
    50% { border-color: var(--wh-gold); }
}

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.8; }
    94% { opacity: 1; }
    96% { opacity: 0.9; }
    97% { opacity: 1; }
}

@keyframes rotateHue {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes textReveal {
    from { clip-path: inset(0 100% 0 0); }
    to { clip-path: inset(0 0 0 0); }
}

@keyframes statBarFill {
    from { width: 0%; }
    to { width: var(--fill-pct); }
}

@keyframes pulse-hp {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes vsFlash {
    0%, 100% { text-shadow: 0 0 10px rgba(192, 57, 43, 0.5); }
    50% { text-shadow: 0 0 40px rgba(192, 57, 43, 0.8), 0 0 80px rgba(192, 57, 43, 0.3); }
}

@keyframes victoryGlow {
    0%, 100% { text-shadow: 0 0 30px rgba(141, 178, 61, 0.3), 0 4px 8px rgba(0,0,0,0.8); }
    50% { text-shadow: 0 0 60px rgba(141, 178, 61, 0.6), 0 0 120px rgba(201, 168, 76, 0.2), 0 4px 8px rgba(0,0,0,0.8); }
}

@keyframes defeatPulse {
    0%, 100% { text-shadow: 0 0 30px rgba(192, 57, 43, 0.3), 0 4px 8px rgba(0,0,0,0.8); }
    50% { text-shadow: 0 0 60px rgba(192, 57, 43, 0.6), 0 0 120px rgba(139, 32, 32, 0.2), 0 4px 8px rgba(0,0,0,0.8); }
}

@keyframes cardEntrance {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes ornamentFade {
    from { opacity: 0; width: 0; }
    to { opacity: 1; width: 80px; }
}

@keyframes emberDrift {
    0% { transform: translateY(0) scale(1); opacity: 0.8; }
    50% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
}

/* ================================================================
   Global Reset & Base
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--wh-gold-dim) var(--wh-darker);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--wh-darkest);
    color: var(--wh-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--wh-darkest); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--wh-gold-dim), var(--wh-border));
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--wh-gold); }

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    color: var(--wh-gold);
    font-weight: 700;
    letter-spacing: 0.03em;
}

a { color: var(--wh-gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--wh-gold-bright); }

::selection {
    background: rgba(201, 168, 76, 0.3);
    color: var(--wh-text-bright);
}

/* ================================================================
   Particle Canvas Background
   ================================================================ */
#particle-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* ================================================================
   Navigation — Frosted Glass
   ================================================================ */
.nav-glass {
    background: linear-gradient(180deg,
        rgba(10, 10, 15, 0.95) 0%,
        rgba(10, 10, 15, 0.88) 100%);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding: 0.8rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Subtle gold line at bottom */
.nav-glass::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(201, 168, 76, 0.4),
        rgba(201, 168, 76, 0.6),
        rgba(201, 168, 76, 0.4),
        transparent);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--wh-gold);
    font-family: 'Cinzel Decorative', cursive;
    font-size: 1.2rem;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}
.nav-brand:hover {
    color: var(--wh-gold-bright);
    text-shadow: 0 0 20px var(--wh-gold-glow);
}
.brand-icon {
    font-size: 1.6rem;
    filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.4));
    animation: flicker 8s infinite;
}
.brand-text {
    background: linear-gradient(90deg, var(--wh-gold), var(--wh-gold-bright), var(--wh-gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-tag {
    font-size: 0.6rem;
    color: var(--wh-text-dim);
    border: 1px solid rgba(42, 42, 58, 0.6);
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    background: rgba(10, 10, 15, 0.5);
}

/* ================================================================
   Hero Section — Dramatic
   ================================================================ */
.hero-section {
    text-align: center;
    padding: 5rem 2rem 3rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(139, 32, 32, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, var(--wh-dark) 0%, var(--wh-darkest) 100%);
}

/* Gothic ornamental line */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background:
        linear-gradient(90deg,
            transparent 0%,
            var(--wh-gold-dim) 15%,
            var(--wh-gold) 30%,
            var(--wh-gold-bright) 50%,
            var(--wh-gold) 70%,
            var(--wh-gold-dim) 85%,
            transparent 100%);
    box-shadow: 0 0 20px var(--wh-gold-glow);
}

/* Decorative corner ornaments */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        /* Top left corner ornament */
        radial-gradient(circle at 5% 5%, rgba(201, 168, 76, 0.04) 0%, transparent 15%),
        /* Top right corner ornament */
        radial-gradient(circle at 95% 5%, rgba(201, 168, 76, 0.04) 0%, transparent 15%),
        /* Center vignette */
        radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.hero-title {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 4.5rem;
    font-weight: 900;
    color: transparent;
    background: linear-gradient(180deg,
        #f0d878 0%,
        #C9A84C 40%,
        #a08030 70%,
        #C9A84C 100%);
    background-size: 100% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: none;
    letter-spacing: 0.12em;
    margin-bottom: 0.4rem;
    position: relative;
    animation: fadeInDown 1s ease-out;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 40px rgba(201, 168, 76, 0.2));
}

/* Ornamental divider below title */
.hero-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 2px;
    margin: 0.6rem auto 0;
    background: linear-gradient(90deg, transparent, var(--wh-gold), transparent);
}

.hero-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--wh-text-muted);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.05em;
    animation: fadeInUp 1s ease-out 0.3s both;
    margin-top: 0.8rem;
}

/* ================================================================
   Container — Elevated
   ================================================================ */
.container {
    max-width: 1200px;
    margin: 2.5rem auto;
    padding: 2.5rem;
    background: linear-gradient(180deg,
        rgba(18, 18, 26, 0.95) 0%,
        rgba(12, 12, 18, 0.98) 100%);
    border-radius: 16px;
    border: 1px solid rgba(42, 42, 58, 0.5);
    box-shadow:
        var(--shadow-deep),
        inset 0 1px 0 rgba(201, 168, 76, 0.05);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

/* Subtle corner accents */
.container::before,
.container::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: rgba(201, 168, 76, 0.2);
    border-style: solid;
    pointer-events: none;
}
.container::before {
    top: -1px; left: -1px;
    border-width: 2px 0 0 2px;
    border-radius: 16px 0 0 0;
}
.container::after {
    bottom: -1px; right: -1px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 16px 0;
}

.section-title {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    text-align: center;
    position: relative;
    letter-spacing: 0.06em;
    color: var(--wh-gold);
}

/* Ornamental divider under section titles */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        var(--wh-gold-dim),
        var(--wh-gold),
        var(--wh-gold-dim),
        transparent);
}

/* Diamond ornament in center of divider */
.section-title::before {
    content: '\25C6';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: var(--wh-gold);
    background: var(--wh-surface);
    padding: 0 8px;
    z-index: 1;
}

/* ================================================================
   Character Cards — Faction-Themed, 3D
   ================================================================ */
.character-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    perspective: 1000px;
}

.character-card {
    background: linear-gradient(180deg,
        var(--wh-surface-light) 0%,
        var(--wh-surface) 100%);
    border: 1px solid var(--wh-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: cardEntrance 0.6s ease-out both;
}
.character-card:nth-child(1) { animation-delay: 0.05s; }
.character-card:nth-child(2) { animation-delay: 0.15s; }
.character-card:nth-child(3) { animation-delay: 0.25s; }
.character-card:nth-child(4) { animation-delay: 0.35s; }
.character-card:nth-child(5) { animation-delay: 0.45s; }

/* Faction top accent bar */
.character-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--wh-gold-dim);
    transition: var(--transition-smooth);
    z-index: 2;
}

.character-card:hover {
    border-color: var(--wh-gold-dim);
    box-shadow: var(--shadow-glow-gold), 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(-6px) scale(1.01);
}
.character-card:hover::before {
    background: var(--wh-gold);
    box-shadow: 0 0 20px var(--wh-gold-glow);
}

.character-card.selected {
    border-color: var(--wh-gold);
    box-shadow: 0 0 40px var(--wh-gold-glow), 0 0 80px rgba(201, 168, 76, 0.1);
    transform: translateY(-4px);
}
.character-card.selected::before {
    height: 4px;
    background: linear-gradient(90deg, var(--wh-gold), var(--wh-gold-bright), var(--wh-gold));
    box-shadow: 0 0 30px var(--wh-gold-glow);
}

/* Faction-specific accent colors */
.character-card[data-faction="THE EMPIRE"]::before { background: var(--faction-empire); }
.character-card[data-faction="THE EMPIRE"]:hover { box-shadow: 0 0 30px rgba(201, 168, 76, 0.3), 0 20px 60px rgba(0,0,0,0.5); }

.character-card[data-faction="GREENSKINS"]::before { background: var(--faction-greenskins); }
.character-card[data-faction="GREENSKINS"]:hover { box-shadow: 0 0 30px rgba(92, 160, 40, 0.3), 0 20px 60px rgba(0,0,0,0.5); }

.character-card[data-faction="HIGH ELVES"]::before { background: var(--faction-highelves); }
.character-card[data-faction="HIGH ELVES"]:hover { box-shadow: 0 0 30px rgba(74, 138, 255, 0.3), 0 20px 60px rgba(0,0,0,0.5); }

.character-card[data-faction="SKAVEN"]::before { background: var(--faction-skaven); }
.character-card[data-faction="SKAVEN"]:hover { box-shadow: 0 0 30px rgba(106, 176, 48, 0.3), 0 20px 60px rgba(0,0,0,0.5); }

.character-card[data-faction="VAMPIRE COUNTS"]::before { background: var(--faction-vampire); }
.character-card[data-faction="VAMPIRE COUNTS"]:hover { box-shadow: 0 0 30px rgba(144, 64, 192, 0.3), 0 20px 60px rgba(0,0,0,0.5); }

/* Card Header — with faction gradient */
.card-header {
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg,
        rgba(0, 45, 78, 0.4) 0%,
        rgba(10, 10, 15, 0.8) 100%);
    border-bottom: 1px solid rgba(42, 42, 58, 0.5);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faction-badge {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--wh-gold);
    padding: 0.15rem 0.6rem;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 3px;
    background: rgba(201, 168, 76, 0.05);
}

/* Character Preview Canvas */
.char-preview-canvas {
    display: block;
    margin: 0.5rem auto;
    background: radial-gradient(ellipse at 50% 80%,
        rgba(20, 20, 30, 0.8) 0%,
        transparent 70%);
    border-radius: 4px;
}

/* Card Body */
.card-body {
    padding: 1.2rem;
    flex: 1;
}

.char-name {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 1.3rem;
    margin-bottom: 0.15rem;
    letter-spacing: 0.04em;
    color: var(--wh-gold);
}

.char-title {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    color: var(--wh-text-muted);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 0.9rem;
    letter-spacing: 0.03em;
}

/* Stat Grid — Enhanced with bars */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stat {
    text-align: center;
    padding: 0.5rem 0.3rem;
    background: linear-gradient(180deg,
        rgba(10, 10, 15, 0.8) 0%,
        rgba(10, 10, 15, 0.5) 100%);
    border-radius: 8px;
    border: 1px solid rgba(42, 42, 58, 0.4);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.stat:hover {
    border-color: rgba(201, 168, 76, 0.3);
    background: linear-gradient(180deg,
        rgba(10, 10, 15, 0.9) 0%,
        rgba(201, 168, 76, 0.03) 100%);
}

/* Subtle bottom fill indicator on stats */
.stat::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    border-radius: 0 0 8px 8px;
    transition: height 0.3s, opacity 0.3s;
    opacity: 0.6;
}
.stat:hover::after { height: 3px; opacity: 1; }

.stat-label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--wh-text-dim);
    margin-bottom: 0.15rem;
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

.hp-value { color: var(--wh-green-bright); }
.hp-value + .stat-label ~ .stat::after,
.stat:has(.hp-value)::after { background: var(--wh-green-bright); }

.atk-value { color: var(--wh-red-bright); }
.stat:has(.atk-value)::after { background: var(--wh-red-bright); }

.def-value { color: var(--wh-blue-bright); }
.stat:has(.def-value)::after { background: var(--wh-blue-bright); }

.spd-value { color: var(--wh-gold); }
.stat:has(.spd-value)::after { background: var(--wh-gold); }

/* Special Ability */
.special-ability {
    background: linear-gradient(135deg,
        rgba(10, 10, 15, 0.7) 0%,
        rgba(201, 168, 76, 0.03) 100%);
    padding: 0.75rem 0.9rem;
    border-radius: 8px;
    margin-bottom: 0.7rem;
    border-left: 3px solid var(--wh-gold);
    font-size: 0.8rem;
    position: relative;
}
.special-ability::before {
    content: '\2726';
    position: absolute;
    top: 0.6rem;
    right: 0.7rem;
    color: rgba(201, 168, 76, 0.2);
    font-size: 1rem;
}

.special-ability strong {
    color: var(--wh-gold);
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.special-ability p {
    color: var(--wh-text-muted);
    margin-top: 0.25rem;
    line-height: 1.4;
}

/* Lore Text */
.lore-text {
    font-size: 0.73rem;
    color: var(--wh-text-dim);
    font-style: italic;
    line-height: 1.5;
    max-height: 4em;
    overflow: hidden;
    position: relative;
}
.lore-text::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1.5em;
    background: linear-gradient(transparent, var(--wh-surface-light));
}

/* Card Footer */
.card-footer {
    padding: 0.8rem 1.2rem;
    border-top: 1px solid rgba(42, 42, 58, 0.4);
    text-align: center;
    background: rgba(10, 10, 15, 0.3);
}

/* ================================================================
   Buttons — Dramatic
   ================================================================ */
.btn {
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

/* Shimmer effect on hover */
.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        transparent);
    transition: left 0.5s;
}
.btn:hover::before { left: 100%; }

.btn-select {
    background: transparent;
    color: var(--wh-gold);
    border: 1px solid var(--wh-gold-dim);
    width: 100%;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 10px 20px;
    transition: var(--transition-smooth);
}
.btn-select:hover {
    background: linear-gradient(135deg, var(--wh-gold), var(--wh-gold-bright));
    color: var(--wh-dark);
    box-shadow: 0 0 20px var(--wh-gold-glow);
    border-color: var(--wh-gold);
}
.character-card.selected .btn-select {
    background: linear-gradient(135deg, var(--wh-gold), var(--wh-gold-bright));
    color: var(--wh-dark);
    border-color: var(--wh-gold);
    box-shadow: 0 0 20px var(--wh-gold-glow);
}

.btn-fight {
    background: linear-gradient(135deg, #6a1515, var(--wh-red), #a02020);
    background-size: 200% 200%;
    color: white;
    font-family: 'Cinzel Decorative', cursive;
    font-size: 1.4rem;
    padding: 16px 50px;
    border: 2px solid var(--wh-red-bright);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 20px rgba(139, 32, 32, 0.3);
    animation: gradientMove 3s ease infinite;
}
.btn-fight:hover:not(:disabled) {
    background: linear-gradient(135deg, #a02020, #c03030, #a02020);
    box-shadow:
        0 0 40px rgba(192, 57, 43, 0.5),
        0 0 80px rgba(192, 57, 43, 0.2),
        0 8px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px) scale(1.02);
    border-color: #e04040;
}
.btn-fight:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    animation: none;
    box-shadow: none;
}

/* ================================================================
   Matchup Panel — Dramatic
   ================================================================ */
.matchup-panel {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: none;
    text-align: center;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

/* Ornamental top border */
.matchup-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        var(--wh-gold-dim),
        var(--wh-gold),
        var(--wh-gold-dim),
        transparent);
}

.matchup-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.matchup-char {
    text-align: center;
    min-width: 180px;
}
.matchup-label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--wh-text-dim);
    letter-spacing: 0.15em;
    margin-bottom: 0.3rem;
}
.matchup-name {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 1.6rem;
    color: var(--wh-gold);
    text-shadow: 0 0 20px var(--wh-gold-ember);
    display: block;
}

.matchup-vs {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--wh-red-bright);
    text-shadow: 0 0 30px var(--wh-red-glow);
    animation: vsFlash 2s ease-in-out infinite;
    position: relative;
}
.matchup-vs::before,
.matchup-vs::after {
    content: '\2014';
    font-size: 1.5rem;
    color: var(--wh-gold-dim);
    vertical-align: middle;
}
.matchup-vs::before { margin-right: 0.5rem; }
.matchup-vs::after { margin-left: 0.5rem; }

.npc-select {
    background: linear-gradient(180deg, var(--wh-dark), rgba(10, 10, 15, 0.9));
    color: var(--wh-text);
    border: 1px solid var(--wh-border);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    appearance: none;
    cursor: pointer;
    min-width: 200px;
}
.npc-select:focus {
    border-color: var(--wh-gold);
    outline: none;
    box-shadow: 0 0 15px var(--wh-gold-ember);
}
.npc-select:hover { border-color: var(--wh-gold-dim); }

/* Difficulty Selector */
.difficulty-select {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

/* ================================================================
   Result Page — Dramatic Victory/Defeat
   ================================================================ */
.result-container {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
}

.result-banner {
    padding: 3rem 2rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

/* Animated background for result banner */
.result-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.15;
    pointer-events: none;
}

.result-banner.victory {
    background: linear-gradient(135deg,
        rgba(39, 99, 42, 0.25) 0%,
        rgba(141, 178, 61, 0.08) 50%,
        rgba(201, 168, 76, 0.05) 100%);
    border: 1px solid rgba(141, 178, 61, 0.3);
    box-shadow:
        0 0 60px rgba(141, 178, 61, 0.1),
        inset 0 0 60px rgba(141, 178, 61, 0.03);
}
.result-banner.victory::before {
    background:
        radial-gradient(ellipse at 30% 20%, rgba(201, 168, 76, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(141, 178, 61, 0.1) 0%, transparent 50%);
}

.result-banner.defeat {
    background: linear-gradient(135deg,
        rgba(139, 32, 32, 0.25) 0%,
        rgba(80, 10, 10, 0.1) 50%,
        rgba(50, 0, 0, 0.05) 100%);
    border: 1px solid rgba(192, 57, 43, 0.3);
    box-shadow:
        0 0 60px rgba(192, 57, 43, 0.1),
        inset 0 0 60px rgba(192, 57, 43, 0.03);
}
.result-banner.defeat::before {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(139, 32, 32, 0.15) 0%, transparent 60%);
}

.result-banner.draw {
    background: linear-gradient(135deg,
        rgba(201, 168, 76, 0.15) 0%,
        rgba(138, 122, 58, 0.05) 100%);
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow:
        0 0 60px rgba(201, 168, 76, 0.05),
        inset 0 0 60px rgba(201, 168, 76, 0.02);
}

.result-title {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 4rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.15em;
    position: relative;
}
.victory .result-title {
    color: var(--wh-green-bright);
    animation: victoryGlow 3s ease-in-out infinite;
}
.defeat .result-title {
    color: var(--wh-red-bright);
    animation: defeatPulse 3s ease-in-out infinite;
}
.draw .result-title {
    color: var(--wh-gold);
}

/* Ornamental line under result title */
.result-title::after {
    content: '';
    display: block;
    width: 180px;
    height: 2px;
    margin: 0.8rem auto 0;
    border-radius: 1px;
}
.victory .result-title::after {
    background: linear-gradient(90deg, transparent, var(--wh-green-bright), transparent);
}
.defeat .result-title::after {
    background: linear-gradient(90deg, transparent, var(--wh-red-bright), transparent);
}
.draw .result-title::after {
    background: linear-gradient(90deg, transparent, var(--wh-gold), transparent);
}

.result-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--wh-text);
    font-weight: 400;
    letter-spacing: 0.05em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}
.result-meta {
    font-size: 0.75rem;
    color: var(--wh-text-dim);
    margin-top: 0.5rem;
    font-family: 'Inter', sans-serif;
}

/* Winner Portrait Canvas */
.result-portrait-wrap {
    margin: 2rem auto;
    position: relative;
    display: inline-block;
}
.result-portrait-canvas {
    display: block;
    border-radius: 12px;
    border: 2px solid var(--wh-gold-dim);
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.15), 0 8px 32px rgba(0,0,0,0.5);
}
.victory .result-portrait-canvas {
    border-color: rgba(141, 178, 61, 0.4);
    box-shadow: 0 0 40px rgba(141, 178, 61, 0.15), 0 8px 32px rgba(0,0,0,0.5);
}
.defeat .result-portrait-canvas {
    border-color: rgba(192, 57, 43, 0.4);
    box-shadow: 0 0 40px rgba(192, 57, 43, 0.15), 0 8px 32px rgba(0,0,0,0.5);
}

/* ================================================================
   Score Summary — Enhanced
   ================================================================ */
.score-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.score-fighter {
    text-align: center;
    min-width: 140px;
}
.score-name {
    display: block;
    font-family: 'Cinzel Decorative', cursive;
    font-size: 1.3rem;
    color: var(--wh-gold);
    margin-bottom: 0.2rem;
}
.score-faction {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    color: var(--wh-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.score-rounds {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--wh-text-bright);
    line-height: 1;
    margin: 0.4rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.score-divider {
    text-align: center;
    position: relative;
    padding: 0 1.5rem;
}
.score-divider::before,
.score-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--wh-gold-dim);
}
.score-divider::before { right: 100%; }
.score-divider::after { left: 100%; }

.score-label {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--wh-text-dim);
}

/* ================================================================
   Round Breakdown — Animated Cards
   ================================================================ */
.round-breakdown {
    margin-bottom: 2.5rem;
    text-align: left;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.round-card {
    background: linear-gradient(135deg,
        var(--wh-surface-light) 0%,
        var(--wh-surface) 100%);
    border: 1px solid var(--wh-border);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.round-card:hover {
    border-color: var(--wh-gold-dim);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.round-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1.2rem;
    background: linear-gradient(135deg,
        rgba(10, 10, 15, 0.7) 0%,
        rgba(10, 10, 15, 0.4) 100%);
    border-bottom: 1px solid rgba(42, 42, 58, 0.4);
}

.round-card-num {
    font-family: 'Cinzel', serif;
    color: var(--wh-gold);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.round-card-winner {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.15rem 0.6rem;
    border-radius: 4px;
}
.winner-player {
    color: var(--wh-green-bright);
    background: rgba(141, 178, 61, 0.1);
    border: 1px solid rgba(141, 178, 61, 0.2);
}
.winner-npc {
    color: var(--wh-red-bright);
    background: rgba(192, 57, 43, 0.1);
    border: 1px solid rgba(192, 57, 43, 0.2);
}

.round-card-body {
    padding: 0.85rem 1.2rem;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    align-items: center;
}
.round-hp { font-size: 0.85rem; }
.round-hp-label {
    color: var(--wh-text-muted);
    margin-right: 0.5rem;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
}
.round-hp-val { font-weight: 700; }
.player-hp { color: var(--wh-green-bright); }
.npc-hp { color: var(--wh-red-bright); }
.round-time {
    font-size: 0.75rem;
    color: var(--wh-text-dim);
    margin-left: auto;
}

/* ================================================================
   Final Stats — Enhanced
   ================================================================ */
.final-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.stat-block {
    text-align: center;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg,
        var(--wh-surface-light) 0%,
        var(--wh-surface) 100%);
    border: 1px solid var(--wh-border);
    border-radius: 10px;
    min-width: 180px;
    transition: var(--transition-smooth);
    position: relative;
}
.stat-block:hover {
    border-color: var(--wh-gold-dim);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.stat-block::before {
    content: '';
    position: absolute;
    top: 0; left: 20%; right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--wh-gold-dim), transparent);
    border-radius: 0 0 2px 2px;
}

.stat-block-label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--wh-text-dim);
    margin-bottom: 0.5rem;
}
.stat-block-val {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

/* ================================================================
   Result Actions — Enhanced
   ================================================================ */
.result-actions {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}
.result-actions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--wh-gold-dim), transparent);
}

.result-actions .btn-fight {
    display: inline-block;
    text-decoration: none;
}

/* ================================================================
   Battle Arena Page Styles
   ================================================================ */
body.game-active .nav-glass,
body.game-active .site-footer { display: none; }
body.game-active {
    background: #000;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
body.game-active main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
}

#game-canvas {
    image-rendering: auto;
    max-width: 100vw;
    max-height: 100vh;
    display: block;
}

#game-overlay {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--wh-text-dim);
    font-size: 0.7rem;
    font-family: 'Inter', sans-serif;
    z-index: 100;
    text-align: center;
    pointer-events: none;
    letter-spacing: 0.03em;
}

#controls-help {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg,
        rgba(5, 5, 8, 0.92) 0%,
        rgba(10, 10, 15, 0.88) 100%);
    backdrop-filter: blur(16px);
    padding: 18px 22px;
    border-radius: 12px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    color: var(--wh-text-muted);
    font-size: 0.72rem;
    font-family: 'Inter', sans-serif;
    z-index: 100;
    line-height: 1.8;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: opacity 0.5s, transform 0.5s;
    max-width: 280px;
}
#controls-help.fading {
    opacity: 0;
    transform: translateX(20px);
    pointer-events: none;
}

#controls-help strong {
    color: var(--wh-gold);
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.2rem;
}
#controls-help strong:not(:first-child) {
    margin-top: 0.6rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(42, 42, 58, 0.4);
}

#controls-help kbd {
    background: linear-gradient(180deg,
        rgba(18, 18, 26, 0.9) 0%,
        rgba(10, 10, 15, 0.9) 100%);
    padding: 2px 7px;
    border-radius: 4px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--wh-gold);
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ================================================================
   HP Bars (used in old battle, kept for compatibility)
   ================================================================ */
.hp-bar-container {
    position: relative;
    height: 26px;
    background: linear-gradient(180deg,
        rgba(10, 10, 15, 0.9) 0%,
        rgba(5, 5, 8, 0.9) 100%);
    border-radius: 5px;
    border: 1px solid var(--wh-border);
    overflow: hidden;
    margin-bottom: 0.5rem;
}
.hp-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s ease;
    position: relative;
}
.hp-bar::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 100%);
    border-radius: 4px 4px 0 0;
}
.hp-bar-player { background: linear-gradient(90deg, var(--wh-green), var(--wh-green-bright)); }
.hp-bar-npc { background: linear-gradient(90deg, var(--wh-red), var(--wh-red-bright)); }
.hp-bar.hp-warning { background: linear-gradient(90deg, #8a6a00, #c9a84c) !important; }
.hp-bar.hp-critical {
    background: linear-gradient(90deg, #5a0000, #a02020) !important;
    animation: pulse-hp 1s infinite;
}
.hp-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.03em;
}

/* ================================================================
   Alerts
   ================================================================ */
.alert {
    padding: 0.85rem 1.2rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid transparent;
    font-size: 0.85rem;
    backdrop-filter: blur(4px);
}
.alert-error {
    background: rgba(139, 32, 32, 0.15);
    color: #ff6b6b;
    border-left-color: var(--wh-red-bright);
    border: 1px solid rgba(192, 57, 43, 0.2);
    border-left-width: 4px;
}
.alert-success {
    background: rgba(39, 99, 42, 0.15);
    color: var(--wh-green-bright);
    border-left-color: var(--wh-green-bright);
    border: 1px solid rgba(141, 178, 61, 0.2);
    border-left-width: 4px;
}

/* ================================================================
   Footer — Refined
   ================================================================ */
.site-footer {
    margin-top: auto;
    padding: 2rem 2rem;
    text-align: center;
    font-size: 0.7rem;
    color: var(--wh-text-dim);
    border-top: 1px solid rgba(42, 42, 58, 0.3);
    background: linear-gradient(180deg,
        var(--wh-darkest) 0%,
        rgba(5, 5, 8, 0.98) 100%);
    position: relative;
    letter-spacing: 0.02em;
    line-height: 1.8;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: -1px; left: 15%; right: 15%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(201, 168, 76, 0.15),
        rgba(201, 168, 76, 0.25),
        rgba(201, 168, 76, 0.15),
        transparent);
}
.site-footer a {
    color: var(--wh-gold-dim);
    transition: color 0.3s;
}
.site-footer a:hover { color: var(--wh-gold); }

.site-footer p + p { margin-top: 0.3rem; }

/* ================================================================
   Responsive
   ================================================================ */
@media (max-width: 768px) {
    .hero-title { font-size: 2.8rem; }
    .hero-section { padding: 3rem 1.5rem 2rem; }
    .container { margin: 1.5rem 0.75rem; padding: 1.5rem; }
    .character-grid { grid-template-columns: 1fr; }
    .matchup-display { gap: 1.5rem; }
    .matchup-vs { font-size: 2rem; }
    .result-title { font-size: 2.8rem; }
    .score-summary { gap: 1.5rem; }
    .score-rounds { font-size: 2.5rem; }
    .final-stats { gap: 1rem; }
    .stat-block { min-width: 140px; padding: 1rem 1.2rem; }
    #controls-help { display: none; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; letter-spacing: 0.05em; }
    .hero-subtitle { font-size: 0.9rem; }
    .section-title { font-size: 1.3rem; }
    .matchup-name { font-size: 1.2rem; }
    .result-title { font-size: 2rem; }
    .btn-fight { font-size: 1.1rem; padding: 12px 30px; }
    .container { padding: 1rem; }
}

/* ================================================================
   Loading Overlay (for page transitions)
   ================================================================ */
.page-loading {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--wh-darkest);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
}
.page-loading.fade-out {
    opacity: 0;
    pointer-events: none;
}
.loading-spinner {
    width: 48px; height: 48px;
    border: 3px solid var(--wh-border);
    border-top-color: var(--wh-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ================================================================
   Particle Effect Ember Styles
   ================================================================ */
.ember-particle {
    position: fixed;
    width: 3px; height: 3px;
    background: var(--wh-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: emberDrift 6s linear infinite;
    box-shadow: 0 0 6px rgba(201, 168, 76, 0.4);
}

/* ================================================================
   Selection highlight ring on character cards
   ================================================================ */
.character-card.selected::after {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border: 2px solid var(--wh-gold);
    border-radius: 13px;
    pointer-events: none;
    animation: borderGlow 2s ease-in-out infinite;
    box-shadow: 0 0 20px var(--wh-gold-glow);
}
