/* BhakundoFX CSS Design System - Shared Styling Framework */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&family=Teko:wght@500;600;700&display=swap');

/* -------------------------------------------------------------
   1. GLOBAL VARIABLES & UTILITIES
   ------------------------------------------------------------- */
:root {
    --font-ui: 'Outfit', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --font-sport: 'Teko', sans-serif;

    /* Theme colors - Default Cyber Neon Dark */
    --color-bg-main: #060907; /* Dark Pitch green-black */
    --color-bg-card: rgba(17, 24, 39, 0.7); /* Obsidian Glass */
    --color-bg-card-hover: rgba(31, 41, 55, 0.85);
    --color-border: rgba(16, 185, 129, 0.15); /* Green glow trim */
    --color-border-hover: rgba(16, 185, 129, 0.4);
    
    --color-accent: #10b981; /* Electric Emerald */
    --color-accent-rgb: 16, 185, 129;
    --color-accent-glow: rgba(16, 185, 129, 0.4);

    --color-text-white: #f9fafb;
    --color-text-muted: #9ca3af;
    --color-text-dim: #6b7280;

    --color-gold: #f59e0b;
    --color-red: #ef4444;
    --color-yellow: #eab308;
    --color-blue: #3b82f6;

    --glass-blur: blur(12px);
    --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.25);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. THEME OVERRIDES (Selected via customizer) */
body.theme-classic {
    --color-bg-main: #0b0f19; /* Navy broadcast */
    --color-bg-card: rgba(30, 41, 59, 0.75);
    --color-accent: #3b82f6;
    --color-border: rgba(59, 130, 246, 0.2);
    --color-border-hover: rgba(59, 130, 246, 0.5);
    --color-accent-glow: rgba(59, 130, 246, 0.3);
}

body.theme-gold {
    --color-bg-main: #0e0d0a; /* Premium Charcoal */
    --color-bg-card: rgba(24, 24, 27, 0.8);
    --color-accent: #d97706; /* Rich Bronze Gold */
    --color-border: rgba(217, 119, 6, 0.2);
    --color-border-hover: rgba(217, 119, 6, 0.55);
    --color-accent-glow: rgba(217, 119, 6, 0.3);
}

body.theme-fire {
    --color-bg-main: #110505; /* Lava Dark */
    --color-bg-card: rgba(28, 11, 11, 0.75);
    --color-accent: #f97316; /* Pyro Orange */
    --color-border: rgba(249, 115, 22, 0.2);
    --color-border-hover: rgba(249, 115, 22, 0.5);
    --color-accent-glow: rgba(249, 115, 22, 0.3);
}

body.theme-ice {
    --color-bg-main: #050a11; /* Arctic Deep */
    --color-bg-card: rgba(11, 23, 39, 0.75);
    --color-accent: #06b6d4; /* Glacial Cyan */
    --color-border: rgba(6, 182, 212, 0.2);
    --color-border-hover: rgba(6, 182, 212, 0.5);
    --color-accent-glow: rgba(6, 182, 212, 0.3);
}

/* Fonts Overrides */
.font-grotesk { font-family: var(--font-display) !important; }
.font-outfit { font-family: var(--font-ui) !important; }
.font-teko { font-family: var(--font-sport) !important; letter-spacing: 1px; }
.font-mono { font-family: 'Courier New', Courier, monospace !important; }

/* -------------------------------------------------------------
   2. CORE BASE STYLING
   ------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg-main);
    color: var(--color-text-white);
    font-family: var(--font-ui);
    overflow-x: hidden;
    min-height: 100vh;
    transition: background-color 0.5s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* Glass panel */
.glass-panel {
    background: var(--color-bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: var(--transition-smooth);
}
.glass-panel:hover {
    border-color: var(--color-border-hover);
}

/* Interactive Elements */
input, select, textarea {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--color-text-white);
    font-family: var(--font-ui);
    outline: none;
    transition: var(--transition-smooth);
}
input:focus, select:focus, textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(var(--color-accent-rgb), 0.2);
}

