/* =========================
   TABLET / MOBILE NAVBAR
========================= */

@media (max-width: 1100px) {

    /* Smaller spacing around navbar */
    .site-header {
        padding: 18px 16px 0;
    }

    /* Mobile navbar card */
    .navbar {
        padding: 11px 14px;
        border-radius: 22px;

        box-shadow:
            0 12px 26px rgba(255, 0, 70, 0.12),
            0 8px 24px rgba(0, 0, 0, 0.08);
    }

    /* Smaller logo */
    .nav-logo {
        width: 54px;
        height: 54px;
    }

    /* Smaller brand text */
    .nav-brand-text {
        font-size: 1.55rem;
    }

    /* Show hamburger button */
    .nav-toggle {
        width: 50px;
        height: 50px;

        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 6px;

        background: #ffffff;
        border: 1px solid rgba(224, 0, 0, 0.24);
        border-radius: 14px;

        cursor: pointer;

        box-shadow: 0 8px 18px rgba(224, 0, 0, 0.10);
    }

    /* Hamburger lines */
    .nav-toggle span {
        width: 22px;
        height: 2px;

        background: #e00000;
        border-radius: 50px;

        transition: 0.25s ease;
    }

    /* Turn hamburger into X */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /*
        Mobile menu panel.
        Solid white so it does not look dark.
    */
    .nav-menu {
        position: fixed;
        top: 110px;
        left: 16px;
        right: 16px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;

        background: #ffffff;
        border: 1px solid rgba(224, 0, 0, 0.18);
        border-radius: 24px;

        padding: 18px;

        box-shadow:
            0 18px 35px rgba(0, 0, 0, 0.10),
            0 8px 24px rgba(224, 0, 0, 0.08);

        backdrop-filter: none;
        -webkit-backdrop-filter: none;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(-12px);

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;

        z-index:3002;
    }

    /* Show mobile menu */
    .nav-menu.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    /* Mobile menu header */
    .mobile-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;

        padding-bottom: 14px;
        border-bottom: 1px solid rgba(224, 0, 0, 0.14);
    }

    .mobile-brand {
        display: flex;
        align-items: center;
        gap: 10px;

        font-size: 1.4rem;
        font-weight: 900;
        letter-spacing: 1px;
        color: #111111;
    }

    .mobile-brand img {
        width: 52px;
        height: 52px;
        object-fit: contain;
    }

    /* X close button */
    .mobile-close-btn {
        width: 48px;
        height: 48px;

        display: flex;
        align-items: center;
        justify-content: center;

        background: #ffffff;
        color: #e00000;

        border: 1px solid rgba(224, 0, 0, 0.22);
        border-radius: 14px;

        font-size: 2rem;
        line-height: 1;

        cursor: pointer;
    }

    /* Nav links wrapper on mobile */
    .nav-links-wrap {
        width: 100%;
        display: block;
    }

    /* Hide desktop underline on mobile */
    .nav-indicator {
        display: none;
    }

    /* Mobile links stack vertically */
    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(224, 0, 0, 0.12);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    /*
        Mobile link layout:
        icon | text | arrow
    */
    .nav-links a {
        width: 100%;

        display: grid;
        grid-template-columns: 28px 1fr auto;
        align-items: center;
        gap: 14px;

        color: #222222;
        font-size: 1rem;
        font-weight: 600;

        padding: 15px 14px;
        border-radius: 12px;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: #e00000;
        background: rgba(224, 0, 0, 0.07);
    }

    .mobile-link-icon {
        width: 26px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        color: #e00000;
        font-size: 1.15rem;
    }

    .mobile-link-arrow {
        display: inline-flex;
        color: #e00000;
        font-size: 1.6rem;
        line-height: 1;
    }

    /* CTA full width on mobile */
    .nav-cta {
        width: 100%;
        padding: 16px 20px;
        border-radius: 14px;
        font-size: 1rem;
    }

    /*
        Light overlay.
        It lets users click outside to close,
        but it does not darken the menu.
    */
   .menu-overlay {
    position: fixed;
    inset: 0;

    display: block;

    /*
        Very light overlay.
        It stays behind the menu but still allows outside click close.
    */
    background: rgba(255, 255, 255, 0.04);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;

    /*
        Lower than navbar/menu.
        This fixes mobile nav links not clicking.
    */
    z-index: 2500;
}

    .menu-overlay.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

/* =========================
   SMALL MOBILE NAVBAR
========================= */

@media (max-width: 520px) {

    .site-header {
        padding: 14px 12px 0;
    }

    .navbar {
        padding: 10px 12px;
        border-radius: 20px;
    }

    .nav-logo {
        width: 48px;
        height: 48px;
    }

    .nav-brand-text {
        font-size: 1.35rem;
    }

    .nav-toggle {
        width: 46px;
        height: 46px;
    }

    .nav-menu {
        top: 94px;
        left: 12px;
        right: 12px;
        padding: 16px;
        border-radius: 22px;
    }

    .mobile-brand {
        font-size: 1.25rem;
    }

    .mobile-brand img {
        width: 46px;
        height: 46px;
    }

    .mobile-close-btn {
        width: 44px;
        height: 44px;
    }

    .nav-links a {
        padding: 14px 12px;
        font-size: 0.96rem;
    }

    .test-page {
        margin-top: 70px;
    }

    .test-page h1 {
        font-size: 2.1rem;
    }
}

/* =========================
   VERY SMALL PHONES
========================= */

@media (max-width: 360px) {

    .nav-logo {
        width: 42px;
        height: 42px;
    }

    .nav-brand-text {
        font-size: 1.15rem;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
    }
}

/* =========================
   FOOTER RESPONSIVE TABLET
========================= */

@media (max-width: 1050px) {

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-contact-group {
        grid-column: span 2;
    }

    .footer-input-wrap {
        max-width: 460px;
    }
}

/* =========================
   FOOTER RESPONSIVE MOBILE
========================= */

