@font-face {
    font-family: 'Geologica';
    font-display: swap;
    src: url('../forSek-fonts/forSek-geologica.woff2') format("woff2");
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #2D1005;
    color: #FEFEFE;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #FEFEFE;
    transition: color 0.3s ease;
}

a:hover {
    color: #D69420;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================= LAYOUT ================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

section {
    padding: 40px 16px;
}

/* ================= HEADER & NAV ================= */
.header {
    background-color: #2D1005;
    padding: 10px 16px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
}

.logo-icon {
    width: 30px;
    height: 20px;
    background-color: #D69420;
    border-radius: 4px;
}

.nav-list {
    display: flex;
    gap: 20px;
}

.nav-link {
    font-family: Geologica;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    color: #CBCBCB;
}

.nav-link:hover {
    color: #FEFEFE;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger-line {
    width: 25px;
    height: 3px;
    background-color: #FEFEFE;
    transition: 0.3s;
}

/* ================= 1. HERO SECTION ================= */
.hero-section {
    background: linear-gradient(#2D100580, #2D100580),
        url('../forSek-img/forSek-hero.webp') center/cover no-repeat;
    /* Placeholder for background image */
    text-align: center;
    padding: 40px 16px;
    position: relative;
}

.hero-cont {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 974px;
    margin: 0 auto;
    align-items: center;
}

.hero-title {
    font-family: Geologica;
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    text-align: center;
    text-transform: uppercase;
    color: #FEFEFE;
}



.hero-subtitle {
    font-family: Geologica;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    text-align: center;
    color: #FEFEFE;
}

.countdown-wrapper {
    background: #7239244D;
    border: 1px solid #D58E1C;
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.countdown-location {
    font-family: Geologica;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #FEFEFE;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-box {
    background: radial-gradient(50% 50% at 50% 50%, #D5B91C 0%, #D58E1C 100%);
    color: #FEFEFE;
    padding: 20px 13.5px;
    border-radius: 6px;
}

.countdown-num {
    font-family: Geologica;
    font-weight: 700;
    font-style: Bold;
    font-size: 32px;
    text-align: center;
    color: #FEFEFE;
}

.countdown-label {
    font-family: Geologica;
    font-weight: 400;
    font-style: Regular;
    font-size: 12px;
    text-align: center;
    color: #FEFEFE;
}

.btn-primary {
    width: 100%;
    max-width: 500px;
    background: radial-gradient(50% 50% at 50% 50%, #D5B91C 0%, #D58E1C 100%);
    box-shadow: 0px 0px 10px 5px #E3C30C40;
    color: #FEFEFE;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: Geologica;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background: #D5261C99;
}

/* ================= 2. THREE REASONS ================= */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.reason-card {
    border-right: 1px solid #CBCBCB;
    padding: 40px;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.reason-card:last-child {
    border-right: none;
    padding-right: 0;
}

.reason-num {
    font-family: Geologica;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 16px;
    color: #D58E1C;
}

.section-title {
    font-family: Geologica;
    font-weight: 700;
    font-style: Bold;
    font-size: 32px;
    text-transform: uppercase;
    padding-bottom: 30px;
    line-height: 1;
}

.reason-card-title {
    font-family: Geologica;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    padding-bottom: 10px;
    text-transform: uppercase;
    color: #FEFEFE;
}

.reason-text {
    font-family: Geologica;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    color: #CBCBCB;
}

.icon-placeholder {
    width: 30px;
    height: 30px;
    border: 2px solid #FEFEFE;
    border-radius: 4px;
}

/* ================= 3. AR PREDICTION ================= */
.ar-wrapper {
    background: #7239244D;
    border: 1px solid #D58E1C;
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 40px;
}

.cont-pred {
    background: linear-gradient(#2D100580, #2D100580),
        url('../forSek-img/forSek-predpic.webp') center/cover no-repeat;
}

.ar-text-block p {
    margin-bottom: 20px;
    font-family: Geologica;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
}

.ar-list {
    margin-left: 20px;
    margin-bottom: 20px;
    list-style-type: disc;
}

.ar-list li {
    font-family: Geologica;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
}

/* ================= 4. HOW IT WORKS ================= */
.steps-grid {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.arr-block {
    display: flex;
    align-items: center;
}

.steps-grid img {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

.step-card {
    background: #7239244D;
    border: 1px solid #D58E1C;
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 16px;
    position: relative;
    width: 100%;
    max-width: 267px;
}

.step-title {
    font-family: Geologica;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.step-text {
    font-family: Geologica;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    color: #FEFEFE;
    line-height: 1;
}

/* ================= 5. PRIZES ================= */
.prizes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.prize-card {
    border-right: 1px solid #CBCBCB;
    padding-right: 30px;
}

.prize-card:last-child {
    border-right: none;
    padding-right: 0;
}

.prize-label {
    font-family: Geologica;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 16px;
    color: #D58E1C;
    margin-bottom: 10px;
}

.step-text-prize {
    font-family: Geologica;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    padding-bottom: 20px;
    color: #CBCBCB;
}

/* ================= 6. LIVE ON SCREEN ================= */
.live-wrapper {
    background: #7239244D;
    border: 1px solid #D58E1C;
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.live-text {
    flex: 1;
}

.live-text p {
    margin-bottom: 20px;
    font-family: Geologica;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    color: #FEFEFE;
}


/* ================= 7. PICK YOUR SPORT ================= */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.tit-down {
    padding-bottom: 10px;
}

.sport-card {
    background: #7239244D;
    border: 1px solid #D58E1C;
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px;
}

.sport-title {
    font-family: Geologica;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    margin-bottom: 10px;
}

/* ================= 8. GALLERY ================= */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.gallery-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
}

/* ================= 9. FAQ ================= */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-q {
    font-family: Geologica;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    text-transform: uppercase;
    padding-bottom: 4px;
}

.line-bord {
    border: 1px solid #CBCBCB;
    margin-bottom: 5px;
    width: 100%;
    max-width: 200px;
}

.faq-a {
    font-family: Geologica;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    color: #CBCBCB;
}

/* ================= FOOTER ================= */
.footer {
    background-color: #2D1005;
    padding: 40px 16px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-col {
    max-width: 333px;
}

.footer-title {
    font-family: Geologica;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 20px;
    color: #FEFEFE;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.age-limit {
    font-family: Geologica;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-text {
    font-family: Geologica;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    color: #CBCBCB;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-family: Geologica;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    color: #FEFEFE;
}

.footer-links a:hover {
    color: #D69420;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.s-icon {
    width: 24px;
    height: 24px;
    border: 1px solid #FEFEFE;
    border-radius: 50%;
}

.footer-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-text img {
    display: flex;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {

    .reasons-grid,
    .prizes-grid,
    .live-wrapper,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .live-wrapper {
        flex-direction: column;
    }

    .reason-card,
    .prize-card {
        border-right: none;
        border-bottom: 1px solid rgba(254, 254, 254, 0.2);
        padding-right: 0;
        padding-bottom: 30px;
    }

    .reason-card:last-child,
    .prize-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .sports-grid,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 40px;
        left: 0;
        width: 100%;
        background-color: #2D1005;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        border-bottom: 1px solid rgba(254, 254, 254, 0.1);
    }

    .nav-list.active {
        display: flex;
    }

    .hero-title {
        font-size: 28px;
    }

    .countdown-timer {
        flex-wrap: wrap;
    }

    .steps-grid,
    .sports-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .gallery-main-img {
        min-height: 250px;
    }
}




/* ================= NEW SECTIONS STYLES ================= */
.text-center {
    text-align: center;
}

.pill-wrap {
    margin-bottom: 20px;
}

.pill-badge {
    display: inline-block;
    border: 1px solid #D58E1C;
    border-radius: 30px;
    padding: 10px 60px;
    font-family: Geologica;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 16px;
    text-align: center;
    color: #FEFEFE;
}

.title-large {
    font-family: Geologica;
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    text-align: center;
    text-transform: uppercase;
    max-width: 974px;
    margin: 0 auto;
    color: #FEFEFE;
}

.about-tent-section .section-title {
    padding-bottom: 20px;
}

.section-subtitle {
    font-family: Geologica;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    text-align: center;
    color: #FEFEFE;
    margin-bottom: 30px;
}

.section-subtitle-left {
    font-family: Geologica, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #FEFEFE;
    margin-bottom: 30px;
}

.info-box {
    background: #7239244D;
    border: 1px solid #D58E1C;
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box p {
    font-family: Geologica;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    color: #FEFEFE;
    margin-bottom: 0;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 10px 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: Geologica, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #FEFEFE;
    line-height: 1.5;
}

.custom-checkbox {
    width: 16px;
    height: 16px;
    background-color: #1a0802;
    border: 1px solid #D58E1C;
    border-radius: 3px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.custom-checkbox::after {
    content: '';
    width: 4px;
    height: 8px;
    border: solid #D58E1C;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

/* ================= TECH SECTION STYLES ================= */
.tech-section .section-title {
    padding-bottom: 10px;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 50px;
}

.tech-col {
    display: flex;
    flex-direction: column;
    gap: 0px;
}




.tech-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    padding: 40px;
}

.tech-card div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tech-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-bottom: 5px;
}

.tech-card-title {
    font-family: Geologica;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    color: #FEFEFE;
    text-transform: uppercase;
}

.tech-text {
    font-family: Geologica;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    color: #CBCBCB;
}

/* ================= RESPONSIVE ADJUSTMENTS ================= */
@media (max-width: 992px) {
    .tech-col-left {
        padding-right: 30px;
    }

    .tech-col-right {
        padding-left: 30px;
    }
}

@media (max-width: 768px) {
    .title-large {
        font-size: 26px;
    }

    .info-box {
        padding: 20px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .tech-col {
        gap: 40px;
    }

    .tech-col-left {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(254, 254, 254, 0.2);
        padding-bottom: 40px;
    }

    .tech-col-right {
        padding-left: 0;
        padding-top: 40px;
    }
}


/* ================= LOCATION SECTION STYLES ================= */
.location-section {
    padding-top: 40px;
    padding-bottom: 60px;
}

.location-grid {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 750px;
}

.detail-box {
    background: #7239244D;
    border: 1px solid #D58E1C;
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-label {
    font-family: Geologica;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 1;
}

.detail-value {
    font-family: Geologica;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    color: #FEFEFE;
}

.times-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-top: 8px;
}

.times-list li {
    font-family: Geologica, sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #FEFEFE;
    margin-bottom: 5px;
}

.times-list li:last-child {
    margin-bottom: 0;
}

.location-map {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
}

.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* ================= АДАПТИВНОСТЬ ================= */
@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-map {
        min-height: 350px;
    }
}

@media (max-width: 768px) {

    .detail-value,
    .times-list li {
        font-size: 16px;
    }

    .detail-box {
        padding: 20px;
    }
}



/* ================= PARTNERS SECTION ================= */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.partner-card {
    background: #7239244D;
    border: 1px solid #D58E1C;
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 30px 20px 20px 20px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.partner-tag {
    position: absolute;
    top: -1px;
    left: -1px;
    background: #E3C30C;
    /* Желтый цвет из макета */
    color: #2D1005;
    font-family: Geologica;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 12px;
    padding: 4px 20px 4px 16px;
    border-radius: 10px 0 10px 0;
    /* Скругление левого верхнего и правого нижнего угла */
}

.partner-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    line-height: 1;
}


.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 198px;
    max-height: 71px;
}

.partner-logo img {
    max-width: 198px;
    max-height: 71px;
}

.partner-offer {
    font-family: Geologica;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    text-align: center;
    color: #FEFEFE;
    text-transform: uppercase;
}

.partner-rating {
    font-family: Geologica;
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    text-align: center;
    color: #FEFEFE;
    line-height: 1;
}


.partner-online {
    font-family: Geologica;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    color: #FEFEFE;
}

.partner-btn {
    display: block;
    width: 100%;
    max-width: none;
    font-size: 16px;
    padding: 10px 20px;
    margin-bottom: 5px;
}

.payment-icons {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

/* ================= ARTICLE SECTION (GP INFO) ================= */
.gp-info-section {
    padding-top: 40px;
}

.article-box {
    padding: 20px;
    background: #7239244D;
    border: 1px solid #D58E1C;
    backdrop-filter: blur(20px);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.article-subtitle {
    font-family: Geologica;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    color: #FEFEFE;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.article-subtitle:first-child {
    margin-top: 0;
}

.article-box p {
    font-family: Geologica;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    margin-bottom: 10px;
    color: #FEFEFE;
}

.article-box p:last-child {
    margin-bottom: 0;
}

/* ================= DISCLAIMER & LOGOS ================= */
.disclaimer-section {
    padding-top: 0px;
    padding-bottom: 40px;
}

.compliance-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.disclaimer-box {
    padding: 40px;
    gap: 0;
}

.disclaimer-box p {
    font-family: Geologica, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #FEFEFE;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* ================= АДАПТИВНОСТЬ ================= */
@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .article-box,
    .disclaimer-box {
        padding: 20px;
    }

    .compliance-logos {
        gap: 20px;
        justify-content: center;
    }



}

.sec-tit-part {
    padding-bottom: 20px;
}




/* Настройки секции с игрой (правая колонка) */
.demo-section {
    flex: 1;
    /* Игра занимает все оставшееся место (55%) */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 16px;
    max-width: 1232px;
}

/* --- Контейнер самой игры (адаптивный 16:9) --- */
.block-game {
    position: relative;
    width: 100%;
    /* Ограничитель, чтобы игра не становилась гигантской на больших экранах */
    margin: 0 auto;
    padding-bottom: 56.25%;
    /* Пропорция 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    /* Немного скруглим углы для красоты */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.block-game iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    /* Убираем стандартную рамку iframe */
}







/* ================= POLICY SECTION STYLES ================= */
.policy-section {
    padding-top: 40px;
    padding-bottom: 60px;
}

.policy-box p strong {
    font-family: Geologica, sans-serif;
    font-weight: 600;
    /* Полужирный для подзаголовков в тексте */
    color: #FEFEFE;
}

.policy-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-list li {
    font-family: Geologica, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #FEFEFE;
    line-height: 1.5;
    margin-bottom: 5px;
}

.policy-list li strong {
    font-weight: 600;
}



@media(max-width:992px) {
    .gallery-grid {
        /* grid-template-columns: 1fr; */
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .steps-grid {
        display: flex;
        gap: 10px;
        flex-direction: column;
    }

    .step-card {
        max-width: 100%;
    }

    .arr-block {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .steps-grid img {
        rotate: 90deg;
    }

    .footer-grid {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
    }

    .location-grid {
        display: flex;
        gap: 30px;
        margin-top: 30px;
        flex-direction: column;
        align-items: center;
    }

}

@media(max-width: 600px) {
    .hero-subtitle {
        font-size: 16px;
    }

    .countdown-wrapper {
        padding: 20px;
    }

    .countdown-timer {
        flex-wrap: nowrap;
        gap: 6px;
    }

    .countdown-num {
        font-size: 28px;
    }


    .section-title {
        font-size: 24px;
        padding-bottom: 20px;
    }

    .reason-card {
        padding: 20px;
        gap: 20px;
    }

    .ar-wrapper {
        padding: 20px;
    }

    .live-wrapper {
        padding: 20px;
    }

    .sports-grid {
        gap: 10px;
    }

    .gallery-grid {
        gap: 10px;
    }


    .gallery-sub-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .faq-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 0px;
    }

}