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

body {
    font-family: 'Press Start 2P', cursive;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.container {
    width: 90%;
    max-width: 800px;
    padding: 2rem;
    position: relative;
}

.title {
    text-align: center;
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.game-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.game-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
    border-color: #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.game-title {
    font-size: 1rem;
}

.game-arrow {
    font-size: 1.2rem;
    opacity: 0.7;
}

.footer {
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    padding-top: 1rem;
    letter-spacing: 1px;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(0, 255, 0, 0.8),
                     0 0 30px rgba(0, 255, 0, 0.6);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .game-item {
        padding: 1rem;
    }

    .game-title {
        font-size: 0.8rem;
    }

    .footer {
        font-size: 0.6rem;
    }
} 