@media (max-width: 720px) {

    .site-footer {
        padding: 70px 12px 22px;
    }

    .footer-shell {
        border-radius: 24px;
    }

    .footer-main {
        display: flex;
        flex-direction: column;
        gap: 0;

        padding: 34px 22px 24px;
    }

    .footer-main::after {
        width: 100%;
        height: 45%;

        opacity: 0.28;
    }

    .footer-brand-section {
        padding-bottom: 28px;
    }

    .footer-brand img {
        width: 62px;
        height: 62px;
    }

    .footer-brand span {
        font-size: 1.9rem;
    }

    .footer-title-line {
        margin: 16px 0 20px;
    }

    .footer-socials a {
        width: 42px;
        height: 42px;
    }

    /*
        Footer groups become accordion sections on mobile.
    */
    .footer-group {
        border-top: 1px solid rgba(0, 0, 0, 0.13);
        padding: 0;
    }

    .footer-group-title {
        cursor: pointer;
        margin: 0;
        padding: 20px 0;

        font-size: 0.88rem;
    }

    .footer-group-title::before,
    .footer-group-title::after {
        display: none;
    }

    .footer-arrow {
        display: inline-flex;
        transition: transform 0.25s ease;
    }

    /*
        Hide accordion content by default.
        The .open class displays the content.
    */
    .footer-group-content {
        max-height: 0;
        overflow: hidden;
        gap: 12px;

        transition: max-height 0.3s ease;
    }

    .footer-group.open .footer-group-content {
        max-height: 560px;
        padding-bottom: 22px;
    }

    .footer-group.open .footer-arrow {
        transform: rotate(180deg);
    }

    .footer-group-content a {
        font-size: 0.95rem;
    }

    .footer-small-text {
        max-width: 100%;
        margin-top: 8px;
    }

    .footer-input-wrap {
        max-width: 100%;
    }

    .footer-input-wrap button {
        padding: 0 16px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 14px;

        padding: 24px 20px 28px;
    }

    .footer-bottom p:nth-child(2) {
        text-align: center;
    }

    .back-to-top {
        justify-self: center;
        padding: 14px 28px;
    }
}

/* =========================
   VERY SMALL MOBILE FOOTER
========================= */

@media (max-width: 420px) {

    .footer-main {
        padding: 30px 18px 22px;
    }

    .footer-brand img {
        width: 56px;
        height: 56px;
    }

    .footer-brand span {
        font-size: 1.55rem;
    }

    .footer-brand-section p {
        font-size: 0.94rem;
    }

    .footer-group-title {
        font-size: 0.8rem;
    }

    .footer-input-wrap {
        flex-wrap: nowrap;
    }

    .footer-input-wrap input {
        padding: 14px 10px;
        font-size: 0.86rem;
    }

    .footer-input-wrap button {
        padding: 0 12px;
        font-size: 0.82rem;
    }
}

/* ============================= */
/* Hero Responsive Design */
/* ============================= */

@media (max-width: 1200px) {
    .hero-section {
        padding: 130px 5% 90px;
    }

    .hero-text {
        max-width: 590px;
    }

    .hero-stats {
        padding: 22px;
    }

    .stat-box {
        min-width: 115px;
        padding: 0 14px;
    }
}

@media (max-width: 992px) {
    .short-about-section {
        min-height: auto;
        padding: 70px 5%;
        background-position: center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.95) 0%,
                rgba(255, 255, 255, 0.88) 52%,
                rgba(255, 255, 255, 0.42) 100%
            );
    }

    .hero-text {
        max-width: 620px;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        width: 100%;
        max-width: 610px;
        gap: 22px;
    }

    .stat-line {
        display: none;
    }

    .stat-box {
        padding: 18px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.72);
    }
}

@media (max-width: 768px) {
    .short-about-section {
        min-height: auto;
        padding: 58px 20px;
        background-position: center top;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.94) 0%,
                rgba(255, 255, 255, 0.88) 48%,
                rgba(255, 255, 255, 0.72) 100%
            );
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-eyebrow {
        justify-content: center;
        font-size: 12px;
        letter-spacing: 2.5px;
        gap: 10px;
    }

    .hero-eyebrow span {
        width: 36px;
    }

    .hero-divider {
        margin: 22px auto;
    }

    .hero-section h2 {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-section p {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
    }

    .hero-buttons {
        justify-content: center;
        margin-top: 30px;
    }

    .hero-btn {
        width: 100%;
        max-width: 340px;
        min-height: 58px;
        font-size: 16px;
    }

    .hero-stats {
        margin: 38px auto 0;
        grid-template-columns: 1fr 1fr;
        padding: 18px;
        gap: 14px;
        border-radius: 16px;
    }

    .stat-box {
        min-width: 0;
        padding: 16px 8px;
    }

    .stat-box i {
        font-size: 26px;
    }

    .stat-box h3 {
        font-size: 28px;
    }

    .stat-box p {
        font-size: 12px;
    }

    .hero-bottom-shape {
        height: 58px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 105px 16px 85px;
    }

    .hero-eyebrow {
        flex-wrap: wrap;
        line-height: 1.5;
    }

    .hero-eyebrow span {
        width: 28px;
    }

    .hero-section h1 {
        letter-spacing: 1px;
    }

    .hero-section h1 strong {
        letter-spacing: 2px;
    }

    .hero-divider img {
        width: 34px;
        height: 34px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .stat-box {
        padding: 18px 12px;
    }
}

/* ============================= */
/* Short About Responsive */
/* ============================= */

@media (max-width: 1200px) {
    .short-about-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .short-about-wrapper {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 42px;
        padding: 38px;
    }

    .about-image-frame,
    .about-image-frame img {
        min-height: 520px;
    }

    .about-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .about-mini-card {
        min-height: 230px;
    }

    .flip-card-inner {
        height: 230px;
    }
}

@media (max-width: 992px) {
    .short-about-section {
        min-height: 100svh;
        padding: 90px 5%;
        background-position: center;
    }

    .short-about-wrapper {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 38px;
    }

    .about-image-box {
        max-width: 520px;
        width: 100%;
        margin: 0 auto;
    }

    .about-content {
        text-align: center;
    }

    .about-eyebrow {
        justify-content: center;
    }

    .about-title-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .about-main-text,
    .about-sub-text {
        margin-left: auto;
        margin-right: auto;
    }

    .about-button-wrap {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .short-about-section {
        min-height: 100svh;
        padding: 78px 20px;
        background-position: center top;
    }

    .short-about-wrapper {
        padding: 26px;
        border-radius: 20px;
    }

    .short-about-wrapper::before {
        width: 260px;
        height: 260px;
        right: -40px;
        top: -30px;
    }

    .short-about-wrapper::after {
        width: 26px;
        height: 26px;
    }

    .about-image-frame,
    .about-image-frame img {
        min-height: 440px;
    }

    .section-eyebrow {
        justify-content: center;
        font-size: 12px;
        letter-spacing: 3px;
        gap: 10px;
    }

    .section-eyebrow span {
        width: 42px;
    }

    .about-main-text,
    .about-sub-text {
        font-size: 16px;
    }

    .about-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        margin-top: 30px;
    }

    .about-mini-card {
        min-height: 215px;
    }

    .flip-card-inner {
        height: 215px;
    }

    .flip-card-face {
        padding: 28px 16px 24px;
    }

    .flip-card-front i {
        font-size: 34px;
        margin-bottom: 16px;
    }

    .flip-card-front h3,
    .flip-card-back h3 {
        font-size: 18px;
    }

    .flip-card-back p {
        font-size: 13.5px;
        line-height: 1.45;
    }

    .card-moving-border {
        inset: -4px;
        width: calc(100% + 8px);
        height: calc(100% + 8px);
    }

    .card-moving-border rect {
        stroke-width: 2.15;
        stroke-dasharray: 70 760;
    }

    .about-story-btn {
        min-width: 100%;
        min-height: 60px;
        font-size: 17px;
    }
}

@media (max-width: 560px) {
    .about-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;

        width: 100%;
        max-width: 340px;

        margin-left: auto;
        margin-right: auto;
    }

    .about-mini-card {
        min-height: 205px;
    }

    .flip-card-inner {
        height: 205px;
    }

    .flip-card-face {
        padding: 26px 18px 24px;
    }

    .flip-card-front h3,
    .flip-card-back h3 {
        font-size: 19px;
    }

    .flip-card-back p {
        font-size: 14px;
    }
}