button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-white);
    padding: 10px 18px;
    border-radius: 8px;
    font-family: var(--font-ui);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
button:hover {
    background: var(--color-accent);
    color: #000;
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--color-accent-glow);
}
button:active {
    transform: translateY(0);
}

button.btn-primary {
    background: var(--color-accent);
    color: #000;
    border-color: var(--color-accent);
    font-weight: 600;
    box-shadow: 0 4px 14px var(--color-accent-glow);
}
button.btn-primary:hover {
    background: var(--color-text-white);
    border-color: var(--color-text-white);
    color: #000;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

button.btn-danger {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}
button.btn-danger:hover {
    background: var(--color-red);
    color: white;
    border-color: var(--color-red);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

button.btn-secondary {
    background: rgba(8, 16, 12, 0.65); /* Elegant dark glassmorphism */
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--color-text-white);
}
button.btn-secondary:hover {
    background: rgba(16, 185, 129, 0.12);
    color: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

/* -------------------------------------------------------------
   3. LANDING PAGE LAYOUT
   ------------------------------------------------------------- */
.landing-hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    z-index: 2;
    overflow: hidden;
}
.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Elegant vignette that darkens center text backing and outer borders */
    background: radial-gradient(circle at center, rgba(6, 12, 8, 0.42) 0%, rgba(3, 6, 4, 0.82) 100%);
    pointer-events: none;
    z-index: -1;
}

/* Antigravity Football Canvas */
#physics-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: auto;
}

/* Elegant Stadium Lights Background */
.stadium-beams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 0%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 0%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.95) 0%, rgba(6, 9, 7, 1) 100%);
    z-index: 0;
    pointer-events: none;
}
.stadium-beams::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.3;
}

/* Hero Branding content */
.hero-content {
    margin-top: 15vh;
    text-align: center;
    max-width: 800px;
    z-index: 10;
    pointer-events: none; /* Let clicks pass to canvas if needed, except buttons */
}
.hero-content h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 30%, var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 10px 35px rgba(0, 0, 0, 0.5);
}
.hero-content p {
    font-size: 1.2rem;
    color: #f3f4f6; /* highly legible off-white text */
    margin-bottom: 35px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
}
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    pointer-events: auto; /* Re-enable pointer events for buttons */
}

.hero-footer {
    z-index: 10;
    font-size: 0.9rem;
    color: #e5e7eb; /* clean legible contrast */
    display: flex;
    gap: 25px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95);
}
.hero-footer span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-footer span::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--color-accent);
}

/* Glassmorphic Auth Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.auth-modal {
    width: 100%;
    max-width: 420px;
    padding: 35px;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}
.modal-overlay.active .auth-modal {
    transform: scale(1);
}
.auth-tabs {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.auth-tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-text-muted);
    border-bottom: 2px solid transparent;
    transition: var(--transition-smooth);
}
.auth-tab.active {
    color: var(--color-accent);
    border-color: var(--color-accent);
}
.auth-form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.auth-form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
}
.auth-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* -------------------------------------------------------------
   4. DASHBOARD & SHARED LAYOUT (Setup, Customizer, Control)
   ------------------------------------------------------------- */
.app-layout {
    display: flex;
    min-height: 100vh;
    background: radial-gradient(ellipse at bottom, #09130d 0%, var(--color-bg-main) 100%);
}

/* Side Navigation Bar */
.side-nav {
    width: 260px;
    background: rgba(10, 15, 12, 0.85);
    border-right: 1px solid var(--color-border);
    backdrop-filter: var(--glass-blur);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
}
.brand-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.brand-logo {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--color-accent), #047857);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px var(--color-accent-glow);
}
.brand-logo svg {
    width: 22px;
    height: 22px;
    fill: #000;
}
.brand-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.brand-title span {
    color: var(--color-accent);
}

.nav-menu {
    list-style: none;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}
