/* ======================================================
  💎 Playbook IQ: GLOBAL BRAND SKIN (Billion Dollar Look)
  Theme: Sleek, Modern, Executive Blue-Grey
====================================================== */

:root {
/* --- 🎨 THE PALETTE --- */
--bg-deep: #0f172a;       /* Slate 900 */
--bg-surface: #1e293b;    /* Slate 800 */
/* The Executive Studio Gradient */
--bg-gradient: radial-gradient(circle at 50% 0%, #334155 0%, #020617 100%); 

--primary: #3b82f6;       /* Royal Blue */
--primary-glow: rgba(59, 130, 246, 0.5);

--text-main: #f8fafc;     /* White */
--text-muted: #94a3b8;    /* Slate 400 */

--glass-border: rgba(255, 255, 255, 0.1);
--glass-surface: rgba(30, 41, 59, 0.7);

--transition-fast: all 0.2s ease;
}

/* --- 🌍 GLOBAL RESET --- */
* { box-sizing: border-box; margin: 0; padding: 0; outline: none; }

body {
background-color: var(--bg-deep);
background-image: var(--bg-gradient);
background-attachment: fixed;
color: var(--text-main);
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
line-height: 1.6;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
min-height: 100vh;
}

/* --- 🏗️ UTILITIES --- */
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }

/* --- 🔘 BUTTONS --- */
.btn {
display: inline-flex; align-items: center; justify-content: center; gap: 8px;
padding: 12px 24px; border-radius: 12px; font-weight: 700; font-size: 1rem;
cursor: pointer; transition: all 0.2s ease; border: 1px solid transparent;
}
.btn-primary {
background: var(--primary); color: white;
box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 25px var(--primary-glow);
}
.btn-glass {
background: rgba(255,255,255,0.05);
border-color: var(--glass-border);
backdrop-filter: blur(10px);
color: var(--text-main);
}
.btn-glass:hover {
background: rgba(255,255,255,0.1);
border-color: var(--text-main);
}

/* --- 🚪 HEADER --- */
header {
position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
padding: 15px 5%;
display: flex; justify-content: space-between; align-items: center;
background: rgba(15, 23, 42, 0.85); backdrop-filter: blur(20px);
border-bottom: 1px solid var(--glass-border);
height: 70px;
}

.logo { font-size: 1.5rem; font-weight: 900; letter-spacing: -1px; display: flex; align-items: center; gap: 10px; }
.logo span { color: var(--primary); }

.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-item { color: var(--text-muted); font-weight: 500; font-size: 0.95rem; transition: 0.2s; }
.nav-item:hover { color: #fff; }

.nav-socials { display: flex; gap: 15px; margin-right: 20px; border-right: 1px solid var(--glass-border); padding-right: 20px; }
.social-icon { color: var(--text-muted); font-size: 1.1rem; transition: 0.2s; }
.social-icon:hover { color: var(--primary); transform: translateY(-2px); }

/* --- 🚀 HERO SECTION --- */
.hero-section {
padding: 180px 20px 100px; text-align: center;
max-width: 1000px; margin: 0 auto;
}

.badge {
background: rgba(59, 130, 246, 0.1); color: var(--primary);
padding: 6px 16px; border-radius: 100px; font-size: 0.85rem; font-weight: 800;
text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; display: inline-block;
border: 1px solid rgba(59, 130, 246, 0.2);
}

h1 {
font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; font-weight: 900; margin-bottom: 25px;
background: linear-gradient(180deg, #fff 0%, #94a3b8 100%);
-webkit-background-clip: text; background-clip: text;
-webkit-text-fill-color: transparent;
}

.subtitle {
font-size: 1.25rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 50px;
line-height: 1.7;
}

/* --- 🍱 GRID SYSTEM --- */
.grid-container {
max-width: 1200px; margin: 0 auto; padding: 80px 20px;
}
.grid-3 {
display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px;
}

.sport-card {
background: rgba(30, 41, 59, 0.4); /* Glassier background */
border: 1px solid var(--glass-border);
backdrop-filter: blur(10px);
border-radius: 24px; padding: 40px; position: relative; overflow: hidden;
transition: var(--transition-fast); display: block;
}
.sport-card:hover { transform: translateY(-5px); border-color: var(--primary); background: rgba(30, 41, 59, 0.6); }
.sport-card h3 { font-size: 1.8rem; margin: 15px 0 10px; font-weight: 800; }
.sport-card p { color: var(--text-muted); font-size: 1rem; margin-bottom: 25px; line-height: 1.5; }
.sport-icon { font-size: 3rem; margin-bottom: 15px; display: block; }

.status-badge {
font-size: 0.75rem; font-weight: 800; text-transform: uppercase;
padding: 6px 12px; border-radius: 100px; display: inline-block;
letter-spacing: 0.5px;
}
.status-live { background: rgba(16, 185, 129, 0.15); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.2); }
.status-soon { background: rgba(255, 255, 255, 0.05); color: var(--text-muted); border: 1px solid var(--glass-border); }

/* --- 🦶 FOOTER --- */
footer {
text-align: center; padding: 80px 20px; border-top: 1px solid var(--glass-border);
color: var(--text-muted); font-size: 0.9rem; margin-top: 50px;
}

/* ======================================================
  📱 MOBILE OPTIMIZATIONS (The Fix)
====================================================== */
@media (max-width: 768px) {
header {
padding: 10px 20px;
height: 60px; /* Shorter header on mobile */
}

/* Hide text links and socials on mobile header to prevent stretching */
.nav-links .nav-item, 
.nav-links .nav-socials {
display: none;
}

/* Ensure Logo and Login Button stay visible */
.logo { font-size: 1.2rem; }
.btn-glass { padding: 8px 16px; font-size: 0.8rem; }

.hero-section {
padding-top: 140px; /* Adjust hero spacing for mobile */
padding-bottom: 60px;
}

h1 {
font-size: 2.2rem; /* Smaller title on mobile */
}

.subtitle {
font-size: 1.1rem;
}
}