@media (max-width: 520px) {
    .short-about-section {
        min-height: auto;
        padding: 48px 16px;
    }

    .short-about-wrapper {
        padding: 20px;
        border-radius: 18px;
    }

    .about-image-frame,
    .about-image-frame img {
        min-height: 390px;
    }

    .about-story-btn {
        padding: 0 22px;
        gap: 14px;
    }
}


@media (max-width: 420px) {
    .about-card-grid {
        max-width: 100%;
    }

    .about-mini-card {
        min-height: 200px;
    }

    .flip-card-inner {
        height: 200px;
    }

    .card-moving-border rect {
        stroke-width: 2;
        stroke-dasharray: 62 760;
    }
}

@media (max-width: 380px) {
    .short-about-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .about-image-frame,
    .about-image-frame img {
        min-height: 340px;
    }

    .section-eyebrow span {
        width: 30px;
    }

    .about-content h2 {
        font-size: 38px;
    }

    .about-card-grid {
        max-width: 300px;
    }

    .about-mini-card {
        min-height: 195px;
    }

    .flip-card-inner {
        height: 195px;
    }

    .flip-card-front i {
        font-size: 31px;
    }

    .flip-card-front h3,
    .flip-card-back h3 {
        font-size: 17px;
    }

    .flip-card-back p {
        font-size: 13px;
    }
}

/* ==================================================
   RESPONSIVE - LET'S CONNECT SECTION
   ================================================== */

/* Large laptop / small desktop */
@media (max-width: 1350px) {
    .connect-card-grid {
        gap: 22px;
    }

    .connect-card {
        min-height: 320px;
        padding: 40px 20px 24px;
    }

    .connect-icon {
        width: 78px;
        height: 78px;
    }

    .connect-icon i {
        font-size: 2.35rem;
    }
}

/* Tablet landscape */
@media (max-width: 1100px) {
    .lets-connect-section {
        padding: 95px 20px 100px;
        background-position: center top;
    }

    .connect-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 900px;
        margin: 0 auto;
    }

    .connect-card {
        min-height: 315px;
    }
}

/* Tablet portrait */
@media (max-width: 850px) {
    .lets-connect-section {
        padding: 85px 18px 90px;
    }

    .lets-connect-header {
        margin-bottom: 38px;
    }

    .lets-connect-header h2 {
        letter-spacing: -0.8px;
    }

    .lets-connect-header p {
        font-size: 1rem;
        line-height: 1.75;
    }

    .connect-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .connect-card {
        min-height: 305px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .lets-connect-section {
        padding: 75px 15px 80px;
    }

    .connect-eyebrow {
        gap: 9px;
        font-size: 0.78rem;
        letter-spacing: 1.1px;
    }

    .connect-eyebrow span {
        width: 34px;
    }

    .connect-title-divider {
        margin: 18px auto 17px;
    }

    .connect-title-divider span {
        width: 58px;
    }

    .lets-connect-header p {
        font-size: 0.95rem;
    }

    .connect-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 360px;
    }

    .connect-card {
        min-height: auto;
        padding: 38px 22px 24px;
        border-radius: 22px;
    }

    .connect-card p {
        max-width: 280px;
        margin-bottom: 22px;
    }

    .connect-btn {
        min-height: 50px;
    }
}

/* Very small phones */
@media (max-width: 390px) {
    .lets-connect-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .connect-card-grid {
        max-width: 100%;
    }

    .connect-icon {
        width: 74px;
        height: 74px;
    }

    .connect-icon i {
        font-size: 2.2rem;
    }

    .connect-card h3 {
        font-size: 1.22rem;
    }

    .connect-card p {
        font-size: 0.92rem;
    }
}

/* ==================================================
   RESPONSIVE - UPCOMING EVENTS SECTION
   ================================================== */

/* Large laptop */
@media (max-width: 1350px) {
    .upcoming-events-shell {
        padding: 60px 54px 66px;
    }

    .events-track {
        gap: 22px;
    }

    .event-card {
        min-height: 338px;
    }

    .event-card-content {
        min-height: 338px;
        padding: 30px 22px 24px;
    }

    .event-card h3 {
        font-size: 1.42rem;
    }

    .event-date {
        font-size: 0.92rem;
    }
}

/* Turn cards into horizontal slider on smaller desktops/tablets */
@media (max-width: 1200px) {
    .events-track {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(320px, 360px);

        overflow-x: auto;
        overflow-y: hidden;

        padding: 4px 2px 18px;

        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .events-track::-webkit-scrollbar {
        display: none;
    }

    .event-card {
        scroll-snap-align: start;
    }

    .events-dots {
        display: flex;
    }

    .events-prev-btn {
        left: -22px;
    }

    .events-next-btn {
        right: -22px;
    }
}

/* Tablet */
@media (max-width: 950px) {
    .upcoming-events-section {
        padding: 90px 18px 96px;
    }

    .upcoming-events-shell {
        padding: 44px 28px 52px;
        border-radius: 30px;
    }

    .events-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 26px;

        margin-bottom: 34px;
    }

    .events-title-block {
        max-width: 100%;
    }

    .events-title-block p {
        max-width: 100%;
    }

    .events-view-all-btn {
        min-width: 205px;
        min-height: 56px;
    }

    .events-slider-btn {
        width: 52px;
        height: 52px;
    }

    .events-prev-btn {
        left: -14px;
    }

    .events-next-btn {
        right: -14px;
    }
}

