/* ═══════════════════════════════════════════════════════════
   FOOTBALL DECISIONS - Professional Edition
   Modern, Clean, Bug-Free Design
   ═══════════════════════════════════════════════════════════ */

.hidden { display: none !important; }

:root {
    /* Core Colors */
    --bg-base: #0a0e1a;
    --bg-card: #131829;
    --bg-elevated: #1a2138;
    --bg-hover: #232b45;
    --bg-input: #0f1424;
    
    /* Brand Colors */
    --primary: #00d97e;
    --primary-dark: #00b368;
    --primary-glow: rgba(0, 217, 126, 0.4);
    --secondary: #ffd60a;
    --secondary-dark: #d4a800;
    
    /* Status Colors */
    --success: #00d97e;
    --warning: #ffb800;
    --danger: #ff3b5c;
    --info: #3b82f6;
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #b4bcd0;
    --text-muted: #6b7280;
    
    /* Borders */
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px var(--primary-glow);
    
    /* Transitions */
    --transition: 0.2s ease;
    --transition-slow: 0.3s ease;
    
    --font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: var(--font);
    background: var(--bg-base);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

button {
    font-family: var(--font);
    cursor: pointer;
    border: none;
    outline: none;
    transition: all var(--transition);
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

input, select, textarea {
    font-family: var(--font);
    outline: none;
}

/* ═══════════════════════════════════════════════════════════
   LAYOUT & SCREENS
   ═══════════════════════════════════════════════════════════ */
.screen {
    display: none;
    min-height: 100vh;
    animation: fadeIn 0.3s ease;
}

.screen.active {
    display: block;
}

#season.screen.active {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ═══════════════════════════════════════════════════════════
   MAIN MENU
   ═══════════════════════════════════════════════════════════ */
.menu-bg {
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 217, 126, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 214, 10, 0.1) 0%, transparent 50%),
        var(--bg-base);
    z-index: -1;
}

.menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: var(--space-lg);
    text-align: center;
}

.logo-container {
    margin-bottom: var(--space-2xl);
}

.logo-icon {
    font-size: 5rem;
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 0 30px var(--primary-glow));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.logo-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.logo-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.menu-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
    max-width: 320px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 16px 28px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 4px 12px rgba(0, 217, 126, 0.3);
}

.btn-primary:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 217, 126, 0.4);
}

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

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover:not(:disabled) {
    background: var(--bg-hover);
    border-color: var(--border-light);
}

.btn-large {
    padding: 8px 20px;
    font-size: 0.875rem;
}

.btn-icon {
    font-size: 1.2rem;
}

.menu-footer {
    margin-top: var(--space-xl);
    color: var(--text-muted);
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════
   SCREEN HEADER
   ═══════════════════════════════════════════════════════════ */
.screen-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: rgba(19, 24, 41, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.screen-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    flex: 1;
}

.btn-back {
    padding: 8px 14px;
    background: transparent;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
}

.btn-back:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════════════
   HOW TO PLAY
   ═══════════════════════════════════════════════════════════ */
.how-to-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-md);
    padding: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.how-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition);
}

.how-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.how-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.how-card h3 {
    font-size: 1.0625rem;
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

.how-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   MODE SELECTION
   ═══════════════════════════════════════════════════════════ */
.mode-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    padding: var(--space-lg);
    max-width: 800px;
    margin: 0 auto;
}

.mode-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.mode-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.mode-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
}

.mode-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

.mode-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    font-size: 0.9375rem;
}

.mode-card ul {
    list-style: none;
    text-align: left;
}