.nav-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}
.nav-item a:hover {
    color: var(--color-text-white);
    background: rgba(255, 255, 255, 0.02);
}
.nav-item.active a {
    color: #000;
    background: var(--color-accent);
    font-weight: 600;
    box-shadow: 0 4px 12px var(--color-accent-glow);
}
.nav-item.active a svg {
    stroke: #000;
    fill: none;
}
.nav-item svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: var(--transition-smooth);
}

.user-profile-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}
.user-info {
    display: flex;
    flex-direction: column;
}
.user-name {
    font-size: 0.9rem;
    font-weight: 600;
}
.user-role {
    font-size: 0.75rem;
    color: var(--color-text-dim);
}

/* Main Dashboard Panel */
.main-content {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    max-height: 100vh;
}
.content-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}
.header-title h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.header-title p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* -------------------------------------------------------------
   5. SETUP PAGE STYLES (tournaments, teams, rosters)
   ------------------------------------------------------------- */
.setup-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 25px;
    align-items: start;
}

/* Side navigation Tree selection */
.roster-tree {
    padding: 20px;
    max-height: calc(100vh - 180px);
    overflow-y: auto;
}
.tree-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-text-dim);
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}
.tree-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.tournament-node {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.tournament-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition-smooth);
}
.tournament-header:hover {
    background: rgba(255, 255, 255, 0.05);
}
.tournament-header.active {
    color: var(--color-accent);
    border-left: 2px solid var(--color-accent);
    background: rgba(16, 185, 129, 0.05);
}
.team-sublist {
    list-style: none;
    padding-left: 15px;
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.team-node {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.team-node:hover {
    color: white;
    background: rgba(255, 255, 255, 0.03);
}
.team-node.active {
    color: white;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.06);
}

/* Detail Editor Panel */
.roster-editor {
    padding: 30px;
    min-height: 500px;
}
.editor-welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
    text-align: center;
    color: var(--color-text-dim);
    gap: 15px;
}
.editor-welcome svg {
    width: 60px;
    height: 60px;
    stroke: currentColor;
    opacity: 0.5;
}

.team-header-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 25px;
}
.team-identity {
    display: flex;
    align-items: center;
    gap: 20px;
}
.team-badge-large {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: rgba(0,0,0,0.3);
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
}
.team-badge-large img, .team-badge-large svg {
    max-width: 100%;
    max-height: 100%;
}
.team-name-title h3 {
    font-size: 1.6rem;
    font-family: var(--font-display);
    font-weight: 700;
}
.team-name-title span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}
.team-coach-name {
    margin-top: 4px;
    font-size: 0.9rem;
    color: var(--color-accent);
}

/* Setup Roster Table */
.roster-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.roster-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
}
.roster-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.roster-table th {
    padding: 12px 16px;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 600;
}
.roster-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.9rem;
}
.roster-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

/* Roster Row details */
.player-profile-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}
.player-photo-mini {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.player-photo-mini img, .player-photo-mini svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.player-pos-badge {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    display: inline-block;
    width: 32px;
}
.pos-GK { background: rgba(234, 179, 8, 0.15); color: #fde047; border: 1px solid rgba(234,179,8,0.3); }
.pos-DF { background: rgba(59, 130, 246, 0.15); color: #93c5fd; border: 1px solid rgba(59,130,246,0.3); }
.pos-MF { background: rgba(16, 185, 129, 0.15); color: #6ee7b7; border: 1px solid rgba(16,185,129,0.3); }
.pos-FW { background: rgba(239, 68, 68, 0.15); color: #fca5a5; border: 1px solid rgba(239,68,68,0.3); }

/* Quick excel inputs */
.quick-input {
    width: 50px;
    padding: 4px 6px;
    text-align: center;
    border-radius: 4px;
    border-color: rgba(255,255,255,0.05);
}

/* Add Player Modal / Form details */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-grid-full {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Image Upload Circle Cropper */
.image-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}
.image-upload-preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    border: 2px dashed rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.image-upload-preview:hover {
    border-color: var(--color-accent);
}
.image-upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-upload-preview svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-text-dim);
}

/* -------------------------------------------------------------
   6. CUSTOMIZER PAGE STYLES (themes & simulated overlays)
   ------------------------------------------------------------- */
.customizer-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 30px;
    align-items: start;
}
.panel-scroller {
    max-height: calc(100vh - 180px);
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.customizer-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.section-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Cards for selecting themes */
.theme-selector-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.theme-card {
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}
.theme-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}
.theme-card.active {
    border-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(var(--color-accent-rgb), 0.15);
    background: rgba(var(--color-accent-rgb), 0.05);
    color: var(--color-accent);
}

.theme-preview-strip {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-top: 8px;
}
.color-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* Range input styled */
.range-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.range-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    height: 6px;
    outline: none;
    padding: 0;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-accent);
    cursor: pointer;
    box-shadow: 0 0 8px var(--color-accent-glow);
}

