/* =========================
   BASE SECTION (COMPACT + CENTERED)
========================= */

.about-games-section {
    padding: 80px 0;
    background: #fff;
    margin-top: -60px;

    display: flex;
    justify-content: center;
}

.featured-games-section {
    background: #070B14;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* =========================
   CONTAINER (CENTER CONTROL FIX)
========================= */

.about-games-section .container {
    width: 100%;
    max-width: 1200px; /* unified with other sections */
    margin: 0 auto;
    padding: 0 var(--section-x);
}

/* =========================
   GRID (CENTERED STRUCTURE)
========================= */

.about-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;

    gap: 60px;

    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   LEFT SIDE
========================= */

.about-left {
    flex: 1.2;
    min-width: 0;

    position: sticky;
    top: 100px;
    align-self: flex-start;
}

/* =========================
   TYPOGRAPHY
========================= */

.about-small-title {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;

    background: linear-gradient(270deg, #AB2DD9 0%, #F3901B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    margin-bottom: 10px;
    font-weight: 800;
}

.about-main-title {
    font-family: "Anton", sans-serif;

    font-size: clamp(28px, 2.2vw, 62px);
    font-weight: 400;
    line-height: 1.1;

    letter-spacing: 0.5px;

    max-width: 720px;

    color: rgba(0,0,0,0.85);
    margin-bottom: 35px;
}

/* =========================
   BOTTOM CONTENT
========================= */

.about-bottom {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-text {
    font-size: 18px;
    line-height: 1.5;
    color: #6B6B6B;
    margin-bottom: 12px;
}

/* =========================
   RIGHT SIDE IMAGE (CENTER FIX)
========================= */

.about-right {
    flex: 1;
    display: flex;
    justify-content: center; /* FIX: was pushing too right */
    align-items: center;
}

.about-right-image-wrapper {
    width: 100%;
    max-width: 480px;

    overflow: hidden;
    z-index: 1;

    transition: transform 0.4s ease;
}

.about-right-image-wrapper:hover {
    transform: translateY(-4px);
}

.about-right-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

/* =========================
   BUTTON
========================= */

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    min-height: 50px;

    font-weight: 700;
    text-decoration: none;

    color: #070B14;
    transition: 0.3s ease;
}

.about-btn:hover {
    transform: translateX(3px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .about-games-section {
        padding: 60px 0;
    }

    .about-grid {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }

    .about-left {
        position: relative;
        top: unset;
        text-align: center;
    }

    .about-main-title {
        text-align: center;
        margin: 0 auto 25px;
    }

    .about-bottom {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .about-right-image {
        height: 380px;
    }
}

@media (max-width: 480px) {

    .about-main-title {
        font-size: clamp(26px, 9vw, 42px);
    }

    .about-right-image {
        height: 320px;
    }
}