* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
        
body {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    }
        
.container {
    max-width: 800px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    }
        
.logo {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #FFD700, #FF4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.8rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.football {
    font-size: 3rem;
    margin: 20px 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.feature {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 12px;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.feature h3 {
    color: #FFD700;
    margin-bottom: 10px;
}

.email-form {
    margin: 40px 0;
}

.email-form input {
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    width: 300px;
    max-width: 100%;
    font-size: 1rem;
    margin: 10px;
}

.email-form button {
    background: linear-gradient(45deg, #FF4500, #FF8C00);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

.email-form button:hover {
    transform: scale(1.05);
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    color: #FFD700;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}

.contact {
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== LEAGUES SECTION ===== */
.leagues {
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    margin: 40px 0;
}

.leagues h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #FFD700, #FF4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.leagues p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.league-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.league-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 25px;
    width: 180px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.league-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.league-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.league-card h3 {
    margin: 10px 0 5px;
    color: #FFD700;
    font-size: 1.2rem;
}

.league-card p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* ===== MATCHES SECTION ===== */
.matches {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    margin: 40px 0;
}

.matches h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #FFD700;
}

#matches-container {
    max-width: 600px;
    margin: 0 auto;
}

.match-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s;
}

.match-card:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.15);
}

.match-teams {
    font-weight: bold;
    font-size: 1.1rem;
}

.match-score {
    font-size: 1.3rem;
    color: #FFD700;
    font-weight: bold;
}

.match-time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 20px;
}