/* Small tablet / large phone */
@media (max-width: 760px) {
    .upcoming-events-section {
        padding: 82px 15px 88px;
    }

    .events-eyebrow {
        flex-wrap: wrap;
        gap: 9px;

        font-size: 0.78rem;
        letter-spacing: 1.2px;
    }

    .events-eyebrow span {
        width: 34px;
    }

    .events-title-block h2 {
        letter-spacing: -1.2px;
    }

    .events-title-block p {
        font-size: 0.96rem;
        line-height: 1.72;
    }

    .events-track {
        grid-auto-columns: minmax(292px, 82vw);
    }

    .event-card {
        min-height: 318px;
    }

    .event-card-content {
        width: 62%;
        min-height: 318px;
        padding: 28px 20px 24px;
    }

    .event-category {
        margin-bottom: 18px;
        font-size: 0.82rem;
    }

    .event-card h3 {
        font-size: 1.32rem;
    }

    .event-date {
        gap: 10px;
        font-size: 0.9rem;
    }

    .event-card-btn {
        min-width: 136px;
        min-height: 48px;
        font-size: 0.9rem;
    }
}

/* Mobile - stack cards vertically for best readability */
@media (max-width: 650px) {
    .upcoming-events-shell {
        padding: 38px 18px 42px;
        border-radius: 26px;
    }

    .events-top-row {
        text-align: left;
    }

    .events-view-all-btn {
        width: 100%;
        min-width: 0;
    }

    .events-track {
        display: flex;
        flex-direction: column;
        gap: 20px;

        overflow: visible;

        padding: 0;

        scroll-snap-type: none;
    }

    .events-slider-btn,
    .events-dots {
        display: none !important;
    }

    .event-card {
        width: 100%;
        min-height: 278px;
        border-radius: 22px;
    }

    .event-card-content {
        width: 64%;
        min-height: 278px;
        padding: 28px 20px 24px;
    }

    .event-image-wrap {
        right: -4px;
        bottom: 10px;

        width: 50%;
        height: 60%;
    }

    .event-image-troop,
    .event-image-king {
        right: -14px;
        bottom: 0;

        width: 52%;
        height: 72%;
    }

    .event-image-chest {
        width: 52%;
        height: 56%;
    }
}

/* Normal phones */
@media (max-width: 480px) {
    .upcoming-events-section {
        padding: 72px 12px 78px;
    }

    .upcoming-events-shell {
        padding: 34px 14px 38px;
        border-radius: 22px;
    }

    .events-title-block h2 {
        font-size: 2.05rem;
        line-height: 1.04;
    }

    .events-title-block p {
        font-size: 0.92rem;
    }

    .event-card {
        min-height: 258px;
    }

    .event-card-content {
        width: 66%;
        min-height: 258px;
        padding: 24px 16px 20px;
    }

    .event-category {
        margin-bottom: 15px;
        font-size: 0.76rem;
    }

    .event-card h3 {
        font-size: 1.18rem;
        line-height: 1.22;
    }

    .event-date {
        font-size: 0.82rem;
    }

    .event-date i {
        font-size: 1rem;
    }

    .event-card-btn {
        min-width: 124px;
        min-height: 44px;

        margin-top: 18px;
        padding: 0 16px;

        font-size: 0.84rem;
    }

    .event-image-wrap {
        width: 48%;
        height: 58%;
    }

    .event-image-troop,
    .event-image-king {
        width: 50%;
        height: 70%;
    }
}

/* Very small phones */
@media (max-width: 380px) {
    .events-eyebrow span {
        width: 26px;
    }

    .event-card {
        min-height: 250px;
    }

    .event-card-content {
        width: 70%;
        min-height: 250px;
        padding: 22px 14px 18px;
    }

    .event-card h3 {
        font-size: 1.08rem;
    }

    .event-date {
        font-size: 0.78rem;
    }

    .event-image-wrap {
        opacity: 0.92;
        right: -18px;
        width: 50%;
    }
}

/* ==================================================
   FEATURED VIDEOS - FINAL SMALL iPAD + MOBILE FIX
   Desktop stays unchanged.
   Small iPad + mobile uses reference layout.
   Paste at the VERY BOTTOM of responsive.css
   ================================================== */

/*
    This starts at 1024px so smaller iPads do NOT keep the squeezed PC layout.
    Desktop above 1024px stays controlled by style.css.
*/

