/* ════════════════════════════════════════════════════════════════
   RESPONSIVE.CSS — Mobile-first overrides + Mobile Sidebar Nav
   Covers: 320px → 1920px+
   RULE: Desktop (≥ 769px) is NEVER touched.
   ════════════════════════════════════════════════════════════════ */


/* ══════════════════════════════════════════
   MOBILE SIDEBAR NAVIGATION
   ══════════════════════════════════════════ */

/* ── Overlay ── */
.mob-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 9, 31, 0.70);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.38s ease, visibility 0.38s ease;
}
.mob-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* ── Sidebar shell ── */
.mob-sidebar {
    position: fixed;
    top: 0; left: 0;
    width: 290px;
    height: 100dvh;
    background: linear-gradient(170deg, #04091f 0%, #060d2a 60%, #04091f 100%);
    border-right: 1px solid rgba(74, 169, 255, 0.14);
    box-shadow: 6px 0 48px rgba(0, 0, 0, 0.55);
    z-index: 1200;
    transform: translateX(-100%);
    transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}
.mob-sidebar.is-open {
    transform: translateX(0);
}

/* Subtle bg orbs inside sidebar */
.mob-sidebar::before {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 169, 255, 0.07) 0%, transparent 65%);
    top: -80px; right: -80px;
    pointer-events: none;
}
.mob-sidebar::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 94, 215, 0.06) 0%, transparent 65%);
    bottom: 80px; left: -60px;
    pointer-events: none;
}

/* ── Header ── */
.mob-sb-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 22px 20px;
    border-bottom: 1px solid rgba(74, 169, 255, 0.10);
    flex-shrink: 0;
}

.mob-sb-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.mob-sb-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.60);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
    flex-shrink: 0;
}
.mob-sb-close:hover {
    background: rgba(74, 169, 255, 0.15);
    color: #4AA9FF;
    border-color: rgba(74, 169, 255, 0.30);
    transform: rotate(90deg);
}

/* ── Nav list ── */
.mob-sb-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 12px 14px;
    gap: 2px;
    position: relative; z-index: 1;
}

.mob-sb-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px; font-weight: 600;
    color: rgba(255, 255, 255, 0.70);
    text-decoration: none;
    border: none;
    background: transparent;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
    position: relative;
}
.mob-sb-link:hover {
    background: rgba(74, 169, 255, 0.08);
    color: rgba(255, 255, 255, 0.95);
    transform: translateX(4px);
}
.mob-sb-link.is-active-page {
    background: rgba(74, 169, 255, 0.12);
    color: #ffffff;
}
.mob-sb-link.is-active-page::before {
    content: '';
    position: absolute; left: 0; top: 50%;
    transform: translateY(-50%);
    width: 3px; height: 60%;
    background: #4AA9FF;
    border-radius: 0 3px 3px 0;
}

.mob-sb-link-icon {
    width: 18px; height: 18px;
    opacity: 0.60;
    flex-shrink: 0;
}

/* ── Dropdown inside sidebar ── */
.mob-sb-dropdown {
    display: flex;
    flex-direction: column;
}

.mob-sb-dd-toggle {
    justify-content: space-between;
}
.mob-sb-dd-chevron {
    width: 16px; height: 16px;
    color: rgba(255, 255, 255, 0.35);
    transition: transform 0.28s ease, color 0.28s ease;
    flex-shrink: 0;
    margin-left: auto;
}
.mob-sb-dropdown.is-open .mob-sb-dd-chevron {
    transform: rotate(180deg);
    color: #4AA9FF;
}
.mob-sb-dropdown.is-open .mob-sb-dd-toggle {
    color: rgba(255, 255, 255, 0.90);
}

.mob-sb-dd-menu {
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 4px 0 6px 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mob-sb-dropdown.is-open .mob-sb-dd-menu {
    max-height: 200px;
}

.mob-sb-dd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: background 0.20s ease, color 0.20s ease;
}
.mob-sb-dd-item:hover {
    background: rgba(74, 169, 255, 0.08);
    color: rgba(255, 255, 255, 0.90);
}

