/* Mobile Optimization*/
@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        height: auto;
        padding: 10px 0;
        flex-direction: column;
        justify-content: center;
    }

    .navbar__logo {
        margin: 0;
        margin-bottom: 5px;
    }

    .navbar__content {
        margin: 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 140px 20px 60px 20px;
    }

    .hero__title__1 {
        font-size: 32px;
    }

    .hero__title__2 {
        font-size: 36px;
    }

    .news-btm {
        margin-top: 40px;
    }

    /* Features Section */
    .features__section {
        margin: 40px 20px 0 20px;
    }

    .features {
        flex-direction: column;
        gap: 20px;
    }

    .features__1,
    .features__2,
    .features__3 {
        width: 100%;
        height: auto;
        padding: 15px;
        box-sizing: border-box;
    }

    .features__images {
        height: 200px;
    }

    .features__images img {
        height: 100%;
    }

    /* Global Section */
    .global__section {
        margin: 40px 20px 0 20px;
        flex-direction: column;
        height: auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .global__description {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .global__title {
        margin: 20px 0;
    }

    .global__content {
        flex-direction: column;
        gap: 20px;
    }

    .global__nodes {
        margin: 0;
        justify-content: center;
    }

    .global__map__placeholder {
        width: 100%;
        height: 300px;
        margin: 20px 0;
    }

    /* Games Section */
    .games__section {
        margin: 40px 20px 0 20px;
        height: auto;
    }

    .games__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-auto-rows: 150px;
    }

    .games {
        grid-column: span 1;
        grid-row: span 1;
    }

    .mc,
    .terraria,
    .csgo,
    .tf {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Rotating Section */
    .rotating__section {
        margin-top: 40px;
    }

    /* Reviews Section */
    .reviews__section {
        margin: 60px 20px;
        width: auto;
        gap: 40px;
    }

    .reviews__txt .title {
        font-size: 24px;
    }

    .reviews__txt .des {
        text-align: center;

    }

    /* CTA Section */
    .cta__section {
        margin: 60px 20px 0 20px;
        padding: 30px 20px;
        border-radius: 12px;
    }

    .cta__content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cta__left,
    .cta__right {
        width: 100%;
        text-align: center;
    }

    .cta__title {
        font-size: 28px;
    }

    .cta__divider {
        display: none;
    }

    .cta__buttons {
        justify-content: center;
    }

    .cta__timer {
        justify-content: center;
    }

    .cta__expires {
        text-align: center;
    }

    /* Footer */
    .site-footer {
        margin: 60px 0 0 0;
    }

    .footer__main {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }

    .footer__brand {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .footer__links-group {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer__link {
        margin: 0 auto;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }
}