* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #0b1a2e;
    color: #f0f4f8;
    line-height: 1.6;
}

header {
    background: #1a2d42;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    letter-spacing: 1px;
}

.logo i {
    margin-right: 10px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
}

nav a {
    color: #c0d4e8;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    padding: 0.5rem 0.8rem;
    border-radius: 30px;
}

nav a:hover {
    background: #ffd700;
    color: #0b1a2e;
}

.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #ffd700;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0b1a2e 0%, #1a3a5c 100%);
}

.hero h1 {
    font-size: 2.8rem;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3rem;
    color: #aac;
}

section {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

section h2 {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 2rem;
    border-left: 6px solid #ffd700;
    padding-left: 1rem;
}

.badge {
    background: #ffd700;
    color: #0b1a2e;
    font-size: 0.8rem;
    padding: 0.2rem 1rem;
    border-radius: 30px;
    vertical-align: middle;
    margin-left: 0.5rem;
}

.filter-bar {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-bar select {
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    border: none;
    background: #1a2d42;
    color: #f0f4f8;
    font-size: 1rem;
}

.card {
    background: #1a2d42;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255,215,0,0.1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255,215,0,0.15);
}

.match-grid, .group-grid, .news-grid, .player-grid, .history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.match-card, .news-card, .player-card, .history-card {
    border-left: 4px solid #ffd700;
}

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

.match-info {
    font-size: 0.9rem;
    color: #99b;
    margin-bottom: 0.5rem;
}

.match-score {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
}

.group-card table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.group-card th, .group-card td {
    padding: 0.5rem;
    text-align: left;
    border-bottom: 1px solid #2a3f55;
    font-size: 0.9rem;
}

.group-card th {
    color: #ffd700;
    font-weight: 600;
}

#map {
    height: 450px;
    border-radius: 24px;
    margin-bottom: 2rem;
    border: 2px solid #ffd700;
}

.venue-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.venue-card {
    cursor: pointer;
}

.ticket-guide {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
}

footer {
    background: #0b1a2e;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #2a3f55;
    color: #88a;
}

footer a {
    color: #ffd700;
    text-decoration: none;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background: #1a2d42;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        padding: 1rem;
        border-radius: 0 0 16px 16px;
    }
    nav ul.active {
        display: flex;
    }
    .hamburger {
        display: block;
    }
    .hero h1 {
        font-size: 2rem;
    }
    section {
        padding: 2rem 1rem;
    }
}