/* 
 * Magic Academy: Slime Survivor
 * Custom Glassmorphic & Neon Styling
 */

/* ==========================================
   1. Design System & Variables
   ========================================== */
:root {
    --bg-dark: #070414;
    --card-bg: rgba(20, 16, 42, 0.65);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-border-hover: rgba(255, 255, 255, 0.25);
    
    /* Neon Theme Colors */
    --neon-pink: #ff4a9e;
    --neon-pink-glow: rgba(255, 74, 158, 0.35);
    --neon-blue: #00f0ff;
    --neon-blue-glow: rgba(0, 240, 255, 0.35);
    --neon-purple: #bd00ff;
    --neon-purple-glow: rgba(189, 0, 255, 0.35);
    
    --xp-green: #39ff14;
    --xp-green-glow: rgba(57, 255, 20, 0.4);
    --gold-yellow: #ffd700;
    --gold-yellow-glow: rgba(255, 215, 0, 0.4);
    --danger-red: #ff3838;
    
    /* Text Colors */
    --text-main: #f5f4fa;
    --text-muted: #a09cb0;
    
    /* Fonts */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Jua', sans-serif;
}

/* ==========================================
   2. Reset & Core Structure
   ========================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
    -webkit-user-select: none;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-primary);
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#app-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    max-width: 1024px;
    max-height: 768px;
    background: radial-gradient(circle at 50% 50%, #150f38 0%, var(--bg-dark) 100%);
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
}

@media (min-width: 1025px) {
    #app-container {
        border-radius: 24px;
        border: 2px solid rgba(255, 255, 255, 0.05);
        height: 90vh;
        width: 95vw;
    }
}

/* Decorative background glow blobs */
.bg-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
}

.bg-glow-1 {
    background: var(--neon-purple);
    top: -100px;
    left: -100px;
    animation: floatingGlow 15s infinite ease-in-out alternate;
}

.bg-glow-2 {
    background: var(--neon-blue);
    bottom: -100px;
    right: -100px;
    animation: floatingGlow 20s infinite ease-in-out alternate-reverse;
}

@keyframes floatingGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, 50px) scale(1.2); }
}

/* Fonts and Helper Utilities */
.font-outfit {
    font-family: var(--font-primary);
}
.hidden {
    display: none !important;
}
.highlight {
    color: var(--neon-blue);
    text-shadow: 0 0 15px var(--neon-blue-glow);
}

/* ==========================================
   3. Glassmorphism Screen Overlay Base
   ========================================== */