/* Large Simulator Screen container */
.preview-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.preview-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.preview-window {
    aspect-ratio: 16/9;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 450" width="800" height="450"><rect width="800" height="450" fill="%230f3a20"/><line x1="400" y1="0" x2="400" y2="450" stroke="white" stroke-width="2" opacity="0.3"/><circle cx="400" cy="225" r="70" fill="none" stroke="white" stroke-width="2" opacity="0.3"/><rect x="0" y="112.5" width="100" height="225" fill="none" stroke="white" stroke-width="2" opacity="0.3"/><rect x="700" y="112.5" width="100" height="225" fill="none" stroke="white" stroke-width="2" opacity="0.3"/><ellipse cx="400" cy="225" rx="5" ry="5" fill="white" opacity="0.5"/></svg>');
    background-size: cover;
    background-position: center;
}

/* Stream simulator overlays inside preview window */
.simulated-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    /* Simulate CSS scaling */
    transform-origin: top left;
}

/* Simulation triggers toolbar */
.preview-toolbar {
    padding: 15px 25px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0 0 12px 12px;
}
.preview-toolbar span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-dim);
    align-self: center;
    margin-right: 8px;
    text-transform: uppercase;
}

/* -------------------------------------------------------------
   7. CONTROL BOARD STYLES (match coordinator page)
   ------------------------------------------------------------- */
.wizard-panel {
    max-width: 700px;
    margin: 40px auto;
    padding: 40px;
}
.wizard-header {
    text-align: center;
    margin-bottom: 35px;
}
.wizard-steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}
.wizard-steps-indicator::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}
.wizard-step-node {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1f2937;
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    transition: var(--transition-smooth);
}
.wizard-step-node.active {
    background: var(--color-bg-main);
    border-color: var(--color-accent);
    color: var(--color-accent);
    box-shadow: 0 0 10px var(--color-accent-glow);
}
.wizard-step-node.completed {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #000;
}

/* Pre-match details settings grid */
.matchup-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}
.matchup-team-card {
    flex: 1;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.matchup-vs {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-dim);
}

/* LIVE MATCH OPERATIONS DASHBOARD GRID */
.live-control-layout {
    display: grid;
    grid-template-columns: 1fr 360px 1fr;
    gap: 20px;
}

/* Team Column Controller (Left & Right) */
.team-control-panel {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 4px solid var(--team-color, var(--color-accent));
}
.team-control-header {
    display: flex;
    align-items: center;
    gap: 15px;
}
.team-control-badge {
    width: 48px;
    height: 48px;
    padding: 4px;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}
.team-control-badge svg, .team-control-badge img {
    max-width: 100%;
    max-height: 100%;
}
.team-control-info h4 {
    font-size: 1.25rem;
    font-family: var(--font-display);
    font-weight: 700;
}
.team-control-score {
    font-size: 2.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    margin-left: auto;
}

.action-buttons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.action-btn {
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.action-btn svg {
    width: 22px;
    height: 22px;
}
.btn-goal-action {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #a7f3d0;
}
.btn-goal-action:hover {
    background: var(--color-accent);
    color: #000;
}
.btn-foul-action {
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.25);
    color: #fef08a;
}
.btn-foul-action:hover {
    background: var(--color-yellow);
    color: #000;
}
.btn-card-action {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #fca5a5;
}
.btn-card-action:hover {
    background: var(--color-red);
    color: white;
}
.btn-sub-action {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: #bfdbfe;
}
.btn-sub-action:hover {
    background: var(--color-blue);
    color: white;
}

