:root {
    --bg-dark: #0f172a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --primary: #00f2ea; /* Neon Cyan */
    --secondary: #ff0055; /* Neon Pink */
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: var(--glass-border);
}

.logo {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.logo span { color: var(--primary); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--primary); }

.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s;
}

.btn-primary:hover { transform: scale(1.05); }

.hamburger { display: none; cursor: pointer; font-size: 1.5rem; }

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content { z-index: 2; }

.hero h1 {
    font-family: 'Teko', sans-serif;
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.highlight {
    color: transparent;
    -webkit-text-stroke: 2px var(--secondary);
}

.hero p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2rem; }

.hero-btns { display: flex; gap: 1rem; justify-content: center; }

.btn-secondary {
    border: 2px solid var(--text-main);
    color: var(--text-main);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-secondary:hover { background: var(--text-main); color: var(--bg-dark); }

/* Animated Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    animation: float 10s infinite alternate;
}

.shape-1 { width: 300px; height: 300px; background: var(--primary); top: -50px; left: -50px; opacity: 0.4; }
.shape-2 { width: 400px; height: 400px; background: var(--secondary); bottom: -100px; right: -100px; opacity: 0.3; }

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

/* Sections */
.container { padding: 4rem 5%; }
.section-title {
    font-family: 'Teko', sans-serif;
    font-size: 3rem;
    border-left: 5px solid var(--primary);
    padding-left: 1rem;
}
.section-subtitle {
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Schedule Timeline */
.timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.timeline-item {
    flex: 1 1 300px; /* Responsive Flex */
    background: var(--card-bg);
    border: var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.timeline-item:hover { background: rgba(255,255,255,0.08); }

.day-marker {
    background: var(--primary);
    color: var(--bg-dark);
    font-weight: bold;
    text-align: center;
    padding: 0.5rem;
    font-family: 'Teko', sans-serif;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

.event-card { padding: 1.5rem; }
.event-card h3 { color: var(--secondary); margin-bottom: 1rem; }

.event-list { list-style: none; }
.event-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.5rem;
}

/* NEW: Styles for the clickable sport links */
.sport-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: 0.3s;
    gap: 10px;
}

.sport-link i.fas { 
    width: 25px; 
    color: var(--primary);
}

.sport-link .arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: 0.3s;
    font-size: 0.8rem;
    color: var(--secondary);
}

.sport-link:hover {
    color: var(--primary);
    cursor: pointer;
}

.sport-link:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}

.sport-link.no-link:hover {
    color: var(--text-main);
    cursor: default;
}

.time {
    font-size: 0.9rem;
    color: var(--primary);
    background: rgba(0, 242, 234, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: black;
    color: var(--text-muted);
    margin-top: 4rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 3.5rem; }
    .nav-links {
        display: none;
    }
    .hamburger { display: block; color: var(--text-main); }
}