/* ── Divider ── */
.mob-sb-divider {
    height: 1px;
    background: rgba(74, 169, 255, 0.08);
    margin: 8px 14px;
    flex-shrink: 0;
}

/* ── Footer (CTA) ── */
.mob-sb-footer {
    padding: 16px 14px 28px;
    flex-shrink: 0;
    position: relative; z-index: 1;
}

.mob-sb-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(74, 169, 255, 0.85) 0%, rgba(11, 94, 215, 0.90) 100%);
    border-radius: 100px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.4px;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(11, 94, 215, 0.38);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.mob-sb-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 42px rgba(74, 169, 255, 0.45);
}

/* Only show sidebar elements on mobile */
.mob-overlay,
.mob-sidebar {
    display: none;
}
@media (max-width: 768px) {
    .navbar-logo { height: 36px; }

    .mob-overlay,
    .mob-sidebar {
        display: flex;
    }
    .mob-overlay {
        display: block;
    }
}


/* ══════════════════════════════════════════
   MOBILE NAV OVERRIDE
   Replace drawer with sidebar — disable old drawer
   ══════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Kill the old drawer nav-links on mobile */
    .nav-links {
        display: none !important;
        pointer-events: none !important;
    }
    .nav-links--open {
        display: none !important;
    }

    /* Keep hamburger visible */
    .nav-toggle {
        display: flex !important;
    }

    /* Hamburger is-open → X (main.js .open is already handled in style.css) */
    .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}


/* ══════════════════════════════════════════
   GENERAL RESPONSIVE FIXES — INDEX.PHP
   Desktop (≥769px) is UNCHANGED
   ══════════════════════════════════════════ */