@media (max-width: 1024px) {

    /* SECTION */
    .featured-videos-section {
        padding: 82px 18px 88px !important;
        overflow: hidden !important;
    }

    .featured-videos-container {
        width: 100% !important;
        max-width: 700px !important;
        margin: 0 auto !important;
    }

    /* HEADER */
    .featured-videos-header {
        width: 100% !important;
        max-width: 620px !important;
        margin: 0 auto 34px !important;
        padding: 0 4px !important;
        text-align: center !important;
    }

    .featured-videos-eyebrow {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 10px !important;

        margin-bottom: 16px !important;

        font-size: 12px !important;
        letter-spacing: 2.5px !important;
        line-height: 1.4 !important;
    }

    .featured-videos-eyebrow span {
        width: 44px !important;
        height: 2px !important;
    }

    .featured-videos-eyebrow i {
        width: 38px !important;
        height: 38px !important;
        font-size: 15px !important;
    }

    .featured-videos-header h2 {
        margin: 0 !important;

        font-size: clamp(40px, 7vw, 58px) !important;
        line-height: 1.02 !important;
        letter-spacing: 2px !important;
        text-align: center !important;
    }

    .featured-videos-header p {
        max-width: 540px !important;
        margin: 16px auto 0 !important;

        font-size: 15.5px !important;
        line-height: 1.65 !important;
        text-align: center !important;
    }

    /* MAIN LAYOUT */
    .featured-videos-layout {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .featured-videos-layout > * {
        min-width: 0 !important;
    }

    /* BIG MAIN VIDEO CARD */
    .featured-video-main {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        overflow: hidden !important;
        border-radius: 20px !important;
    }

    .featured-main-media {
        width: 100% !important;
        min-height: 0 !important;
        aspect-ratio: 16 / 9 !important;
        overflow: hidden !important;
    }

    .featured-main-media img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .featured-main-category {
        left: 14px !important;
        top: 14px !important;

        max-width: calc(100% - 28px) !important;
        padding: 10px 14px !important;

        border-radius: 10px !important;

        font-size: 11px !important;
        letter-spacing: 0.4px !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
    }

    .featured-duration {
        right: 12px !important;
        bottom: 12px !important;

        padding: 6px 8px !important;
        border-radius: 7px !important;

        font-size: 12px !important;
        line-height: 1 !important;
    }

    .featured-play-button {
        width: 78px !important;
        height: 78px !important;
        border-width: 2px !important;

        box-shadow:
            0 0 0 8px rgba(224, 0, 0, 0.16),
            0 0 26px rgba(224, 0, 0, 0.46),
            0 14px 24px rgba(0, 0, 0, 0.30) !important;
    }

    .featured-play-button i {
        margin-left: 4px !important;
        font-size: 28px !important;
    }

    .featured-main-content {
        padding: 22px 18px 20px !important;
    }

    .featured-main-text h3 {
        margin-bottom: 10px !important;

        font-size: clamp(28px, 5vw, 36px) !important;
        line-height: 1.08 !important;
        letter-spacing: 0.3px !important;
    }

    .featured-main-text p {
        font-size: 15px !important;
        line-height: 1.55 !important;
    }

    .featured-main-bottom {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 18px !important;

        margin-top: 20px !important;
    }

    .featured-meta-row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        gap: 16px !important;

        font-size: 14px !important;
    }

    .featured-meta-row span {
        gap: 8px !important;
    }

    /* WHITE WATCH BUTTON LIKE YOUR REFERENCE */
    .featured-watch-btn {
        position: relative !important;

        width: 100% !important;
        min-width: 0 !important;
        min-height: 52px !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        color: #111111 !important;
        background: linear-gradient(180deg, #ffffff, #f2f2f2) !important;

        border: 1px solid rgba(0, 0, 0, 0.12) !important;
        border-radius: 10px !important;

        font-size: 15px !important;
        font-weight: 900 !important;
        text-transform: none !important;

        box-shadow:
            0 8px 18px rgba(0, 0, 0, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
    }

    .featured-watch-btn i {
        position: absolute !important;
        right: 18px !important;

        color: #555555 !important;
        font-size: 18px !important;
    }

    /* SMALL VIDEO LIST */
    .featured-video-list {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: none !important;
        gap: 14px !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    /* SMALL VIDEO CARDS - HORIZONTAL LIKE REFERENCE */
    .featured-video-small {
        position: relative !important;

        display: grid !important;
        grid-template-columns: minmax(220px, 40%) minmax(0, 1fr) !important;
        align-items: stretch !important;

        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        min-height: 148px !important;

        overflow: hidden !important;

        background: rgba(255, 255, 255, 0.96) !important;

        border: 1px solid rgba(20, 20, 20, 0.10) !important;
        border-radius: 18px !important;

        box-shadow:
            0 10px 24px rgba(0, 0, 0, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    }

    .featured-video-small::after {
        display: none !important;
    }

    .featured-video-small:hover {
        transform: none !important;
    }

    .featured-small-thumb {
        width: 100% !important;
        height: 100% !important;
        min-height: 148px !important;

        aspect-ratio: auto !important;
        border-radius: 0 !important;

        overflow: hidden !important;
        background: #111111 !important;
    }

    .featured-small-thumb img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .featured-small-play {
        display: none !important;
    }

    .featured-small-content {
        position: relative !important;

        min-width: 0 !important;
        min-height: 148px !important;

        padding: 18px 42px 18px 18px !important;

        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    .featured-small-top {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 8px !important;

        margin-bottom: 8px !important;
        min-width: 0 !important;
    }

    .featured-small-category {
        max-width: 100% !important;
        padding: 0 !important;

        color: #9d0000 !important;
        background: transparent !important;

        border: none !important;
        box-shadow: none !important;

        font-size: 10.5px !important;
        font-weight: 900 !important;
        letter-spacing: 0.4px !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
    }

    .featured-small-category i {
        font-size: 11px !important;
    }

    .featured-small-content h3 {
        margin: 0 0 9px !important;

        color: #111111 !important;
        font-size: 21px !important;
        line-height: 1.14 !important;
        font-weight: 900 !important;
        letter-spacing: 0 !important;
        text-transform: uppercase !important;

        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .featured-small-meta {
        color: #666666 !important;
        font-size: 13.5px !important;
        line-height: 1.2 !important;
        font-weight: 600 !important;
    }

    .featured-small-meta span {
        gap: 7px !important;
    }

    /* CONVERT THREE DOTS TO ARROW */
    .featured-card-menu {
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;

        width: 24px !important;
        height: 24px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        color: rgba(0, 0, 0, 0.55) !important;
        font-size: 18px !important;
    }

    .featured-card-menu i {
        display: none !important;
    }

    .featured-card-menu::before {
        content: "\f105";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
    }
}

/* ==================================================
   PHONE SIZE FIX
   ================================================== */

@media (max-width: 700px) {

    .featured-videos-section {
        padding: 70px 14px 76px !important;
    }

    .featured-videos-container {
        max-width: 620px !important;
    }

    .featured-videos-header {
        max-width: 520px !important;
        margin-bottom: 30px !important;
    }

    .featured-videos-eyebrow {
        font-size: 11px !important;
        letter-spacing: 2px !important;
    }

    .featured-videos-eyebrow span {
        width: 30px !important;
    }

    .featured-videos-eyebrow i {
        width: 36px !important;
        height: 36px !important;
        font-size: 14px !important;
    }

    .featured-videos-header h2 {
        font-size: clamp(33px, 9vw, 48px) !important;
        letter-spacing: 1px !important;
    }

    .featured-videos-header p {
        max-width: 430px !important;
        font-size: 14.5px !important;
    }

    .featured-video-main {
        border-radius: 18px !important;
    }

    .featured-main-category {
        left: 14px !important;
        top: 14px !important;
        padding: 9px 12px !important;
        font-size: 10px !important;
    }

    .featured-play-button {
        width: 72px !important;
        height: 72px !important;
    }

    .featured-play-button i {
        font-size: 26px !important;
    }

    .featured-main-content {
        padding: 21px 18px 20px !important;
    }

    .featured-main-text h3 {
        font-size: clamp(24px, 6.8vw, 32px) !important;
    }

    .featured-main-text p {
        font-size: 14.5px !important;
    }

    .featured-video-small {
        grid-template-columns: minmax(138px, 40%) minmax(0, 1fr) !important;
        min-height: 118px !important;
        border-radius: 15px !important;
    }

    .featured-small-thumb {
        min-height: 118px !important;
    }

    .featured-small-content {
        min-height: 118px !important;
        padding: 13px 34px 13px 14px !important;
    }

    .featured-small-category {
        font-size: 9.2px !important;
    }

    .featured-small-category i {
        font-size: 10px !important;
    }

    .featured-small-content h3 {
        margin-bottom: 8px !important;
        font-size: 16.5px !important;
    }

    .featured-small-meta {
        font-size: 12.8px !important;
    }

    .featured-card-menu {
        right: 12px !important;
        font-size: 17px !important;
    }
}

/* ==================================================
   SMALL PHONES
   ================================================== */

@media (max-width: 480px) {

    .featured-videos-section {
        padding: 64px 12px 70px !important;
    }

    .featured-videos-header h2 {
        font-size: clamp(31px, 10vw, 42px) !important;
        letter-spacing: 0.5px !important;
    }

    .featured-videos-header p {
        font-size: 14px !important;
    }

    .featured-videos-eyebrow {
        font-size: 10px !important;
        letter-spacing: 1.5px !important;
    }

    .featured-videos-eyebrow span {
        width: 24px !important;
    }

    .featured-videos-eyebrow i {
        width: 34px !important;
        height: 34px !important;
        font-size: 13px !important;
    }

    .featured-video-main {
        border-radius: 16px !important;
    }

    .featured-main-category {
        left: 10px !important;
        top: 10px !important;
        padding: 7px 9px !important;
        font-size: 9px !important;
    }

    .featured-duration {
        right: 7px !important;
        bottom: 7px !important;
        padding: 5px 7px !important;
        font-size: 11px !important;
    }

    .featured-play-button {
        width: 62px !important;
        height: 62px !important;

        box-shadow:
            0 0 0 7px rgba(224, 0, 0, 0.14),
            0 0 20px rgba(224, 0, 0, 0.40),
            0 10px 20px rgba(0, 0, 0, 0.26) !important;
    }

    .featured-play-button i {
        font-size: 22px !important;
    }

    .featured-main-content {
        padding: 18px 14px 16px !important;
    }

    .featured-main-text h3 {
        font-size: clamp(23px, 7.5vw, 30px) !important;
    }

    .featured-main-text p {
        font-size: 14px !important;
    }

    .featured-meta-row {
        gap: 13px !important;
        font-size: 13px !important;
    }

    .featured-watch-btn {
        min-height: 49px !important;
        font-size: 14px !important;
    }

    .featured-video-small {
        grid-template-columns: minmax(116px, 40%) minmax(0, 1fr) !important;
        min-height: 108px !important;
        border-radius: 14px !important;
    }

    .featured-small-thumb {
        min-height: 108px !important;
    }

    .featured-small-content {
        min-height: 108px !important;
        padding: 12px 30px 12px 12px !important;
    }

    .featured-small-top {
        margin-bottom: 7px !important;
    }

    .featured-small-category {
        font-size: 8.5px !important;
        gap: 5px !important;
    }

    .featured-small-content h3 {
        margin-bottom: 8px !important;
        font-size: 15px !important;
    }

    .featured-small-meta {
        font-size: 12px !important;
    }

    .featured-card-menu {
        right: 10px !important;
        font-size: 16px !important;
    }
}

/* ==================================================
   VERY SMALL PHONES
   ================================================== */

@media (max-width: 360px) {

    .featured-videos-section {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .featured-videos-header h2 {
        font-size: 29px !important;
    }

    .featured-videos-header p {
        font-size: 13.3px !important;
    }

    .featured-video-small {
        grid-template-columns: 104px minmax(0, 1fr) !important;
        min-height: 104px !important;
    }

    .featured-small-thumb {
        min-height: 104px !important;
    }

    .featured-small-content {
        min-height: 104px !important;
        padding: 10px 28px 10px 10px !important;
    }

    .featured-small-category {
        font-size: 7.8px !important;
    }

    .featured-small-content h3 {
        font-size: 13.5px !important;
    }

    .featured-small-meta {
        font-size: 11px !important;
    }
}

/* =========================================================
   ABOUT PAGE RESPONSIVE
========================================================= */

@media (max-width: 1250px) {

    .about-hero-container,
    .about-stats-container,
    .about-work-grid,
    .about-story-container,
    .about-journey-grid,
    .about-video-grid {
        width: min(100% - 50px, 1180px);
    }

    .about-work-grid,
    .about-journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .about-polaroid {
        left: -5px;
    }
}

@media (max-width: 1050px) {

    .about-hero-section {
        min-height: auto;
    }

    .about-hero-container {
        grid-template-columns: 1fr;
        padding: 95px 0 40px;
        text-align: center;
    }

    .about-hero-content {
        max-width: 760px;
        margin: 0 auto;
    }

    .about-hero-content p {
        margin: 0 auto;
    }

    .about-social-row {
        justify-content: center;
    }

    .about-hero-visual {
        min-height: 560px;
        width: min(780px, 100%);
        margin: 0 auto;
    }

    .about-main-image-wrap {
        right: 50%;
        transform: translateX(50%);
        width: min(560px, 82%);
    }

    .about-polaroid {
        left: 8%;
        top: 70px;
        width: min(260px, 38%);
    }

    .about-logo-mark {
        right: 10%;
        top: 60px;
    }

    .about-stats-section {
        margin-top: 0;
        padding-top: 35px;
    }

    .about-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-story-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-story-content {
        max-width: 760px;
        margin: 0 auto;
    }

    .about-story-content .about-section-heading span {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .about-hero-container,
    .about-stats-container,
    .about-work-grid,
    .about-story-container,
    .about-journey-grid,
    .about-video-grid {
        width: calc(100% - 32px);
    }

    .about-hero-bg {
        background:
            linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.9)),
            url("../img/about/about-hero-bg.jpg");
        background-size: cover;
        background-position: center;
    }

    .about-hero-container {
        padding-top: 75px;
    }

    .about-hero-content h1 {
        font-size: clamp(3.2rem, 17vw, 5.2rem);
    }

    .about-hero-content h2 {
        margin-top: 22px;
    }

    .about-hero-content p {
        font-size: 0.98rem;
    }

    .about-social-row {
        gap: 10px;
    }

    .about-social-card {
        min-width: calc(50% - 8px);
        padding: 12px 14px;
    }

    .about-hero-visual {
        min-height: 470px;
    }

    .about-main-image-wrap {
        width: min(430px, 86%);
        bottom: -38px;
    }

    .about-red-paint {
        inset: -36px -30px 18px -30px;
        border-radius: 38% 0 0 45%;
    }

    .about-polaroid {
        width: min(210px, 44%);
        top: 46px;
        left: 2%;
        padding: 10px 10px 24px;
    }

    .about-polaroid span {
        font-size: 1.15rem;
    }

    .about-logo-mark {
        width: 78px;
        height: 78px;
        right: 5%;
        top: 45px;
    }

    .about-stats-container {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .about-stat-card {
        min-height: 104px;
        padding: 18px;
    }

    .about-work-grid,
    .about-journey-grid,
    .about-video-grid {
        grid-template-columns: 1fr;
    }

    .about-work-section {
        padding-bottom: 65px;
    }

    .about-story-section,
    .about-journey-section,
    .about-video-section {
        padding: 65px 0;
    }

    .about-story-image {
        min-height: 420px;
    }

    .about-section-heading {
        margin-bottom: 28px;
    }

    .about-section-heading span {
        justify-content: center;
    }

    .about-section-heading span::after,
    .center-heading span::before {
        width: 44px;
    }
}

@media (max-width: 520px) {

    .about-hero-container {
        width: calc(100% - 24px);
    }

    .about-eyebrow {
        font-size: 0.76rem;
    }

    .about-hero-content h1 {
        font-size: clamp(2.9rem, 20vw, 4.1rem);
    }

    .about-hero-content h2 {
        font-size: 0.98rem;
        line-height: 1.45;
    }

    .about-social-card {
        min-width: 100%;
    }

    .about-hero-visual {
        min-height: 390px;
    }

    .about-main-image-wrap {
        width: 92%;
    }

    .about-polaroid {
        width: 168px;
        top: 38px;
        left: 0;
    }

    .about-logo-mark {
        width: 64px;
        height: 64px;
        right: 2px;
    }

    .about-stat-card {
        align-items: flex-start;
    }

    .about-stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .about-work-card,
    .about-journey-card {
        padding: 26px 22px;
    }

    .about-story-image {
        min-height: 360px;
    }

    .about-story-image img {
        width: 88%;
    }

    .about-video-info {
        padding: 18px;
    }

    .about-youtube-btn {
        width: 100%;
    }
}

/* =========================================================
   TOURNAMENT PAGE REDESIGN RESPONSIVE
========================================================= */

@media (max-width: 1180px) {
    .tournament-hero-info {
        width: min(980px, calc(100% - 44px));
        grid-template-columns: repeat(2, 1fr);
        bottom: 42px;
    }

    .tournament-hero-section {
        padding-bottom: 285px;
    }

    .tournament-overview-layout,
    .prediction-layout {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .tournament-overview-text,
    .prediction-content {
        text-align: center;
    }

    .tournament-overview-text p,
    .prediction-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .left-title {
        text-align: center;
    }

    .left-title .tournament-red-line {
        margin-left: auto;
        margin-right: auto;
        background: linear-gradient(90deg, transparent, var(--tour-red), transparent);
    }

    .overview-legacy-note {
        justify-content: center;
    }

    .prediction-list {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 900px) {
    .tournament-section-container {
        width: min(100% - 32px, 1180px);
    }

    .tournament-hero-section {
        min-height: auto;
        padding: 125px 18px 285px;
    }

    .tournament-hero-content {
        margin-top: 0;
    }

    .tournament-hero-content h1 {
        letter-spacing: -2px;
    }

    .tournament-hero-content h1 strong {
        letter-spacing: -1px;
    }

   .tournament-overview-section {
    padding: 82px 0;
    }

    .prediction-arena-section {
     min-height: calc(100svh - 95px);
     padding: 95px 0;
    }

    .tournament-dates-section {
        padding: 76px 0;
    }

    .tournament-overview-cards {
        gap: 18px;
    }

    .tournament-timeline {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 620px;
        margin: 58px auto 0;
    }

    .tournament-timeline::before {
        top: 0;
        bottom: 0;
        left: 36px;
        right: auto;
        width: 2px;
        height: auto;
        background: linear-gradient(to bottom, transparent, rgba(224,0,0,0.45), transparent);
    }

    .timeline-step {
        display: grid;
        grid-template-columns: 72px 1fr;
        column-gap: 20px;
        text-align: left;
        padding-bottom: 34px;
    }

    .timeline-step::before {
        display: none;
    }

    .timeline-dot {
        margin: 0;
    }

    .timeline-step p {
        max-width: 100%;
        margin: 0;
    }

    .prediction-orb-wrap {
        min-height: 360px;
    }

    .prediction-shield {
        left: 16%;
    }
}

@media (max-width: 720px) {
    .tournament-hero-section {
        padding: 112px 14px 420px;
        background-position: center;
    }

    .tournament-logo-mark {
        width: 60px;
        height: 60px;
        font-size: 25px;
        border-radius: 17px;
    }

    .tournament-title-lines {
        gap: 10px;
    }

    .tournament-title-lines span {
        width: 48px;
    }

    .tournament-title-lines p {
        font-size: 0.72rem;
    }

    .tournament-hero-subtitle {
        max-width: 320px;
    }

    .tournament-hero-info {
        grid-template-columns: 1fr;
        width: min(100% - 28px, 460px);
        bottom: 42px;
        gap: 12px;
    }

    .tournament-hero-info-card {
        min-height: 86px;
        padding: 18px 20px;
        border-radius: 13px;
    }

    .info-card-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 22px;
    }

    .tournament-scroll-down {
        display: none;
    }

    .tournament-section-title h2 {
        font-size: clamp(2rem, 12vw, 3.5rem);
        letter-spacing: -1px;
    }

    .tournament-red-line {
        margin-top: 20px;
    }

    .tournament-overview-section,
    .prediction-arena-section {
        padding: 68px 0;
    }

    .tournament-dates-section {
        padding: 66px 0;
    }

    .tournament-overview-cards {
        grid-template-columns: 1fr;
    }

    .tournament-feature-card {
        min-height: auto;
        padding: 30px 22px;
    }

    .feature-icon-circle {
        width: 86px;
        height: 86px;
        font-size: 38px;
    }

    .overview-legacy-note {
        align-items: flex-start;
        text-align: left;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .prediction-list-item {
        grid-template-columns: 42px 1fr;
        text-align: left;
    }

    .prediction-list-item > i {
        font-size: 28px;
    }

    .prediction-orb-wrap {
        min-height: 300px;
    }

    .prediction-orb {
        width: 260px;
        height: 260px;
        min-width: 230px;
        min-height: 230px;
    }

    .prediction-base {
        width: 280px;
        height: 90px;
    }

    .prediction-shield {
        width: 100px;
        height: 125px;
        font-size: 48px;
        left: 8%;
        bottom: 22px;
    }

    .tournament-main-btn,
    .tournament-secondary-btn {
        width: 100%;
        max-width: 360px;
        padding-inline: 18px;
        font-size: 0.84rem;
    }

    .tournament-final-cta {
        min-height: auto;
        padding: 72px 16px 82px;
    }

    .final-side {
        opacity: 0.14;
        width: 50%;
    }
}

@media (max-width: 520px) {
    .tournament-hero-section {
        padding-top: 102px;
        padding-bottom: 405px;
    }

    .tournament-hero-content h1 {
        font-size: clamp(3.2rem, 16vw, 4.8rem);
    }

    .tournament-hero-content h1 strong {
        margin-top: 12px;
    }

    .tournament-hero-subtitle {
        margin-top: 20px;
        font-size: 0.82rem;
        line-height: 1.55;
    }

    .tournament-hero-info-card span {
        font-size: 0.72rem;
    }

    .tournament-hero-info-card strong {
        font-size: 0.78rem;
    }

    .tournament-overview-text p,
    .prediction-content p {
        font-size: 0.94rem;
        line-height: 1.75;
    }

    .timeline-step {
        grid-template-columns: 60px 1fr;
        gap: 16px;
    }

    .timeline-dot {
        width: 60px;
        height: 60px;
        font-size: 21px;
    }

    .tournament-timeline::before {
        left: 30px;
    }

    .timeline-step h3 {
        font-size: 0.78rem;
    }

    .timeline-step h4,
    .timeline-step p {
        font-size: 0.74rem;
    }

    .prediction-orb {
        width: 220px;
        height: 220px;
        min-width: 220px;
        min-height: 220px;
    }

    .prediction-base {
        width: 235px;
    }

    .prediction-shield {
        width: 82px;
        height: 102px;
        font-size: 40px;
        left: 4%;
    }

    .final-cta-content p {
        font-size: 0.92rem;
    }
}

@media (max-width: 380px) {
    .tournament-hero-section {
        padding-bottom: 420px;
    }

    .tournament-hero-info-card {
        gap: 14px;
        padding: 16px;
    }

    .tournament-title-lines span {
        width: 34px;
    }

    .tournament-section-container {
        width: min(100% - 24px, 1180px);
    }

    .tournament-feature-card p {
        font-size: 0.86rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tournament-scroll-down,
    .tournament-feature-card,
    .tournament-main-btn,
    .tournament-secondary-btn {
        animation: none;
        transition: none;
    }
}

/* =========================================================
   ALYYON COMING SOON PAGE - RESPONSIVE
   Scoped selectors only; previous responsive code remains unchanged.
   ========================================================= */

@media (max-width: 1100px) {
    .coming-soon-section {
        min-height: auto;
        padding: clamp(42px, 7vw, 72px) 22px;
    }

    .coming-soon-card {
        border-radius: 30px;
    }

    .coming-soon-title {
        font-size: clamp(3.5rem, 10vw, 6rem);
    }

    .coming-soon-features {
        width: 100%;
    }
}

@media (max-width: 820px) {
    .coming-soon-section {
        padding: 42px 18px;
    }

    .coming-soon-background {
        background:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.96),
                rgba(255, 255, 255, 0.88)
            ),
            url("../img/coming-soon-bg.webp");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .coming-soon-card {
        padding: 46px clamp(20px, 6vw, 44px) 36px;
    }

    .coming-soon-page img.coming-soon-logo {
        flex-basis: 56px;
        width: 56px;
        min-width: 56px;
        max-width: 56px;
        height: 56px;
    }

    .coming-soon-icon-shield {
        width: 74px;
        height: 80px;
    }

    .coming-soon-description {
        max-width: 590px;
    }

    .coming-soon-features {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .coming-soon-feature {
        text-align: left;
    }

    .coming-soon-feature span {
        white-space: normal;
    }
}

@media (max-width: 620px) {
    .coming-soon-section {
        padding: 30px 13px;
    }

    .coming-soon-card {
        padding: 40px 18px 28px;
        border-radius: 24px;
    }

    .coming-soon-card::before,
    .coming-soon-card::after {
        width: 65px;
        height: 65px;
    }

    .coming-soon-brand {
        gap: 9px;
        margin-bottom: 15px;
    }

    .coming-soon-page img.coming-soon-logo {
        flex-basis: 48px;
        width: 48px;
        min-width: 48px;
        max-width: 48px;
        height: 48px;
    }

    .coming-soon-brand-name {
        font-size: 1.1rem;
    }

    .coming-soon-icon-shield {
        width: 66px;
        height: 73px;
        font-size: 1.45rem;
    }

    .coming-soon-label {
        gap: 9px;
        font-size: 0.65rem;
        letter-spacing: 0.14em;
    }

    .coming-soon-label-line {
        width: 24px;
    }

    .coming-soon-title {
        font-size: clamp(2.85rem, 16vw, 4.2rem);
        line-height: 0.96;
    }

    .coming-soon-divider {
        margin-top: 20px;
        margin-bottom: 18px;
    }

    .coming-soon-description {
        font-size: 0.96rem;
        line-height: 1.68;
    }

    .coming-soon-secondary-text {
        font-size: 0.86rem;
    }

    .coming-soon-progress-box {
        margin-top: 23px;
        padding: 14px;
    }

    .coming-soon-progress-information {
        gap: 10px;
        font-size: 0.79rem;
    }

    .coming-soon-actions {
        flex-direction: column;
        width: 100%;
    }

    .coming-soon-primary-button,
    .coming-soon-secondary-button {
        width: 100%;
        min-width: 0;
    }

    .coming-soon-features {
        margin-top: 31px;
    }

    .coming-soon-feature {
        padding: 13px;
    }

    .coming-soon-bottom-message {
        align-items: flex-start;
        margin-top: 24px;
        font-size: 0.78rem;
        line-height: 1.5;
    }
}

@media (max-width: 420px) {
    .coming-soon-section {
        padding-inline: 10px;
    }

    .coming-soon-card {
        padding: 36px 14px 25px;
        border-radius: 21px;
    }

    .coming-soon-top-decoration {
        width: 60%;
    }

    .coming-soon-brand-name {
        font-size: 1rem;
        letter-spacing: 0.055em;
    }

    .coming-soon-title {
        font-size: clamp(2.55rem, 16vw, 3.45rem);
    }

    .coming-soon-label {
        font-size: 0.59rem;
    }

    .coming-soon-description {
        font-size: 0.9rem;
    }

    .coming-soon-progress-information span {
        max-width: 190px;
        text-align: left;
    }

    .coming-soon-primary-button,
    .coming-soon-secondary-button {
        min-height: 55px;
        font-size: 0.88rem;
    }

    .coming-soon-feature-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .coming-soon-feature strong {
        font-size: 0.76rem;
    }

    .coming-soon-feature span {
        font-size: 0.73rem;
    }
}

@media (max-width: 350px) {
    .coming-soon-card {
        padding-inline: 11px;
    }

    .coming-soon-page img.coming-soon-logo {
        flex-basis: 43px;
        width: 43px;
        min-width: 43px;
        max-width: 43px;
        height: 43px;
    }

    .coming-soon-brand-name {
        font-size: 0.9rem;
    }

    .coming-soon-title {
        font-size: 2.35rem;
    }

    .coming-soon-label-line {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .coming-soon-progress-fill span,
    .coming-soon-bottom-message i {
        animation: none;
    }

    .coming-soon-primary-button,
    .coming-soon-secondary-button,
    .coming-soon-progress-fill {
        transition: none;
    }
}
