* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0600EF 0%, #00008B 50%, #1a1a2e 100%);
    color: #ffffff;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 184, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.sports-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.football {
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.4);
    animation: bounce 2s infinite;
}

.f1-car {
    width: 150px;
    height: 80px;
    position: relative;
    animation: race 3s infinite;
}

.f1-car::before {
    content: '🏎️';
    font-size: 80px;
    filter: drop-shadow(0 0 10px rgba(255, 184, 0, 0.8));
    animation: speed 1s infinite;
}

@keyframes race {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(10px);
    }
    75% {
        transform: translateX(-10px);
    }
}

@keyframes speed {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.football::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 3px solid #000000;
    border-radius: 50%;
}

.football::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 60%;
    border: 2px solid #000000;
    border-radius: 50%;
    background: 
        linear-gradient(135deg, transparent 40%, #000000 40%, #000000 60%, transparent 60%),
        linear-gradient(45deg, transparent 40%, #000000 40%, #000000 60%, transparent 60%),
        linear-gradient(90deg, transparent 40%, #000000 40%, #000000 60%, transparent 60%),
        linear-gradient(0deg, transparent 40%, #000000 40%, #000000 60%, transparent 60%);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 
        0 0 10px rgba(255, 184, 0, 0.8),
        0 0 20px rgba(220, 20, 60, 0.6),
        3px 3px 6px rgba(0, 0, 0, 0.8);
    color: #ffffff;
    background: linear-gradient(135deg, #FFB800 0%, #ffffff 50%, #DC143C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.2em;
    color: #FFB800;
    margin-top: 10px;
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.6);
    font-weight: bold;
}

main {
    padding: 40px 0;
}

.games-section {
    margin-bottom: 60px;
}

.games-section h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
    color: #FFB800;
    text-shadow: 
        0 0 10px rgba(255, 184, 0, 0.8),
        0 0 20px rgba(220, 20, 60, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: bold;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.game-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #000000;
    text-decoration: none;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 184, 0, 0.3);
    border: 3px solid #0600EF;
    position: relative;
    overflow: hidden;
}

.game-card.redbull-card {
    background: linear-gradient(135deg, #DC143C 0%, #FFB800 50%, #0600EF 100%);
    color: #ffffff;
    border: 3px solid #FFB800;
    box-shadow: 0 5px 20px rgba(255, 184, 0, 0.5);
}

.game-card.redbull-card h3,
.game-card.redbull-card p {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.game-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover::before {
    opacity: 1;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 184, 0, 0.6);
    border-color: #FFB800;
}

.game-card.redbull-card:hover {
    box-shadow: 0 15px 40px rgba(255, 184, 0, 0.8);
    border-color: #ffffff;
}

.card-icon {
    font-size: 3em;
    margin-bottom: 15px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.game-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #000000;
    font-weight: bold;
}

.game-card p {
    font-size: 0.95em;
    color: #333333;
    line-height: 1.5;
}

footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    border-top: 2px solid rgba(255, 184, 0, 0.4);
}

footer p {
    font-size: 1.2em;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(255, 184, 0, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 10px 0;
}

.max-verstappen {
    font-size: 1.4em !important;
    color: #FFB800 !important;
    font-weight: bold;
    text-shadow: 
        0 0 15px rgba(255, 184, 0, 0.8),
        0 0 25px rgba(220, 20, 60, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.8) !important;
}

/* Responsive design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8em;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .football {
        width: 100px;
        height: 100px;
    }
    
    .f1-car {
        width: 120px;
        height: 60px;
    }
    
    .f1-car::before {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }
    
    .subtitle {
        font-size: 1em;
    }
    
    .games-section h2 {
        font-size: 1.5em;
    }
}

