/* Stile Globale */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    color: #fff;
    background: linear-gradient(135deg, #1e293b, #111827);
    overflow-x: hidden;
}

/* Header */
header {
    text-align: center;
    padding: 20px 10px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.4);
}

header h1 {
    margin: 0;
    font-size: 3rem;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

header p {
    margin: 5px 0 0;
    font-size: 1.2rem;
    color: #dbeafe;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

/* Menu dei Giochi */
#game-menu {
    padding: 30px;
}

.game-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.game-list li {
    margin: 10px;
}

.game-list a {
    display: block;
    text-decoration: none;
    padding: 15px 20px;
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: #fff;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    width: 200px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.game-list a:hover {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(59, 130, 246, 0.8);
}

/* Footer */
footer {
    text-align: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    font-size: 1rem;
    box-shadow: 0px -5px 15px rgba(0, 0, 0, 0.4);
}

/* Media Queries */
@media screen and (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1rem;
    }

    .game-list a {
        font-size: 0.9rem;
        width: 150px;
    }
}

@media screen and (max-width: 480px) {
    header h1 {
        font-size: 1.8rem;
    }

    header p {
        font-size: 0.9rem;
    }

    .game-list a {
        font-size: 0.8rem;
        width: 120px;
    }
}