.mode-card ul li {
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mode-card ul li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   CHARACTER CREATION
   ═══════════════════════════════════════════════════════════ */
.create-container {
    max-width: 640px;
    margin: 0 auto;
    padding: var(--space-lg);
}

.create-step {
    display: none;
    animation: slideIn 0.3s ease;
}

.create-step.active {
    display: block;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.create-step h3 {
    font-size: 1.375rem;
    margin-bottom: var(--space-sm);
    color: var(--primary);
    font-weight: 700;
}

.style-subtitle {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    font-size: 0.9375rem;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-input);
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.range-container {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.form-range {
    flex: 1;
    height: 6px;
    background: var(--bg-input);
    border-radius: 3px;
    -webkit-appearance: none;
    appearance: none;
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary-glow);
}

.form-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.range-value {
    min-width: 80px;
    text-align: right;
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

.step-buttons {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.step-buttons .btn {
    flex: 1;
}

.team-preview {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
}

.team-badge-large {
    font-size: 2.5rem;
}

.team-info-card h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.team-info-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Style Cards */
.style-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.style-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    position: relative;
}

.style-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.style-card.selected {
    border-color: var(--primary);
    background: rgba(0, 217, 126, 0.05);
    box-shadow: var(--shadow-glow);
}

.style-card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.style-card h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.style-card p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: var(--space-sm);
}

.style-effects {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}

.effect-tag {
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    font-size: 0.6875rem;
    font-weight: 600;
}

.effect-positive {
    background: rgba(0, 217, 126, 0.15);
    color: var(--success);
}

.effect-negative {
    background: rgba(255, 59, 92, 0.15);
    color: var(--danger);
}

.effect-neutral {
    background: rgba(255, 214, 10, 0.15);
    color: var(--secondary);
}

/* ═══════════════════════════════════════════════════════════
   SEASON SCREEN - Compact Dashboard Layout
   ═══════════════════════════════════════════════════════════ */
.season-header {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border-bottom: 1px solid var(--border);
    padding: 4px var(--space-sm);
    flex-shrink: 0;
}

.season-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.season-info h2 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
    line-height: 1.1;
}

.season-info p {
    color: var(--text-secondary);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    line-height: 1.2;
}

.season-stats-mini {
    display: flex;
    gap: var(--space-xs);
}

.stat-mini {
    text-align: center;
    padding: 2px 6px;
    background: var(--bg-base);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    min-width: 60px;
}

.stat-mini-card {
    text-align: center;
    padding: 2px 6px;
    background: var(--bg-base);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    min-width: 60px;
}

.stat-mini-label {
    display: block;
    font-size: 0.5625rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.stat-mini-value {
    font-size: 0.8125rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.1;
}

/* Season Navigation */
.season-nav {
    display: flex;
    gap: 2px;
    padding: 2px var(--space-sm);
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    flex-shrink: 0;
}

.nav-btn {
    padding: 4px 10px;
    background: transparent;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all var(--transition);
}

.nav-btn:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.nav-btn.active {
    background: var(--primary);
    color: #000;
}

.season-content {
    padding: 0;
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.season-tab {
    display: none;
    animation: fadeIn 0.2s ease;
    flex: 1;
    overflow: hidden;
    padding: var(--space-xs);
}

.season-tab.active {
    display: flex;
    flex-direction: column;
}

/* Overview */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xs);
    flex: 0.8;
    min-height: 0;
    overflow: hidden;
}

.overview-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: var(--space-sm);
    overflow-y: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.overview-card h4 {
    font-size: 0.75rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.news-item {
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

.news-item:last-child {
    border-bottom: none;
}

.decision-card-pending {
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    padding: var(--space-sm);
    margin-bottom: var(--space-xs);
    cursor: pointer;
    transition: all var(--transition);
    border-left: 3px solid var(--primary);
}

.decision-card-pending:hover {
    background: var(--bg-hover);
    transform: translateX(4px);
}

.decision-card-pending h5 {
    font-size: 0.8125rem;
    margin-bottom: 2px;
    font-weight: 700;
}

.decision-card-pending p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Stats */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
}

.stat-group {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.stat-group h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--primary);
}

.stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    gap: var(--space-md);
}

.stat-name {
    font-size: 0.875rem;
    color: var(--text-secondary);
    min-width: 100px;
}

.stat-bar-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.stat-bar {
    flex: 1;
    height: 8px;
    background: var(--bg-input);
    border-radius: 4px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
    background: linear-gradient(90deg, var(--primary), var(--info));
}