/* Player selection grid modal inside pages */
.player-picker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
    margin-top: 15px;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 6px;
}
.player-picker-card {
    padding: 10px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}
.player-picker-card:hover {
    border-color: var(--color-accent);
    background: rgba(255,255,255,0.02);
}
.player-picker-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}
.player-picker-avatar img, .player-picker-avatar svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.player-picker-name {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.player-picker-num {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    font-family: var(--font-display);
}

/* Center Control Panel (Clock, Global Overlays) */
.center-control-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.clock-dashboard {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.clock-readout {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}
.clock-half-badge {
    padding: 3px 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
}
.clock-controls {
    display: flex;
    gap: 8px;
}
.clock-adjusters {
    display: flex;
    gap: 5px;
}
.clock-adjusters button {
    padding: 4px 8px;
    font-size: 0.75rem;
}

/* Stream graphic switchboard panel */
.graphic-switchboard {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.switchboard-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-text-dim);
}
.switchboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}
.graphic-toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 8px;
}
.graphic-toggle-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.graphic-toggle-name {
    font-size: 0.85rem;
    font-weight: 600;
}
.graphic-toggle-desc {
    font-size: 0.75rem;
    color: var(--color-text-dim);
}

/* Modern Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #374151;
    transition: .3s;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: var(--color-accent);
}
input:checked + .slider:before {
    transform: translateX(22px);
    background-color: #000;
}

/* Control Match events timeline */
.timeline-log {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.timeline-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}
.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 250px;
    overflow-y: auto;
    font-size: 0.8rem;
    list-style: none;
}
.timeline-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(255,255,255,0.02);
    border-radius: 4px;
}
.timeline-time {
    color: var(--color-accent);
    font-weight: 600;
    font-family: var(--font-display);
}
.timeline-icon {
    display: flex;
    align-items: center;
}
.timeline-desc {
    flex-grow: 1;
}

/* -------------------------------------------------------------
   8. BROADCAST OVERLAY GRAPHICS (transparent screen elements)
   ------------------------------------------------------------- */
.overlay-stage {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: transparent;
    color: white;
    font-family: var(--font-ui);
    box-sizing: border-box;
}

/* Scoreboard Overlay Header Ribbons */
.overlay-scoreboard {
    position: absolute;
    z-index: 100;
    display: flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-radius: 6px;
    height: 48px;
    overflow: hidden;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-20px);
}
.overlay-scoreboard.active {
    opacity: 1;
    transform: translateY(0);
}

/* Scoreboard Positions mapping */
.overlay-scoreboard.pos-top-center {
    top: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
}
.overlay-scoreboard.pos-top-center.active {
    transform: translateX(-50%) translateY(0);
}
.overlay-scoreboard.pos-top-left {
    top: 40px;
    left: 50px;
}
.overlay-scoreboard.pos-top-right {
    top: 40px;
    right: 50px;
}

.scoreboard-crest-color {
    width: 6px;
    height: 100%;
}
.scoreboard-team-box {
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-display);
    letter-spacing: 0.5px;
    height: 100%;
}
.scoreboard-score-box {
    width: 48px;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    height: 100%;
    color: var(--color-accent);
    border-left: 1px solid rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
}
.scoreboard-timer-box {
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
    background: rgba(0,0,0,0.3);
}
.scoreboard-time-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
}
.scoreboard-half-indicator {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-dim);
    text-transform: uppercase;
}

