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

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid #00d9ff;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #00d9ff;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
    letter-spacing: 2px;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 10px;
}

.nav-links a:hover {
    color: #00d9ff;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00d9ff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Sections */
section {
    min-height: 100vh;
    padding: 100px 20px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: #00d9ff;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.6);
    letter-spacing: 3px;
}

/* Home Section */
#home {
    background: radial-gradient(circle at center, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
}

.hero-content {
    text-align: center;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #00d9ff;
    text-shadow: 0 0 40px rgba(0, 217, 255, 0.8);
    margin-bottom: 1rem;
    letter-spacing: 5px;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.hero-info {
    font-size: 1.3rem;
    color: #aaa;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #00d9ff 0%, #0088cc 100%);
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
    border: 2px solid #00d9ff;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.6);
    background: linear-gradient(135deg, #00ffff 0%, #00aaff 100%);
}

/* Teams Section */
#teams {
    background: radial-gradient(circle at 30% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid #00d9ff;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 217, 255, 0.2);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.4);
    border-color: #00ffff;
}

.team-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00d9ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.6);
}

.team-players {
    list-style: none;
}

.team-players li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.team-players li:last-child {
    border-bottom: none;
}

/* Schedule Section */
#schedule {
    background: radial-gradient(circle at 70% 50%, rgba(255, 0, 127, 0.1) 0%, transparent 70%);
}

.schedule-container {
    width: 100%;
    max-width: 900px;
}

.match {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid #ff007f;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 0, 127, 0.2);
}

.match:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(255, 0, 127, 0.4);
}

.match-info {
    flex: 1;
}

.match-teams {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.match-date {
    color: #aaa;
    font-size: 1rem;
}

.match-status {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
}

.match-status.upcoming {
    background: linear-gradient(135deg, #00d9ff 0%, #0088cc 100%);
    color: #fff;
}

.match-status.live {
    background: linear-gradient(135deg, #ff007f 0%, #cc0066 100%);
    color: #fff;
    animation: pulse 2s infinite;
}

.match-status.completed {
    background: rgba(255, 255, 255, 0.1);
    color: #aaa;
}

/* Standings Section */
#standings {
    background: radial-gradient(circle at 50% 70%, rgba(0, 255, 127, 0.1) 0%, transparent 70%);
}

.standings-table {
    width: 100%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid #00ff7f;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 255, 127, 0.2);
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: rgba(0, 255, 127, 0.2);
}

thead th {
    padding: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00ff7f;
    text-align: left;
    text-shadow: 0 0 10px rgba(0, 255, 127, 0.6);
}

tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

tbody tr:hover {
    background: rgba(0, 255, 127, 0.1);
}

tbody td {
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
}

.rank {
    font-weight: 700;
    color: #00ff7f;
    font-size: 1.3rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .match {
        flex-direction: column;
        gap: 1rem;
    }
}
