body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding-top: 0;
    background-size: cover;
    animation: backgroundZoom 20s infinite alternate;
    color: #546571;
}

.headline {
    margin: 10px 0;
    font-size: 58px;
    font-family: 'Nunito Sans', sans-serif;
    color: #546571;
}

.play-now-button {
    background: linear-gradient(to bottom, #FFD42A 0%, #F9A632 50%, #F58225 100%);
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    color: white;
    font-size: 20px;
    font-weight: bold;
    border: 2.5px solid #F09824;
    letter-spacing: 1px;
    cursor: pointer;
    text-shadow:
        -1px -1px 0 #A77D52,
        1px -1px 0 #A77D52,
        -1px 1px 0 #A77D52,
        1px 1px 0 #A77D52;
    text-align: center;
}

.play-now-button:hover {
    transform: scale(1.1);
}

/* Mobile Adjustments */
@media (max-width: 1250px) {
    .game-info-container {
        padding: 10px !important;
        flex-direction: column;
        text-align: center;
        margin-top: 200px;
        padding-bottom: 50px !important;
    }

    .game-info-text {
        padding: 0 10px;
    }

    .game-info-image{
        display: none;
    }

    .play-now-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 375px) {
    .game-info-container {
        padding: 10px !important;
        flex-direction: column;
        text-align: center;
        margin-top: 475px;
        padding-bottom: 50px !important;
    }
}

.game-info-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 40px;
}

.game-info-image {
    max-width: 900px;
    width: 100%;
    animation: bounce 3s infinite;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.game-info-text {
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.60);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.headline {
    margin: 10px 0;
    font-size: 58px;
    font-family: 'Nunito Sans', sans-serif;
    color: #546571;
}