/* ─────────────────────────────────────
   §0 — BASE / GLOBAL
───────────────────────────────────── */
@media (max-width: 768px) {
    /* Prevent horizontal overflow globally */
    body, html {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Ensure lux-container never causes horizontal scroll */
    .lux-container {
        width: 92%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .lux-container {
        width: 94%;
    }
}

@media (max-width: 360px) {
    .lux-container {
        width: 96%;
    }
}


/* ─────────────────────────────────────
   §1 — HERO (video hero)
───────────────────────────────────── */
@media (max-width: 768px) {
    .hero-content-wrap {
        padding: 0 4vw 60px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        justify-content: center;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 30px;
        line-height: 1.15;
    }

    .hero-glass {
        padding: 24px 18px 20px;
    }

    .hero-stats {
        gap: 0;
    }

    .hero-stat-num {
        font-size: 22px;
    }

    .hero-stat-label {
        font-size: 8px;
    }
}

@media (max-width: 360px) {
    .hero-heading {
        font-size: 26px;
    }

    .hero-glass {
        padding: 20px 14px 18px;
    }

    .hero-stat-num {
        font-size: 20px;
    }
}


/* ─────────────────────────────────────
   §2 — PARTNERS (marquee)
───────────────────────────────────── */
@media (max-width: 768px) {
    .partners {
        padding: 28px 0;
    }
}

@media (max-width: 480px) {
    .partners {
        padding: 22px 0;
    }
}


/* ─────────────────────────────────────
   §3 — HM-DISC (Destination Discovery Carousel)
───────────────────────────────────── */
@media (max-width: 768px) {
    .hm-disc {
        padding: 72px 0 60px;
    }

    .hm-disc-stage {
        height: 460px;
    }

    .hm-disc-scene {
        width: 300px;
        height: 400px;
    }

    /* Keep buttons inside viewport */
    .hm-disc-btn--prev { left: 12px; }
    .hm-disc-btn--next { right: 12px; }
}

@media (max-width: 480px) {
    .hm-disc {
        padding: 60px 0 48px;
    }

    .hm-disc-stage {
        height: 420px;
    }

    .hm-disc-scene {
        width: 260px;
        height: 360px;
    }

    .hm-disc-btn {
        width: 44px;
        height: 44px;
    }

    .hm-disc-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 360px) {
    .hm-disc-scene {
        width: 230px;
        height: 320px;
    }

    .hm-disc-stage {
        height: 380px;
    }
}


/* ─────────────────────────────────────
   §4 — WHY CHOOSE US (tab panel)
───────────────────────────────────── */
@media (max-width: 900px) {
    .why-panel-wrap {
        grid-template-columns: 1fr;
    }

    .why-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.09);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .why-tab {
        flex: 1 0 auto;
        min-width: 120px;
        border-bottom: none;
        border-right: 1px solid rgba(0,0,0,0.07);
        padding: 14px 16px;
    }

    .why-content-wrap {
        padding: 32px 24px;
        min-height: auto;
    }
}

@media (max-width: 540px) {
    .why-us {
        padding: 56px 0 !important;
    }

    .why-tab {
        padding: 12px 14px;
        min-width: 100px;
    }

    .why-tab-name {
        font-size: 11.5px;
    }

    .why-content-wrap {
        padding: 24px 18px;
    }

    .why-panel-desc {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .why-tab {
        min-width: 88px;
        padding: 10px 10px;
    }

    .why-tab-name {
        font-size: 10.5px;
    }
}


/* ─────────────────────────────────────
   §5 — HM-EXP (Luxury Travel Experiences - accordion panels)
───────────────────────────────────── */
@media (max-width: 1024px) {
    .hm-exp-panels {
        flex-direction: column;
        height: auto;
    }

    .hm-exp-panel {
        flex: none;
        height: 320px;
    }

    .hm-exp-panel.is-active {
        flex: none;
        height: 440px;
    }

    .hm-ep-side-label {
        display: none;
    }
}

@media (max-width: 768px) {
    .hm-exp {
        padding-top: 60px;
    }

    .hm-exp-panel,
    .hm-exp-panel.is-active {
        height: 300px;
    }

    .hm-ep-content {
        padding: 24px 22px;
    }

    .hm-ep-heading {
        font-size: 22px;
    }

    .hm-ep-desc {
        font-size: 0.82rem;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .hm-exp-panel,
    .hm-exp-panel.is-active {
        height: 270px;
    }

    .hm-exp-header {
        padding-bottom: 40px;
    }
}


/* ─────────────────────────────────────
   §6 — HM-PROMISE (Editorial statements)
───────────────────────────────────── */
@media (max-width: 768px) {
    .hm-promise {
        padding: 40px 0;
    }

    .hm-stmt {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 22px 0;
    }

    .hm-stmt-left {
        gap: 12px;
    }

    .hm-stmt-num {
        font-size: 2.6rem;
    }

    .hm-stmt-right p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hm-promise-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hm-promise-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ─────────────────────────────────────
   §7 — HM-SPOT (Trending Destinations Spotlight)
───────────────────────────────────── */
@media (max-width: 1024px) {
    .hm-spot-wrap {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hm-spot-left {
        padding: 60px 36px;
    }

    .hm-spot-right {
        min-height: 55vw;
        margin: 0 16px 16px;
        border-radius: 16px;
    }
}

@media (max-width: 768px) {
    .hm-spot-left {
        padding: 48px 24px 40px;
    }

    .hm-spot-name {
        font-size: clamp(38px, 10vw, 60px);
        word-break: break-word;
    }

    .hm-spot-right {
        min-height: 68vw;
        margin: 0 12px 12px;
    }

    .hm-spot-img-badge {
        left: 16px;
        bottom: 16px;
    }

    .hm-spot-footer {
        flex-wrap: wrap;
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .hm-spot-left {
        padding: 40px 20px 32px;
    }

    .hm-spot-name {
        font-size: clamp(34px, 10vw, 52px);
    }

    .hm-spot-thumbs {
        gap: 6px;
    }

    .hm-spot-thumb {
        width: 40px;
        height: 30px;
        border-radius: 5px;
    }

    .hm-spot-cta {
        padding: 12px 22px;
        font-size: 0.64rem;
    }

    .hm-spot-desc {
        font-size: 0.84rem;
    }

    .hm-spot-right {
        min-height: 72vw;
        margin: 0 10px 10px;
    }
}

@media (max-width: 360px) {
    .hm-spot-name {
        font-size: 30px;
    }

    .hm-spot-left {
        padding: 36px 16px 28px;
    }
}


/* ─────────────────────────────────────
   §8 — GP-SECTION (Explore The World)
───────────────────────────────────── */
@media (max-width: 860px) {
    .gp-wrap {
        grid-template-columns: 1fr;
        gap: 48px;
        min-height: auto;
    }

    .gp-visual {
        order: -1;
        min-height: 360px;
    }

    .gp-heading {
        font-size: 38px;
    }

    .gp-desc {
        max-width: 100%;
    }

    /* Glass cards can overlap on mobile — fix positioning */
    .gp-card--tl {
        top: 12px;
        left: 12px;
    }
    .gp-card--br {
        bottom: 12px;
        right: 12px;
    }
}

@media (max-width: 540px) {
    .gp-section {
        padding: 72px 0 64px;
    }

    .gp-heading {
        font-size: 32px;
        line-height: 1.10;
    }

    .gp-earth-wrap {
        width: 210px;
        height: 210px;
    }

    .gp-ring--outer {
        width: 290px;
        height: 290px;
    }

    .gp-ring--inner {
        width: 230px;
        height: 230px;
    }

    .gp-card--tl {
        display: none;
    }

    .gp-stats {
        flex-wrap: wrap;
        gap: 12px;
    }

    .gp-stat-divider {
        display: none;
    }

    .gp-stat {
        flex: 1 0 40%;
    }

    .gp-stat strong {
        font-size: 26px;
    }

    .gp-destinations {
        gap: 7px;
    }

    .gp-dest-item {
        font-size: 10px;
        padding: 6px 11px;
    }
}

@media (max-width: 360px) {
    .gp-heading {
        font-size: 28px;
    }

    .gp-earth-wrap {
        width: 180px;
        height: 180px;
    }

    .gp-ring--outer {
        width: 240px;
        height: 240px;
    }

    .gp-ring--inner {
        width: 190px;
        height: 190px;
    }
}


/* ─────────────────────────────────────
   §9 — RV-OFFER (Exclusive Offer)
───────────────────────────────────── */
@media (max-width: 900px) {
    .rv-offer-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .rv-offer-ticket {
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 540px) {
    .rv-offer-title {
        font-size: 38px;
    }

    .rv-offer-stats {
        flex-direction: column;
        gap: 18px;
        padding: 20px 18px;
    }

    .rv-offer-stat-sep {
        width: 40px;
        height: 1px;
    }

    .rv-offer-btns {
        flex-direction: column;
        gap: 12px;
    }

    .rv-offer-btn-gold,
    .rv-offer-btn-outline {
        width: 100%;
        justify-content: center;
    }

    /* Fix perforated divider horizontal overflow */
    .rv-ot-perf {
        margin: 20px -24px;
    }

    .rv-offer-ticket {
        padding: 28px 24px 24px;
    }
}

@media (max-width: 480px) {
    .rv-offer-title {
        font-size: 34px;
    }

    .rv-ot-amount {
        font-size: 3.2rem;
    }

    .rv-ot-perf {
        margin: 18px -18px;
    }
}

@media (max-width: 360px) {
    .rv-offer-title {
        font-size: 28px;
    }

    .rv-ot-amount {
        font-size: 2.8rem;
    }

    .rv-offer-ticket {
        padding: 22px 18px 20px;
    }
}


/* ─────────────────────────────────────
   §10 — HM-WORLD (Interactive World)
───────────────────────────────────── */
@media (max-width: 768px) {
    .hm-world {
        padding: 72px 0 0;
    }

    .hm-world-stage {
        height: 420px;
    }

    .hm-world-earth-sphere {
        width: 170px;
        height: 170px;
    }

    .hm-world-stats {
        padding: 40px 0;
        gap: 16px;
    }

    .hm-ws-num {
        font-size: 1.9rem;
    }

    .hm-world-info-card {
        display: none;
    }
}

@media (max-width: 480px) {
    .hm-world-stage {
        height: 360px;
    }

    .hm-world-earth-sphere {
        width: 140px;
        height: 140px;
    }

    .hm-world-stats {
        gap: 12px;
        padding: 32px 0;
    }

    .hm-ws-num {
        font-size: 1.6rem;
    }
}


/* ─────────────────────────────────────
   §11 — LUXURY TRAVEL SECTION (.lux-travel / .lt-*)
───────────────────────────────────── */
@media (max-width: 768px) {
    .lux-travel {
        padding: 72px 0;
    }

    .lt-wrap {
        flex-direction: column;
        gap: 44px;
    }

    .lt-visual {
        flex: none;
        width: 100%;
    }

    .lt-globe-wrap {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    .lt-globe-core {
        width: 220px;
        height: 220px;
    }

    .lt-title {
        font-size: 28px;
    }

    .lt-feat-num {
        display: none;
    }

    .lt-features {
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .lt-globe-wrap {
        width: 240px;
        height: 240px;
    }

    .lt-globe-core {
        width: 190px;
        height: 190px;
    }

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

    .lt-sub {
        font-size: 13px;
    }

    .lt-feat {
        padding: 16px 16px;
    }

    .lt-cta {
        padding: 14px 28px;
        font-size: 13px;
    }
}


/* ─────────────────────────────────────
   §12 — TRAVEL TIMELINE (.tt-*)
───────────────────────────────────── */
@media (max-width: 768px) {
    .tt-track {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tt-line {
        display: none;
    }

    .tt-step {
        flex-direction: row;
        align-items: flex-start;
        gap: 18px;
        padding: 0;
    }

    .tt-step-node {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 56px;
        height: 56px;
    }

    .tt-node-inner {
        width: 56px;
        height: 56px;
    }

    .tt-step-card {
        text-align: left;
    }

    .tt-step-card p {
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .tt-step {
        flex-direction: column;
        align-items: center;
    }

    .tt-step-card {
        text-align: center;
    }

    .tt-footer {
        margin-top: 40px;
    }

    .tt-cta {
        padding: 15px 36px;
        font-size: 13px;
    }
}


/* ─────────────────────────────────────
   §13 — FOOTER
───────────────────────────────────── */
@media (max-width: 640px) {
    .ft-main {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 36px 0 26px;
    }

    .ft-col-brand {
        flex-direction: column;
        gap: 16px;
    }

    .ft-socials {
        flex-direction: row;
        gap: 10px;
    }

    .ft-bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .ft-col-heading {
        font-size: 9px;
    }

    .ft-nl-link {
        font-size: 0.80rem;
    }

    .ft-ci {
        font-size: 0.76rem;
    }
}


/* ─────────────────────────────────────
   §14 — SECTION HEADERS (global)
───────────────────────────────────── */
@media (max-width: 480px) {
    .section-header h2 {
        font-size: 24px;
        line-height: 1.20;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 360px) {
    .section-header h2 {
        font-size: 22px;
    }
}


/* ─────────────────────────────────────
   §15 — IMAGES & MEDIA (global)
───────────────────────────────────── */
img,
video {
    max-width: 100%;
}

@media (max-width: 768px) {
    /* Ensure no image stretches or overflows */
    .hm-ep-bg img,
    .hm-dc-img-wrap img,
    .hm-spot-img-layer img,
    .hm-layer-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}


/* ─────────────────────────────────────
   §16 — PADDING / SPACING SCALE
   Reduce --section-pad on very small screens
───────────────────────────────────── */
@media (max-width: 480px) {
    :root {
        --section-pad: 64px;
    }
}

@media (max-width: 360px) {
    :root {
        --section-pad: 56px;
    }
}


/* ─────────────────────────────────────
   §17 — DREAM JOURNEY (.dj-*)
───────────────────────────────────── */
@media (max-width: 480px) {
    .dj-title {
        font-size: 26px;
    }

    .dj-card {
        padding: 36px 18px 30px;
    }

    .dj-btn-gold,
    .dj-btn-glass {
        padding: 13px 22px;
        font-size: 13px;
    }

    .dj-stats {
        flex-wrap: wrap;
        gap: 10px;
    }

    .dj-stat-sep {
        display: none;
    }
}

@media (max-width: 360px) {
    .dj-title {
        font-size: 22px;
    }

    .dj-card {
        padding: 28px 14px 24px;
    }
}


/* ─────────────────────────────────────
   §18 — 1920px+ LARGE SCREENS
───────────────────────────────────── */
@media (min-width: 1920px) {
    .mob-sidebar,
    .mob-overlay {
        display: none !important;
    }
}