/* Match VS Overlay Screen */
.overlay-vs-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 800px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.overlay-vs-card.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.vs-banner-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    width: 100%;
    align-items: center;
    text-align: center;
}
.vs-banner-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.vs-banner-badge {
    width: 120px;
    height: 120px;
    background: rgba(0,0,0,0.4);
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.vs-banner-badge svg, .vs-banner-badge img {
    width: 100%;
    height: 100%;
}
.vs-banner-name {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.vs-text-node {
    font-family: var(--font-sport);
    font-size: 4rem;
    color: var(--color-accent);
    text-shadow: 0 0 20px var(--color-accent-glow);
}
.vs-banner-details {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Match Lineup Lists Overlay */
.overlay-lineups {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 1000px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.overlay-lineups.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.overlay-lineups-column {
    padding: 30px;
}
.overlay-lineup-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--team-color);
    margin-bottom: 20px;
}
.overlay-lineup-header h4 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
}
.overlay-lineup-coach {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}
.overlay-lineup-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.overlay-lineup-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: rgba(0,0,0,0.3);
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.03);
}
.overlay-lineup-num {
    width: 24px;
    font-weight: 700;
    color: var(--color-accent);
    font-family: var(--font-display);
}
.overlay-lineup-name {
    flex-grow: 1;
    font-weight: 500;
}
.overlay-lineup-pos {
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0.7;
}

/* Match Stats Comparison Overlay */
.overlay-stats-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 650px;
    padding: 35px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.overlay-stats-card.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.overlay-stats-header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}
.overlay-stats-header h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
}
.overlay-stats-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.overlay-stat-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.overlay-stat-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
}
.overlay-stat-name {
    color: var(--color-text-muted);
}
.overlay-stat-bar-container {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    display: flex;
    overflow: hidden;
}
.overlay-stat-bar-left {
    height: 100%;
    background: var(--color-left, var(--color-accent));
    border-right: 1px solid black;
    transition: width 0.6s ease;
}
.overlay-stat-bar-right {
    height: 100%;
    background: var(--color-right, var(--color-blue));
    margin-left: auto;
    transition: width 0.6s ease;
}

/* -------------------------------------------------------------
   9. HIGH IMPACT OVERLAY ANIMATION ANNOUNCERS (GOAL / CARDS)
   ------------------------------------------------------------- */
.announcer-card {
    position: absolute;
    bottom: 80px;
    right: 80px;
    width: 380px;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: opacity 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    pointer-events: none;
}
.announcer-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Goal Splash card design */
.announcer-goal {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.95), rgba(15, 23, 42, 0.98));
    border: 2px solid var(--color-accent);
}
.announcer-goal::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    animation: shine-glide 2.5s infinite;
}

.announcer-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    border: 3px solid var(--color-accent);
    overflow: hidden;
    flex-shrink: 0;
    animation: spin-pulse 2s infinite ease-in-out;
}
.announcer-photo img, .announcer-photo svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.announcer-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.announcer-title {
    font-family: var(--font-sport);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.announcer-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 2px;
}
.announcer-sub {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

/* Card alerts design */
.announcer-yellow-card {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.9), rgba(15, 23, 42, 0.98));
    border: 2px solid var(--color-yellow);
}
.announcer-red-card {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(15, 23, 42, 0.98));
    border: 2px solid var(--color-red);
}

/* -------------------------------------------------------------
   10. CSS KEYFRAMES & PULSE EFFECT TRANSITIONS
   ------------------------------------------------------------- */
@keyframes shine-glide {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

@keyframes spin-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 15px 4px rgba(16, 185, 129, 0.2); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Setup overlay simulation boxes inside customizer screen */
.preview-scoreboard-mock {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border-radius: 4px;
    height: 32px;
    font-size: 0.75rem;
    overflow: hidden;
}
.preview-team-mock {
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-weight: 700;
    height: 100%;
}
.preview-score-mock {
    width: 28px;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    height: 100%;
    color: var(--color-accent);
}
.preview-time-mock {
    padding: 0 10px;
    display: flex;
    align-items: center;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.preview-vs-mock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}
.preview-vs-grid-mock {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    width: 100%;
    align-items: center;
}
.preview-vs-team-mock {
    font-size: 0.9rem;
    font-weight: 700;
}
.preview-vs-badge-mock {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
}
.preview-vs-text-mock {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

/* Player Display Card (MVP / Best GK / Hat-trick) */
#obs-player-display-card.active {
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
    pointer-events: auto;
}
