body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #333;
}

header {
    background: #000000;
    color: White;
    padding: 1em;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

nav ul li a {
    color: White;
    text-decoration: none;
    font-weight: bold;
}

/* ✅ Corrected Button CSS */
.download-btn {
    display: inline-block;
    background-color: #000000;
    color: white;
    padding: 14px 25px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: 0.3s ease-in-out;
}

.download-btn:hover {
    background-color: #e64a19;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    transform: scale(1.05);
}

/* ✅ Corrected Mobile Responsive for Button */
@media (max-width: 600px) {
    .download-btn {
        width: 100%;
        font-size: 16px;
        padding: 12px;
    }
}

.game-icon-container {
    text-align: center;
    margin: 20px auto;
}

.game-icon {
    width: 100px;
    height: 100px;
    
    border-radius: 20%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease-in-out;
}

.game-icon:hover {
    transform: scale(1.1);
}




footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1em;
    position: relative;
    bottom: 0;
    width: 100%;
}

@media screen and (max-width: 600px) {
    nav ul {
        flex-direction: column;
    }
}