.stat-bar-fill.low { background: linear-gradient(90deg, var(--danger), var(--warning)); }
.stat-bar-fill.mid { background: linear-gradient(90deg, var(--warning), var(--secondary)); }
.stat-bar-fill.high { background: linear-gradient(90deg, var(--primary), var(--info)); }
.stat-bar-fill.max { background: linear-gradient(90deg, var(--secondary), var(--primary)); }

.stat-value-num {
    font-size: 0.875rem;
    font-weight: 700;
    min-width: 28px;
    text-align: right;
}

/* Competitions */
.competitions-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
}

.competition-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.competition-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
}

.comp-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.comp-status.active { background: rgba(0, 217, 126, 0.15); color: var(--success); }
.comp-status.eliminated { background: rgba(255, 59, 92, 0.15); color: var(--danger); }
.comp-status.won { background: rgba(255, 214, 10, 0.15); color: var(--secondary); }

.standing-row {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 0;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--border);
}

.standing-row:last-child { border-bottom: none; }

.standing-row.current { color: var(--primary); font-weight: 700; }

.standing-pos {
    font-weight: 700;
    min-width: 24px;
    color: var(--text-muted);
}

.standing-team { flex: 1; }
.standing-points { font-weight: 700; }

/* Shop */
.shop-container {
    max-width: 1000px;
    margin: 0 auto;
}

.shop-balance {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: var(--space-md);
    text-align: center;
    padding: var(--space-md);
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.shop-categories {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.shop-cat {
    padding: 8px 18px;
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition);
}

.shop-cat:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.shop-cat.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.shop-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-md);
}

.shop-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: all var(--transition);
}

.shop-item:hover { border-color: var(--primary); }
.shop-item.owned { border-color: var(--secondary); opacity: 0.6; }

.shop-item-icon { font-size: 2rem; margin-bottom: var(--space-sm); }
.shop-item h4 { font-size: 0.9375rem; margin-bottom: 4px; }
.shop-item p { font-size: 0.8125rem; color: var(--text-secondary); margin-bottom: var(--space-sm); line-height: 1.4; }

.shop-item-price {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
}

.shop-buy-btn {
    width: 100%;
    padding: 10px;
    background: var(--primary);
    color: #000;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
}

.shop-buy-btn:hover:not(:disabled) { background: var(--primary-dark); }
.shop-buy-btn:disabled { background: var(--bg-hover); color: var(--text-muted); }

/* Career */
.career-container {
    max-width: 900px;
    margin: 0 auto;
}

.career-header-card {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.career-avatar {
    font-size: 4rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-base);
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.career-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.career-details {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.career-trophies {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.trophy-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
}

.trophy-icon { font-size: 2rem; margin-bottom: 4px; }
.trophy-name { font-size: 0.8125rem; font-weight: 600; }
.trophy-year { font-size: 0.6875rem; color: var(--text-muted); margin-top: 2px; }

.season-actions {
    padding: 4px;
    text-align: center;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   DECISION SCREEN
   ═══════════════════════════════════════════════════════════ */
.decision-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
}

.decision-context {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.decision-counter {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(0, 217, 126, 0.1);
    padding: 6px 12px;
    border-radius: var(--radius-full);
}

.decision-card {
    max-width: 720px;
    margin: var(--space-lg) auto;
    padding: 0 var(--space-md);
}

.decision-scenario {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.scenario-icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 0 20px var(--primary-glow));
}

.decision-scenario h3 {
    font-size: 1.375rem;
    margin-bottom: var(--space-sm);
    color: var(--primary);
    font-weight: 700;
}

.decision-scenario p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.decision-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.decision-option {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    text-align: left;
    width: 100%;
    color: var(--text-primary);
    position: relative;
}

.decision-option:hover:not(:disabled) {
    border-color: var(--primary);
    background: var(--bg-hover);
    transform: translateX(4px);
}

.decision-option:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
}

.decision-option-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.decision-option-content {
    flex: 1;
    min-width: 0;
}

.decision-option-content h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.decision-option-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: var(--space-sm);
}

