/* ========== CSS Reset & Base Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    min-height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ========== App Wrapper & Container ========== */
.app-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    overflow: hidden;
}

/* Stadium lights effect */
.app-wrapper::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
    animation: lightSway 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Animated clouds */
.app-wrapper::after {
    content: '';
    position: fixed;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300"><defs><filter id="blur"><feGaussianBlur stdDeviation="5"/></filter></defs><g fill="white" opacity="0.1" filter="url(%23blur)"><circle cx="200" cy="150" r="80"/><circle cx="250" cy="150" r="60"/><circle cx="150" cy="150" r="60"/><circle cx="600" cy="100" r="70"/><circle cx="650" cy="100" r="50"/><circle cx="550" cy="100" r="50"/><circle cx="1000" cy="200" r="90"/><circle cx="1050" cy="200" r="70"/><circle cx="950" cy="200" r="70"/></g></svg>') repeat-x;
    animation: clouds 60s linear infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.game-container {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.85) 20%,
        rgba(255, 255, 255, 0.15) 45%,
        rgba(255, 255, 255, 0.05) 80%,
        rgba(255, 255, 255, 0.03) 100%
    );
    border-radius: 30px;
    padding: 5px 30px 5px;
    box-shadow: 
        /* Outer premium glow */
        0 0 50px rgba(255, 255, 255, 0.2),
        /* Main depth shadow */
        0 25px 50px rgba(0, 0, 0, 0.25),
        /* Mid-range shadow */
        0 15px 35px rgba(0, 0, 0, 0.15),
        /* Close shadow */
        0 8px 20px rgba(0, 0, 0, 0.1),
        /* Inner glass highlight */
        inset 0 3px 6px rgba(255, 255, 255, 0.6),
        /* Inner glass shadow */
        inset 0 -3px 6px rgba(0, 0, 0, 0.08),
        /* Subtle inner glow */
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    max-width: 600px;
    width: 100%;
    backdrop-filter: blur(25px) saturate(2.0);
    -webkit-backdrop-filter: blur(25px) saturate(2.0);
    position: relative;
    animation: slideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
    
    /* Classy thin border that respects border-radius */
    border: 2px solid rgba(255, 255, 255, 0.5);
}

/* Additional glass rim effect */
.game-container::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(0, 0, 0, 0.02) 75%,
        rgba(0, 0, 0, 0.05) 100%
    );
    border-radius: 26px;
    pointer-events: none;
    z-index: -1;
}

/* Subtle shine effect on container */
.game-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent
    );
    border-radius: 30px;
    pointer-events: none;
    z-index: 1;
    animation: containerShine 8s linear infinite;
}

/* ========== Logo & Branding ========== */
.game-logo {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto 0px;
    padding: 20px 10px 10px;
    transition: transform 0.3s ease;
}

.game-logo:hover {
    transform: scale(1.02);
}

.game-logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== XP Container ========== */
.xp-container {
    max-width: 430px;
    width: 100%;
    margin: 0 auto 15px auto;
    margin-top: 0px;
    border: 2px solid var(--league-color, #f92f60);
    border-radius: 12px;
    background: rgba(0,0,0,0.1);
    padding: 4px;
    box-shadow: 0 0 15px var(--league-color-light, #f92f6033);
}

.xp-bar {
    width: 100%;
    height: 14px;
    background: rgba(255,255,255,0.3);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.xp-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 20px,
        rgba(0, 0, 0, 0.02) 20px,
        rgba(0, 0, 0, 0.02) 21px
    );
    pointer-events: none;
}

.xp-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #8BC34A, #CDDC39, #8BC34A, #4CAF50);
    background-size: 200% 100%;
    width: 0%;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    position: relative;
    box-shadow: 
        0 0 20px rgba(76, 175, 80, 0.6),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
    animation: gradientShift 3s ease-in-out infinite;
}

.xp-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: xpShine 2s linear infinite;
}

.xp-text {
    text-align: center;
    font-size: 0.9em;
    color: #666;
    margin-top: 8px;
    font-weight: 600;
}

