:root {
    --warriors-blue: #1D428A;
    --warriors-gold: #FFC72C;
    --white: #FFFFFF;
    --dark-bg: #0b1a35;
    --glass: rgba(255, 255, 255, 0.1);
    --primary: var(--warriors-blue);
    --accent: var(--warriors-gold);
    --bg: #f0f2f5;
    --text: #1a1a1a;
    --card-bg: #ffffff;
}
body.splash-mode {
    --primary: var(--warriors-gold);
    --accent: var(--warriors-blue);
    --bg: var(--warriors-blue);
    --text: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.5s, color 0.5s;
}
body:not(.stats-page-theme) {
    background-color: var(--dark-bg);
    color: var(--white);
    --text: #ffffff;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--primary);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--accent);
    color: white;
}
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--warriors-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 600;
    transition: color 0.3s;
    opacity: 0.8;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--warriors-gold);
    opacity: 1;
}
.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}
.content-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: background 0.5s;
}
.dark-card {
    background: var(--glass);
    border: 1px solid rgba(255,255,255,0.1);
}
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    align-items: center;
    padding: 0 10%;
    background: linear-gradient(45deg, rgba(29, 66, 138, 0.8), transparent),
    url('https://images.unsplash.com/photo-1546510807-a929f2016337?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0 var(--warriors-blue);
}
.btn, .splash-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--warriors-gold);
    color: var(--warriors-blue);
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn:hover, .splash-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 199, 44, 0.4);
}

.shoot-variant { background: #4CAF50; color: white; }
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.data-table th, .data-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 4rem;
}

.stat-item {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
}

@keyframes pulse {
    0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; }
}
.active-clock { animation: pulse 1s infinite; }
#shot-clock {
    font-size: 5rem;
    font-family: 'Courier New', monospace;
    color: #ff4d4d;
    text-shadow: 0 0 15px #ff4d4d;
}
footer {
    text-align: center;
    padding: 3rem;
    background: #050d1a;
    font-size: 0.9rem;
    color: #666;
}