.decision-option-effects {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

/* ═══════════════════════════════════════════════════════════
   MATCH SCREEN
   ═══════════════════════════════════════════════════════════ */
.match-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-xl) var(--space-md);
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border-bottom: 1px solid var(--border);
}

.match-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    min-width: 100px;
}

.match-team .team-badge { font-size: 2.5rem; }
.match-team span { font-size: 0.875rem; font-weight: 600; text-align: center; }

.match-score {
    font-size: 3rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.score-divider { color: var(--text-muted); font-size: 2rem; }

.match-events {
    max-width: 600px;
    margin: var(--space-lg) auto;
    padding: 0 var(--space-md);
    max-height: 400px;
    overflow-y: auto;
}

.match-event {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xs);
    animation: slideIn 0.3s ease;
}

.match-event.important {
    border-color: var(--secondary);
    background: rgba(255, 214, 10, 0.05);
}

.match-event-time {
    font-weight: 700;
    color: var(--secondary);
    min-width: 40px;
    font-size: 0.875rem;
}

.match-event-icon { font-size: 1.2rem; }
.match-event-text { flex: 1; font-size: 0.9375rem; }

.match-actions {
    max-width: 600px;
    margin: var(--space-lg) auto;
    padding: 0 var(--space-md);
}

/* ═══════════════════════════════════════════════════════════
   MINI-GAMES
   ═══════════════════════════════════════════════════════════ */
.mini-header {
    text-align: center;
    padding: var(--space-xl) var(--space-md) var(--space-md);
}

.mini-header h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

.mini-subtitle {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Penalty */
.penalty-container {
    max-width: 500px;
    margin: 0 auto;
    padding: var(--space-md);
    text-align: center;
}

.penalty-score {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    font-size: 1.125rem;
    font-weight: 700;
    background: var(--bg-card);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.penalty-team {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.penalty-goal {
    position: relative;
    width: 320px;
    height: 220px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(180deg, rgba(0, 217, 126, 0.15), rgba(0, 217, 126, 0.4));
    border: 4px solid white;
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    overflow: hidden;
}

.goal-post { position: absolute; top: 0; width: 8px; height: 100%; background: white; }
.goal-post.left { left: 0; }
.goal-post.right { right: 0; }

.goal-net {
    position: absolute;
    top: 0; left: 8px; right: 8px; height: 100%;
    background: 
        repeating-linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.1) 2px, transparent 2px, transparent 20px),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.1), rgba(255,255,255,0.1) 2px, transparent 2px, transparent 20px);
}

.goalkeeper {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    transition: all 0.3s ease;
}

.penalty-targets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    position: absolute;
    top: 0; left: 8px; right: 8px; bottom: 0;
}

.target {
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: transparent;
}

.target:hover {
    background: rgba(0, 217, 126, 0.3);
    color: rgba(255, 255, 255, 0.5);
}

.penalty-power-bar {
    position: relative;
    width: 100%;
    height: 32px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.power-fill {
    position: absolute;
    top: 0; left: 0; height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--success), var(--secondary), var(--danger));
    transition: width 0.05s linear;
}

.power-indicator {
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Timing */
.timing-container {
    max-width: 500px;
    margin: 0 auto;
    padding: var(--space-md);
    text-align: center;
}

.timing-bar {
    position: relative;
    width: 100%;
    height: 60px;
    display: flex;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-lg);
    border: 1px solid var(--border);
}

.timing-zone {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.timing-zone.bad { background: rgba(255, 59, 92, 0.3); }
.timing-zone.good { background: rgba(0, 217, 126, 0.3); }
.timing-zone.perfect { background: rgba(255, 214, 10, 0.3); }

.timing-marker {
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: left 0.02s linear;
}

.timing-bonus {
    margin-bottom: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Quick */
.quick-container {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-md);
}

.quick-timer {
    width: 100%;
    height: 8px;
    background: var(--bg-input);
    border-radius: 4px;
    margin-bottom: var(--space-lg);
    overflow: hidden;
}

.timer-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--danger), var(--secondary));
    transition: width 0.1s linear;
    width: 100%;
}