/* ========== Menu Bar (League dropdown + Stats) ========== */
.menu-bar {
    display: grid;
    grid-template-columns: repeat(9, 1fr); /* mirror sudoku columns */
    align-items: start;
    gap: 2px; /* same as grid cell gap */
    margin: 10px auto 15px auto;
    width: 100%;
    max-width: 430px;
    padding: 0 8px; /* match grid internal padding */
    overflow: visible; /* Allow dropdown to show outside bounds */
}

/* Position children in grid */
#league-dropdown { grid-column: 1 / span 4; }
.stats-stack     { grid-column: 5 / span 5; justify-self: end; }

/* League dropdown */
.league-btn {
    padding: 10px 22px;
    border-radius: 28px;
    background: linear-gradient(145deg, #4CAF50 0%, #45a049 100%);
    color: #ffffff;
    font-weight: 900;
    cursor: pointer;
    border: 3px solid #ffd700;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3), inset 0 2px 4px rgba(255,255,255,0.4);
    font-size: 0.9em;
    white-space: nowrap;
    position: relative;
    transition: transform 0.25s;
}

.league-btn::after { /* down-caret */
    content: "▼";
    font-size: 0.7em;
    margin-left: 6px;
}

.league-btn:hover { 
    transform: translateY(-2px) scale(1.03); 
}

.dropdown {
    position: relative;
    overflow: visible; /* Ensure dropdown can show */
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 8px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 10000; /* Very high to ensure visibility */
    min-width: 160px;
    display: none; /* toggled via .open */
}

.dropdown-menu.open { 
    display: block; 
}

.league-option {
    width: 100%;
    padding: 8px 16px;
    text-align: left;
    background: none;
    border: none;
    font-weight: 700;
    font-size: 0.8em;
    cursor: pointer;
    transition: background 0.25s;
    color: #1e3a5f;
}

.league-option:hover:not(.locked) {
    background: rgba(76,175,80,0.15);
}

.league-option.active {
    background: rgba(76,175,80,0.25);
}

.league-option.locked {
    opacity: 0.5;
    cursor: not-allowed;
}

.league-option.locked::after { /* lock emoji */
    content: ' 🔒';
}

/* Compact stats */
.stats-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background: rgba(255,255,255,0.9);
    border-radius: 18px;
    padding: 6px 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15), inset 0 1px 2px rgba(255,255,255,0.6);
    font-size: 0.85em;
    font-weight: 900;
    color: #1e3a5f;
    line-height: 1.4em;
}

.stats-stack span { 
    white-space: nowrap; 
}

.stats-sep { 
    color: #ffd700; 
    padding: 0 6px; 
}

/* ========== Game Status Bar ========== */
.game-status-bar {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    background: rgba(255,255,255,0.18) !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18), 0 1.5px 6px rgba(255,255,255,0.18) inset !important;
    border-radius: 22px !important;
    padding: 8px 18px !important;
    max-width: 420px !important;
    margin: 18px auto 18px auto !important;
    width: auto !important;
    flex-wrap: nowrap !important;
}

.status-item {
    text-align: center;
    font-weight: 700;
    color: #1e3a5f;
    padding: 8px 12px;
    min-width: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 12px;
}

.status-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.status-item span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.status-item span div:first-child {
    font-size: 1.3em;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.status-item span div:last-child {
    font-size: 0.9em;
    font-weight: 900;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* ========== Game Layout & Info Row ========== */
.game-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto 20px;
    flex-wrap: wrap;
}

.game-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 25px;
    gap: 15px;
    padding: 0 15px;
    max-width: 390px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: center;
}

.info-item {
    text-align: center;
    font-weight: 800;
    font-size: 1em;
    border-radius: 16px;
    backdrop-filter: blur(25px) saturate(1.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.4);
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Advanced glass effect layers */
    box-shadow: 
        /* Outer glow */
        0 0 20px rgba(255, 255, 255, 0.1),
        /* Main shadow */
        0 8px 32px rgba(0, 0, 0, 0.15),
        /* Inner highlight top */
        inset 0 2px 4px rgba(255, 255, 255, 0.6),
        /* Inner shadow bottom */
        inset 0 -2px 4px rgba(0, 0, 0, 0.1),
        /* Subtle depth shadows */
        0 2px 8px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.04);
}

