/* Section Container */
.game {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
}

/* Content (Text) */
.game__content {
    color: #fff;
}

/* Section Header */
.game__content .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    text-shadow: rgba(255, 0, 82, 0.9) 2px 2px 2px; 
    margin-bottom: 20px;
}

.game__content .section-header p {
    max-width: 650px;
    margin: 15px auto 0;
    font-size: 16px;
    line-height: 1.6;
}

/* Button Styles */
.default-button {
    display: inline-block;
    background-color: #ff0052;
    color: #ff0052;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.default-button:hover {
    background-color: #ff2f18;
}

.default-button i {
    margin-left: 10px;
}

/* Image Styling */
.game__thumb img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Layout */
@media (max-width: 992px) {
    .game__thumb {
        display: block;
        margin: 0 auto;
    }

    .game__content .section-header h2 {
        font-size: 28px;
    }

    .game__content .section-header p {
        font-size: 14px;
    }

    .default-button {
        padding: 10px 25px;
    }
}

.game-style3 {
    padding: 60px 0;
    background-size: cover;
}

/* Zoom-in / Zoom-out animation */
@keyframes lab_zoominout {
    0% {
        transform: scale(1); /* Start at normal size */
    }
    50% {
        transform: scale(1.05); /* Zoom in */
    }
    100% {
        transform: scale(1); /* Zoom out */
    }
}