.quick-scenario {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.quick-scenario p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.quick-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-sm);
}

.quick-option {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    color: var(--text-primary);
}

.quick-option:hover:not(:disabled) {
    border-color: var(--primary);
    background: var(--bg-hover);
}

.quick-option:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quick-option h4 { font-size: 0.9375rem; margin-bottom: 4px; }
.quick-option p { font-size: 0.8125rem; color: var(--text-secondary); }

/* ═══════════════════════════════════════════════════════════
   RESULTS SCREEN
   ═══════════════════════════════════════════════════════════ */
.results-container {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
    text-align: center;
}

.results-trophy {
    font-size: 5rem;
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 0 30px var(--primary-glow));
    animation: float 2s ease-in-out infinite;
}

.results-container h2 {
    font-size: 2rem;
    margin-bottom: var(--space-lg);
    color: var(--primary);
    font-weight: 800;
}

.results-details {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    text-align: left;
}

.results-details p {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
}

.results-details p:last-child { border-bottom: none; }

.results-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.result-stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.result-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.result-stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.results-rewards {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
}

.results-rewards h4 {
    font-size: 0.9375rem;
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

.reward-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px 0;
    font-size: 0.9375rem;
}

.reward-icon { font-size: 1.2rem; }

/* ═══════════════════════════════════════════════════════════
   TROPHY ROOM
   ═══════════════════════════════════════════════════════════ */
.trophies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: var(--space-sm);
    padding: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
}

.trophy-room-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    text-align: center;
}

.trophy-room-card .trophy-icon { font-size: 2.5rem; margin-bottom: var(--space-sm); }
.trophy-room-card h4 { font-size: 0.875rem; margin-bottom: 2px; }
.trophy-room-card p { font-size: 0.75rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   GAME OVER
   ═══════════════════════════════════════════════════════════ */
.gameover-container {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
    text-align: center;
}

.gameover-icon {
    font-size: 5rem;
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 0 30px var(--primary-glow));
}

.gameover-container h2 {
    font-size: 1.75rem;
    margin-bottom: var(--space-lg);
    color: var(--primary);
    font-weight: 800;
}

.gameover-stats {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    text-align: left;
}

.gameover-stats p {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
}

.gameover-stats p:last-child { border-bottom: none; }

.gameover-trophies {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-md);
}

.gameover-trophy { font-size: 2rem; }

.gameover-rating {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.gameover-rating h3 {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rating-stars { font-size: 1.75rem; margin-bottom: var(--space-sm); }
.gameover-rating p { color: var(--text-secondary); font-size: 0.9375rem; }

.gameover-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   MODAL OVERLAY
   ═══════════════════════════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: modalFadeIn 0.3s ease;
    padding: var(--space-md);
}

.modal-overlay.hidden { display: none; }

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
    text-align: center;
    padding: var(--space-xl) var(--space-lg) var(--space-md);
    background: linear-gradient(135deg, rgba(0, 217, 126, 0.1), rgba(255, 214, 10, 0.05));
    border-bottom: 1px solid var(--border);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.season-badge {
    font-size: 3.5rem;
    margin-bottom: var(--space-sm);
    animation: float 2s ease-in-out infinite;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.modal-body { padding: var(--space-lg); }

.modal-footer {
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid var(--border);
    text-align: center;
}

.modal-footer .btn { max-width: 400px; margin: 0 auto; }

.summary-section { margin-bottom: var(--space-lg); }
.summary-section h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-xs);
    border-bottom: 1px solid var(--border);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: var(--space-xs);
}

.summary-item {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    text-align: center;
}

.summary-item-value {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
    word-break: break-word;
}