.overlay-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    background: rgba(7, 4, 20, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.overlay-screen.active {
    opacity: 1;
    pointer-events: auto;
}

.blur-bg {
    background: rgba(7, 4, 20, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 28px;
    padding: 35px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 11;
}

.large-modal {
    max-width: 800px;
}

/* Animations */
.animate-pop {
    transform: scale(0.85);
    opacity: 0;
    animation: popIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popIn {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ==========================================
   4. Start Screen Style
   ========================================== */
#start-screen {
    background: radial-gradient(circle at 50% 50%, rgba(20, 15, 48, 0.8) 0%, rgba(7, 4, 20, 0.95) 100%);
    z-index: 12;
}

.game-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, #fff 0%, #a29bfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 35px;
    font-weight: 300;
}

/* Character Select Cards */
.character-select-container {
    width: 100%;
    max-width: 850px;
    margin-bottom: 35px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.character-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
}

@media (max-width: 768px) {
    .character-cards {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

.character-card {
    flex: 1;
    max-width: 250px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.character-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: background 0.3s;
}

.card-inner {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.char-avatar {
    font-size: 3.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin-bottom: 15px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.char-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.char-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
    height: 34px;
    display: flex;
    align-items: center;
}

.char-weapon {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 4px 12px;
    margin-bottom: 15px;
    color: #e2dbff;
    font-weight: 600;
}

.char-stats {
    display: flex;
    gap: 8px;
}

.stat-badge {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.stat-badge.hp { color: #5efb78; }
.stat-badge.speed { color: #5ec7fb; }

/* Interactive Hover & Selected States */
.character-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.character-card:hover .char-avatar {
    transform: scale(1.1) rotate(5deg);
}

.character-card.selected {
    background: rgba(189, 0, 255, 0.08);
    box-shadow: 0 10px 30px rgba(189, 0, 255, 0.2);
}

.character-card.selected::before {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
}

.character-card.selected .char-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(189, 0, 255, 0.4);
    background: rgba(189, 0, 255, 0.2);
}

/* Individual character avatar custom glow themes */
.character-card[data-char="coco"].selected .char-avatar {
    background: rgba(255, 74, 158, 0.25);
    box-shadow: 0 0 20px var(--neon-pink-glow);
}
.character-card[data-char="luna"].selected .char-avatar {
    background: rgba(189, 0, 255, 0.25);
    box-shadow: 0 0 20px var(--neon-purple-glow);
}
.character-card[data-char="berry"].selected .char-avatar {
    background: rgba(0, 240, 255, 0.25);
    box-shadow: 0 0 20px var(--neon-blue-glow);
}

/* UI Buttons */
.menu-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    z-index: 10;
}

.menu-buttons.column {
    flex-direction: column;
    width: 100%;
}

.btn {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    padding: 14px 35px;
    border-radius: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.primary-btn {
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 100%);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 74, 158, 0.4);
    filter: brightness(1.1);
}

.primary-btn:active {
    transform: translateY(1px);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--card-border);
    color: var(--text-main);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: var(--card-border-hover);
}

.danger-btn {
    background: linear-gradient(135deg, #e84393 0%, var(--danger-red) 100%);
    color: white;
}

.danger-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 56, 56, 0.4);
}

.pulse {
    animation: pulsingBtn 2s infinite;
}

@keyframes pulsingBtn {
    0% { box-shadow: 0 0 0 0 rgba(255, 74, 158, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(255, 74, 158, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 74, 158, 0); }
}

.help-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 25px;
    font-weight: 300;
}

/* ==========================================
   5. Game Container & Live HUD
   ========================================== */
#game-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#game-canvas {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #0b0722;
}

/* HUD elements are placed absolutely over the canvas */

/* EXP Bar */
#xp-bar-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 24px;
    background: rgba(7, 4, 20, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 5;
    overflow: hidden;
}

#xp-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #12c2e9, #c471ed, #f64f59);
    box-shadow: 0 0 10px var(--xp-green-glow);
    transition: width 0.3s cubic-bezier(0.1, 0.8, 0.2, 1);
}

#xp-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

/* Header capsule stats */
#hud-header {
    position: absolute;
    top: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 5;
}

.hud-item {
    background: rgba(15, 12, 38, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hud-item .icon {
    font-size: 1rem;
}

.hud-item.timer { border-color: var(--neon-blue); color: var(--neon-blue); }
.hud-item.kills { border-color: var(--neon-pink); color: var(--neon-pink); }
.hud-item.gold { border-color: var(--gold-yellow); color: var(--gold-yellow); }

/* Left Health Bar */
#hud-health-container {
    position: absolute;
    top: 36px;
    left: 20px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.health-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    color: #fdcb6e;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.health-bar-bg {
    width: 160px;
    height: 18px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 9px;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

#hud-health-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #d63031, #ff7675);
    border-radius: 9px;
    box-shadow: 0 0 8px rgba(214, 48, 49, 0.6);
    transition: width 0.2s ease-out;
}

#hud-health-text {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-main);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Pause Control Button */
#btn-pause-trigger {
    position: absolute;
    top: 36px;
    right: 20px;
    z-index: 5;
    background: rgba(15, 12, 38, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    color: #fff;
    font-size: 1.2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.2s;
}

#btn-pause-trigger:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.08);
}

/* Mobile Virtual Joystick */
#joystick-container {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 120px;
    height: 120px;
    z-index: 5;
    display: none; /* Only activated via touch events */
}

