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

body {
    font-family: 'Comic Sans MS', 'Arial', sans-serif;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0e27 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 20px;
}

.landing-screen {
    text-align: center;
    width: 100%;
    max-width: 1200px;
}

.main-title {
    font-family: 'Arial Black', sans-serif;
    font-size: 5em;
    color: #ffd60a;
    text-shadow:
        0 0 10px rgba(255, 214, 10, 0.8),
        0 0 20px rgba(255, 214, 10, 0.6),
        0 0 30px rgba(255, 214, 10, 0.4),
        4px 4px 0 #ff006e,
        5px 5px 0 #7209b7;
    margin-bottom: 80px;
    letter-spacing: 4px;
    font-weight: 900;
    text-transform: uppercase;
}

.games-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
}

.game-card {
    background: rgba(26, 26, 46, 0.95);
    border-radius: 20px;
    padding: 50px 40px;
    width: 350px;
    border: 2px solid rgba(255, 214, 10, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 214, 10, 0.1), transparent);
    transition: left 0.5s;
}

.game-card:hover::before {
    left: 100%;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 214, 10, 0.8);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 214, 10, 0.3);
}

.game-icon {
    font-size: 5em;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 214, 10, 0.3));
}

.game-name {
    font-family: 'Arial Black', sans-serif;
    font-size: 2em;
    color: #ffd60a;
    text-shadow:
        0 0 10px rgba(255, 214, 10, 0.6),
        0 0 20px rgba(255, 214, 10, 0.3);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.game-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1em;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 3em;
        margin-bottom: 50px;
    }

    .game-card {
        width: 100%;
        max-width: 400px;
        padding: 40px 30px;
    }

    .game-icon {
        font-size: 4em;
    }

    .game-name {
        font-size: 1.6em;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2em;
        margin-bottom: 40px;
    }

    .game-card {
        padding: 30px 20px;
    }

    .game-icon {
        font-size: 3em;
    }

    .game-name {
        font-size: 1.3em;
    }

    .game-description {
        font-size: 1em;
    }
}