.summary-item-label {
    font-size: 0.6875rem;
    color: var(--text-secondary);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.summary-decisions {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.summary-decision {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    border-left: 3px solid var(--primary);
}

.summary-decision.failed { border-left-color: var(--danger); opacity: 0.7; }

.summary-decision .decision-icon { font-size: 1.2rem; }
.summary-decision .decision-info { flex: 1; }
.summary-decision .decision-title { font-size: 0.875rem; font-weight: 600; }
.summary-decision .decision-effect { font-size: 0.75rem; color: var(--text-secondary); }

.summary-trophies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: var(--space-xs);
}

.summary-trophy {
    background: var(--bg-elevated);
    border: 1px solid var(--secondary);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    text-align: center;
}

.summary-trophy-icon { font-size: 2rem; margin-bottom: 4px; }
.summary-trophy-name { font-size: 0.75rem; font-weight: 600; color: var(--secondary); }

.summary-rewards {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.reward-card {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
    padding: 8px 12px;
    flex: 1;
    min-width: 130px;
}

.reward-card-icon { font-size: 1.1rem; }
.reward-card-text { font-weight: 600; font-size: 0.875rem; }
.reward-card.positive .reward-card-text { color: var(--success); }
.reward-card.negative .reward-card-text { color: var(--danger); }

/* ═══════════════════════════════════════════════════════════
   NOTIFICATIONS
   ═══════════════════════════════════════════════════════════ */
.notification {
    position: fixed;
    bottom: 80px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 1500;
    animation: slideUp 0.3s ease;
    max-width: 360px;
}

.notification.hidden { display: none; }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.notif-icon { font-size: 1.5rem; }
.notif-content h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 2px; }
.notif-content p { font-size: 0.8125rem; color: var(--text-secondary); }

.notif-close {
    background: transparent;
    color: var(--text-muted);
    font-size: 1.2rem;
    padding: 4px;
    border-radius: var(--radius-sm);
}

.notif-close:hover { color: var(--text-primary); background: var(--bg-hover); }

/* Stat Change Popup */
.stat-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    z-index: 1501;
    animation: popIn 0.3s ease;
    min-width: 300px;
    max-width: 400px;
}

.stat-popup.hidden { display: none; }

@keyframes popIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.stat-popup-content h3 {
    font-size: 1.0625rem;
    margin-bottom: var(--space-md);
    text-align: center;
    color: var(--primary);
}

.stat-change-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.stat-change-row:last-child { border-bottom: none; }

.stat-change-name { color: var(--text-secondary); font-size: 0.875rem; }
.stat-change-value { font-weight: 700; font-size: 0.9375rem; }
.stat-change-value.positive { color: var(--success); }
.stat-change-value.negative { color: var(--danger); }

/* ═══════════════════════════════════════════════════════════
   MUSIC CONTROL
   ═══════════════════════════════════════════════════════════ */
.music-control {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    z-index: 999;
}

.music-btn {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 2px solid var(--primary);
    color: white;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.music-btn:hover {
    background: var(--bg-hover);
    transform: scale(1.05);
}

.music-btn.playing {
    animation: musicPulse 2s ease infinite;
    background: rgba(0, 217, 126, 0.15);
}

@keyframes musicPulse {
    0%, 100% { box-shadow: var(--shadow-md), 0 0 0 var(--primary-glow); }
    50% { box-shadow: var(--shadow-md), 0 0 20px var(--primary-glow); }
}

.music-volume {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 6px 12px;
}

.music-volume input[type="range"] {
    width: 100px;
    height: 4px;
    -webkit-appearance: none;
    background: var(--bg-input);
    border-radius: 2px;
}

.music-volume input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
}

.music-volume input[type="range"]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .logo-title { font-size: 2.5rem; }
    .mode-cards { grid-template-columns: 1fr; }
    .season-header-content { flex-direction: column; text-align: center; }
    .season-stats-mini { justify-content: center; }
    .season-nav { justify-content: flex-start; }
    .overview-grid { grid-template-columns: 1fr; }
    .decision-card { padding: 0 var(--space-sm); }
    .match-header { gap: var(--space-md); }
    .match-score { font-size: 2rem; }
    .penalty-goal { width: 280px; height: 180px; }
    .gameover-buttons { flex-direction: column; }
    .season-header-content { flex-direction: column; }
}