#joystick-base {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#joystick-handle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
    position: absolute;
    transition: transform 0.05s ease-out;
}

/* ==========================================
   6. Level Up Modal Specifics
   ========================================== */
.celebration-particles {
    font-size: 2.2rem;
    margin-bottom: 5px;
    animation: celebrate 1s infinite alternate;
}

@keyframes celebrate {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.15) translateY(-5px); }
}

.level-badge {
    color: var(--neon-pink);
}

.upgrade-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 25px;
}

.upgrade-option-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid var(--card-border);
    border-radius: 20px;
    padding: 16px 20px;
    cursor: pointer;
    text-align: left;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.upgrade-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--neon-blue);
    opacity: 0.8;
}

.upgrade-option-card.new-skill::before { background: var(--neon-pink); }
.upgrade-option-card.stat-up::before { background: var(--gold-yellow); }

.upgrade-option-card .card-icon {
    font-size: 2.5rem;
    margin-right: 20px;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    transition: transform 0.2s;
}

.upgrade-option-card .card-details {
    flex: 1;
}

.upgrade-option-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.upgrade-option-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-main);
}

.upgrade-option-card .card-level {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    color: #e2dbff;
    padding: 2px 8px;
    border-radius: 8px;
    font-weight: 700;
}

.upgrade-option-card .card-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.3;
}

/* Card Selection Hover Interactivity */
.upgrade-option-card:hover {
    transform: translateX(8px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--card-border-hover);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.upgrade-option-card:hover .card-icon {
    transform: scale(1.1);
}

/* ==========================================
   7. Upgrade Shop Modal Specifics
   ========================================== */
.candy-balance {
    font-size: 1.25rem;
    margin-bottom: 25px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    padding: 8px 20px;
    display: inline-block;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.candy-balance .gold-count {
    color: var(--gold-yellow);
    font-weight: 800;
}

.shop-items-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
    margin-bottom: 30px;
    max-height: 350px;
    overflow-y: auto;
    padding-right: 5px;
}

@media (max-width: 768px) {
    .shop-items-container {
        grid-template-columns: 1fr;
        max-height: 300px;
    }
}

/* Custom Scrollbar for Shop */
.shop-items-container::-webkit-scrollbar {
    width: 6px;
}
.shop-items-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 3px;
}
.shop-items-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

.shop-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 12px 18px;
    text-align: left;
    transition: border-color 0.2s;
}

.shop-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.shop-item .item-icon {
    font-size: 2.2rem;
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.shop-item .item-details {
    flex: 1;
}

.shop-item .item-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 2px;
}

.shop-item .item-desc {
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.2;
    margin-bottom: 4px;
}

.shop-item .upgrade-level {
    font-size: 0.75rem;
    color: var(--neon-blue);
    font-weight: 700;
}

.shop-item .buy-btn {
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 12px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: var(--gold-yellow);
    white-space: nowrap;
    box-shadow: none;
}

.shop-item .buy-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    background: var(--gold-yellow);
    color: #000;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.shop-item .buy-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
}

/* ==========================================
   8. Pause Skill Items View
   ========================================== */
#pause-skills-list {
    margin-bottom: 25px;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

#pause-skills-list h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-muted);
    text-align: left;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.skill-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.skill-badge .badge-icon {
    font-size: 1.2rem;
}

.skill-badge .badge-lvl {
    background: var(--neon-blue);
    color: #000;
    font-weight: 800;
    font-size: 0.7rem;
    padding: 1px 5px;
    border-radius: 4px;
}

/* ==========================================
   9. Game Over / Victory Modal Specifics
   ========================================== */
.game-over-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
}

.game-stats-box {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    padding: 20px;
    width: 100%;
    margin: 25px 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
}

.stat-label {
    color: var(--text-muted);
}

.stat-val {
    font-weight: 700;
}

.highlight-row {
    margin-top: 5px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.25rem;
}

.highlight-row .stat-label {
    font-family: var(--font-heading);
    color: var(--gold-yellow);
}

.highlight-row .stat-val {
    color: var(--gold-yellow);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