/* Add glass inner border effect */
.info-item::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(0, 0, 0, 0.02) 75%,
        rgba(0, 0, 0, 0.05) 100%
    );
    border-radius: 14px;
    pointer-events: none;
    z-index: 1;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.info-item:hover::before {
    left: 100%;
}

.info-item span {
    position: relative;
    z-index: 3;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* NEW Game Card - Blue Theme */
.info-item:nth-child(1) {
    background: linear-gradient(145deg, 
        rgba(33, 150, 243, 0.95), 
        rgba(25, 118, 210, 0.9),
        rgba(21, 101, 192, 0.85)
    );
    box-shadow: 
        /* Outer blue glow */
        0 0 25px rgba(33, 150, 243, 0.4),
        /* Main shadow */
        0 8px 32px rgba(33, 150, 243, 0.35),
        /* Glass inner highlight */
        inset 0 2px 4px rgba(255, 255, 255, 0.7),
        /* Glass inner shadow */
        inset 0 -2px 4px rgba(0, 0, 0, 0.15),
        /* Depth layers */
        0 2px 8px rgba(33, 150, 243, 0.2),
        0 4px 16px rgba(33, 150, 243, 0.1);
    border-color: rgba(33, 150, 243, 0.7);
}

.info-item:nth-child(1) span {
    color: white;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9em;
    line-height: 1.1;
}

.info-item:nth-child(1):hover {
    background: linear-gradient(145deg, 
        rgba(33, 150, 243, 1), 
        rgba(25, 118, 210, 0.98),
        rgba(21, 101, 192, 0.95)
    );
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        /* Enhanced outer glow */
        0 0 35px rgba(33, 150, 243, 0.6),
        /* Elevated shadow */
        0 12px 40px rgba(33, 150, 243, 0.45),
        /* Brighter glass highlight */
        inset 0 2px 6px rgba(255, 255, 255, 0.8),
        /* Deeper glass shadow */
        inset 0 -2px 6px rgba(0, 0, 0, 0.2),
        /* Enhanced depth */
        0 4px 12px rgba(33, 150, 243, 0.3),
        0 8px 24px rgba(33, 150, 243, 0.15);
}

/* Settings Card - Gray Theme */
.info-item:nth-child(2) {
    background: linear-gradient(145deg, 
        rgba(96, 125, 139, 0.95), 
        rgba(69, 90, 100, 0.9),
        rgba(55, 71, 79, 0.85)
    );
    box-shadow: 
        /* Outer silver glow */
        0 0 25px rgba(96, 125, 139, 0.4),
        /* Main shadow */
        0 8px 32px rgba(96, 125, 139, 0.35),
        /* Glass inner highlight */
        inset 0 2px 4px rgba(255, 255, 255, 0.7),
        /* Glass inner shadow */
        inset 0 -2px 4px rgba(0, 0, 0, 0.15),
        /* Depth layers */
        0 2px 8px rgba(96, 125, 139, 0.2),
        0 4px 16px rgba(96, 125, 139, 0.1);
    border-color: rgba(96, 125, 139, 0.7);
}

.info-item:nth-child(2) span {
    color: white;
    font-size: 1.5em;
}

.info-item:nth-child(2):hover {
    background: linear-gradient(145deg, 
        rgba(96, 125, 139, 1), 
        rgba(69, 90, 100, 0.98),
        rgba(55, 71, 79, 0.95)
    );
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        /* Enhanced outer glow */
        0 0 35px rgba(96, 125, 139, 0.6),
        /* Elevated shadow */
        0 12px 40px rgba(96, 125, 139, 0.45),
        /* Brighter glass highlight */
        inset 0 2px 6px rgba(255, 255, 255, 0.8),
        /* Deeper glass shadow */
        inset 0 -2px 6px rgba(0, 0, 0, 0.2),
        /* Enhanced depth */
        0 4px 12px rgba(96, 125, 139, 0.3),
        0 8px 24px rgba(96, 125, 139, 0.15);
}

/* Edit Card - Green Theme */
.info-item:nth-child(3) {
    background: linear-gradient(145deg, 
        rgba(76, 175, 80, 0.95), 
        rgba(56, 142, 60, 0.9),
        rgba(46, 125, 50, 0.85)
    );
    box-shadow: 
        /* Outer green glow */
        0 0 25px rgba(76, 175, 80, 0.4),
        /* Main shadow */
        0 8px 32px rgba(76, 175, 80, 0.35),
        /* Glass inner highlight */
        inset 0 2px 4px rgba(255, 255, 255, 0.7),
        /* Glass inner shadow */
        inset 0 -2px 4px rgba(0, 0, 0, 0.15),
        /* Depth layers */
        0 2px 8px rgba(76, 175, 80, 0.2),
        0 4px 16px rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.7);
}