@media (max-width: 480px) {
    .logo-title { font-size: 2rem; }
    .style-cards { grid-template-columns: 1fr; }
    .shop-items { grid-template-columns: 1fr; }
    .quick-options { grid-template-columns: 1fr; }
    .summary-grid { grid-template-columns: repeat(2, 1fr); }
    .overview-grid { grid-template-columns: 1fr; }
    .decision-panel-content { grid-template-columns: 1fr; }
    .decision-options-mini { grid-template-columns: 1fr; }
    .decision-option-mini-header { font-size: 0.9375rem; }
    .decision-option-mini-desc { font-size: 0.8125rem; }
    .scenario-mini-content h4 { font-size: 0.9375rem; }
    .scenario-mini-content p { font-size: 0.875rem; }
}

/* ═══════════════════════════════════════════════════════════
   DECISION PANEL (Below Overview Grid)
   ═══════════════════════════════════════════════════════════ */
.decision-panel {
    background: var(--bg-elevated);
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    flex: 1.2;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.decision-panel.hidden { display: none; }

.decision-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.decision-panel-header h3 {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
}

.decision-counter-badge {
    background: rgba(0, 217, 126, 0.2);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 700;
}

.decision-panel-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-sm);
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.decision-scenario-mini {
    background: var(--bg-base);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    overflow-y: auto;
}

.scenario-mini-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.scenario-mini-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.scenario-mini-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.3;
}

.decision-options-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    overflow-y: auto;
}

.decision-option-mini {
    background: var(--bg-base);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    cursor: pointer;
    transition: all var(--transition);
    text-align: left;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.decision-option-mini:hover:not(:disabled) {
    border-color: var(--primary);
    background: var(--bg-hover);
    transform: translateY(-2px);
}

.decision-option-mini-header {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.decision-option-mini-header .icon {
    font-size: 1.25rem;
}

.decision-option-mini-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

.decision-option-mini-effects {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 4px;
}

.decision-option-mini-effects .effect-tag {
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
}

.decision-result {
    background: var(--bg-base);
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: var(--space-sm);
    margin-top: var(--space-xs);
}

.decision-result-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.decision-result-header h4 {
    font-size: 1rem;
    font-weight: 700;
}

.decision-result-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

.decision-result-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 4px;
}

.result-stat-tag {
    background: var(--bg-elevated);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
}

.decision-option-mini:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.decision-option-mini.selected {
    border-color: var(--primary);
    background: rgba(0, 217, 126, 0.1);
}

.decision-option-mini-header {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    font-size: 0.6875rem;
    line-height: 1.1;
}

.decision-option-mini-header .icon {
    font-size: 0.8rem;
}

.decision-option-mini-desc {
    font-size: 0.625rem;
    color: var(--text-secondary);
    line-height: 1.1;
}

.decision-option-mini-effects {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    margin-top: 1px;
}

.decision-option-mini-effects .effect-tag {
    padding: 1px 3px;
    font-size: 0.5625rem;
}

.decision-result {
    background: var(--bg-elevated);
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 4px 6px;
    margin-top: 4px;
    animation: popIn 0.3s ease;
}

.decision-result.failed {
    border-color: var(--danger);
}

.decision-result-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.decision-result-header h4 {
    font-size: 0.75rem;
    font-weight: 700;
}

.decision-result-header h4.success { color: var(--success); }
.decision-result-header h4.failed { color: var(--danger); }

.decision-result-text {
    font-size: 0.6875rem;
    color: var(--text-secondary);
    line-height: 1.2;
    margin-bottom: 2px;
}

.decision-result-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}

.result-stat-tag {
    background: var(--bg-base);
    padding: 1px 5px;
    border-radius: var(--radius-sm);
    font-size: 0.625rem;
    font-weight: 600;
}

.result-stat-tag.positive { color: var(--success); }
.result-stat-tag.negative { color: var(--danger); }

/* Season Stats Card (in Overview) */
.season-stats-card {
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    padding: var(--space-sm);
    margin-bottom: 0;
}

.season-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xs);
}

.season-stat-item {
    text-align: center;
    padding: 2px;
}

.season-stat-value {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.season-stat-label {
    font-size: 0.625rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1px;
}