.info-item:nth-child(3) span {
    color: white;
}

.info-item:nth-child(3):hover {
    background: linear-gradient(145deg, 
        rgba(76, 175, 80, 1), 
        rgba(56, 142, 60, 0.98),
        rgba(46, 125, 50, 0.95)
    );
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        /* Enhanced outer glow */
        0 0 35px rgba(76, 175, 80, 0.6),
        /* Elevated shadow */
        0 12px 40px rgba(76, 175, 80, 0.45),
        /* Brighter glass highlight */
        inset 0 2px 6px rgba(255, 255, 255, 0.8),
        /* Deeper glass shadow */
        inset 0 -2px 6px rgba(0, 0, 0, 0.2),
        /* Enhanced depth */
        0 4px 12px rgba(76, 175, 80, 0.3),
        0 8px 24px rgba(76, 175, 80, 0.15);
}

/* Active/Press States */
.info-item:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

/* ========== Banner Ad Space ========== */
.banner-ad-space {
    height: 100px;
    width: 100%;
    max-width: 700px;
    margin: 30px auto;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    
    /* Glass effect layers */
    backdrop-filter: blur(15px) saturate(1.3);
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.15), 
        rgba(255, 255, 255, 0.08)
    );
    border: 2px solid rgba(255, 255, 255, 0.3);
    
    /* Advanced glass shadows */
    box-shadow: 
        /* Soft outer glow */
        0 0 20px rgba(255, 255, 255, 0.1),
        /* Main depth shadow */
        0 8px 25px rgba(0, 0, 0, 0.12),
        /* Inner glass highlight */
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        /* Inner glass shadow */
        inset 0 -2px 4px rgba(0, 0, 0, 0.08),
        /* Subtle depth layers */
        0 2px 8px rgba(0, 0, 0, 0.06),
        0 4px 16px rgba(0, 0, 0, 0.03);
        
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glass inner border effect for ad banner */
.banner-ad-space::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.03) 25%,
        rgba(255, 255, 255, 0.01) 50%,
        rgba(0, 0, 0, 0.01) 75%,
        rgba(0, 0, 0, 0.03) 100%
    );
    border-radius: 16px;
    pointer-events: none;
    z-index: 1;
}

/* Shine effect for ad banner */
.banner-ad-space::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255,255,255,0.15), 
        transparent
    );
    transition: left 0.8s ease;
    z-index: 2;
}

.banner-ad-space:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 
        /* Enhanced outer glow */
        0 0 30px rgba(255, 255, 255, 0.15),
        /* Elevated shadow */
        0 12px 35px rgba(0, 0, 0, 0.15),
        /* Brighter glass highlight */
        inset 0 2px 6px rgba(255, 255, 255, 0.5),
        /* Deeper glass shadow */
        inset 0 -2px 6px rgba(0, 0, 0, 0.1),
        /* Enhanced depth */
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.04);
}

.banner-ad-space:hover::after {
    left: 100%;
}

.banner-ad-space a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
}

.banner-ad-space img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    transition: all 0.3s ease;
}

/* ========== Overlay ========== */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: none;
    z-index: 999;
    animation: fadeIn 0.3s ease-out;
}

/* ========== Utility Classes ========== */
.control-btn {
    padding: 15px 35px;
    border: none;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 3px 6px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9em;
    position: relative;
    overflow: hidden;
}

.control-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.control-btn:active::before {
    width: 300px;
    height: 300px;
}

.control-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.2);
}

.new-game-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.new-game-btn:hover {
    background: linear-gradient(135deg, #45a049, #388E3C);
}

#twinkleStyle {
    /* Placeholder for dynamically added styles */
}

/* Stats separator styling */
.stats-sep {
    color: #ffd700;
    padding: 0 6px;
} 