/* ============================================================
   StreetNightGirls – GLOBAL STYLESHEET (index.css)
   Glassmorphism Design — frosted glass + gradient mesh bg
   Shared styles for all pages + index-page styles.
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --primary:      #1877F2;
    --primary-hover:#0F5ACB;
    --text:         #1a1a2e;
    --text-meta:    #5a6275;
    --bg:           #FFFFFF;
    --page-bg:      #eef2ff;
    --border:       #E4E6EB;
    --btn-sec-bg:   rgba(255,255,255,0.55);
    --btn-sec-hover:rgba(255,255,255,0.8);
    --disabled:     #BCC0C4;
    --danger:       #F02849;
    --danger-hover: #C21F3A;
    --success:      #42B72A;
    --footer-bg:    rgba(15, 15, 30, 0.97);
    --radius:       16px;
    --radius-lg:    22px;

    /* Glass tokens */
    --glass-bg:     rgba(255, 255, 255, 0.65);
    --glass-bg-strong: rgba(255, 255, 255, 0.82);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px rgba(24, 119, 242, 0.1);
    --glass-blur:   blur(18px);
    --glass-blur-sm:blur(12px);
}

/* ===== RESET / BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

* {
    font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* ===== GRADIENT MESH BACKGROUND ===== */
body {
    margin: 0;
    color: var(--text);
    min-height: 100vh;

    /* Multi-point gradient mesh – glassmorphism base */
    background-color: #dde8ff;
    background-image:
        radial-gradient(at 15% 20%, rgba(24, 119, 242, 0.22) 0%, transparent 55%),
        radial-gradient(at 85% 5%,  rgba(108, 99, 255, 0.18) 0%, transparent 50%),
        radial-gradient(at 50% 90%, rgba(24, 119, 242, 0.16) 0%, transparent 55%),
        radial-gradient(at 90% 65%, rgba(160, 100, 255, 0.12) 0%, transparent 45%),
        radial-gradient(at 5%  80%, rgba(56, 189, 248, 0.14)  0%, transparent 40%);
    background-attachment: fixed;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
    color: var(--text);
    margin-top: 0;
}

a {
    color: var(--primary);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-hover);
}

/* ===== GLASS UTILITY ===== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(24, 119, 242, 0.2);
    box-shadow: 0 4px 24px rgba(24, 119, 242, 0.08);
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 13px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand {
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    color: var(--text);
    letter-spacing: 0.3px;
}

.brand span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 26px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.25s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-right a {
    text-decoration: none !important;
}

/* NAV BUTTON – glass pill */
.btn-nav {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(24, 119, 242, 0.35);
}

.btn-nav:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.45);
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
    display: block;
}

.hide-menu {
    display: none !important;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* ===== SEARCH BAR ===== */
.search-section {
    padding: 28px 20px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 16px 18px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(24, 119, 242, 0.12), inset 0 1px 0 rgba(255,255,255,0.9);
    width: min(95%, 1100px);
    flex-wrap: wrap;
}

select {
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius);
    font-size: 15px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    outline: none;
    min-width: 180px;
    flex: 1;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
    font-family: inherit;
}

select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.search-btn {
    padding: 11px 30px;
    border: none;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(24, 119, 242, 0.35);
}

.search-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.45);
}

@media (max-width: 768px) {
    .search-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        border-radius: var(--radius);
    }

    select,
    .search-btn {
        width: 100%;
        flex: none;
    }
}

/* ===== BREADCRUMB ===== */
.lf-breadcrumb {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto 18px auto;
    padding: 0 20px;
}

.lf-breadcrumb-inner {
    width: 100%;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: var(--glass-blur-sm);
    -webkit-backdrop-filter: var(--glass-blur-sm);
    border: 1px solid var(--glass-border);
    padding: 11px 18px;
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(24, 119, 242, 0.07);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-meta);
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    line-height: 1.4;
}

.lf-breadcrumb-inner a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.lf-breadcrumb-inner a:hover {
    color: var(--primary-hover);
}

.bc-arrow {
    color: rgba(24, 119, 242, 0.35);
    font-weight: 700;
    white-space: nowrap;
    margin: 0 2px;
}

@media (max-width: 600px) {
    .lf-breadcrumb {
        padding: 0 14px;
    }

    .lf-breadcrumb-inner {
        border-radius: 12px;
        padding: 9px 14px;
        font-size: 13px;
    }
}

/* ===== AGE GATE ===== */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(15, 25, 60, 0.45);
}

.age-card {
    position: relative;
    max-width: 520px;
    width: calc(100% - 32px);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 44px 46px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 24px 80px rgba(24, 119, 242, 0.18), 0 8px 32px rgba(0,0,0,0.12);
    animation: fadeUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.age-card h2 {
    font-size: 28px;
    margin-bottom: 14px;
    font-weight: 800;
    color: var(--text);
}

.age-card h2 span {
    color: var(--primary);
}

.age-card .subtitle {
    font-size: 15px;
    color: var(--text-meta);
    margin-bottom: 18px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.age-card .desc {
    font-size: 14px;
    color: var(--text-meta);
    line-height: 1.65;
    max-width: 400px;
    margin: 0 auto 6px;
}

.age-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.age-actions button {
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 13px 32px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.age-actions button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(24, 119, 242, 0.45);
}

.age-actions .exit {
    align-self: center;
    font-size: 14px;
    color: var(--text-meta);
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.15s ease;
}

.age-actions .exit:hover {
    opacity: 1;
    color: var(--text-meta);
}

.trust {
    margin-top: 20px;
    font-size: 12px;
    color: var(--disabled);
    letter-spacing: 0.3px;
    position: relative;
    padding-top: 14px;
}

.trust::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 60px;
    height: 1px;
    background: var(--border);
    transform: translateX(-50%);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

@keyframes logoFade {
    to { opacity: 1; }
}

.age-logo img {
    opacity: 0;
    animation: logoFade 0.5s ease forwards;
}

@media (max-width: 600px) {
    .age-card {
        padding: 34px 22px;
    }

    .age-card h2 {
        font-size: 24px;
    }

    .age-actions {
        flex-direction: column;
        gap: 12px;
    }
}

/* ===== COOKIE BAR ===== */
.pe-cookie {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--text);
    padding: 14px 20px;
    border-radius: var(--radius);
    display: none;
    align-items: center;
    gap: 16px;
    max-width: 92%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
    z-index: 9998;
    animation: peSlideUp 0.35s ease-out;
}

.pe-cookie p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    color: var(--text-meta);
}

.pe-cookie button {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.15s ease;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.35);
}

.pe-cookie button:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

@keyframes peSlideUp {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to   { opacity: 1; transform: translate(-50%, 0);    }
}

@media (max-width: 768px) {
    .pe-cookie {
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        padding: 12px 14px;
        gap: 12px;
        animation: none;
    }

    .pe-cookie p { font-size: 12px; }
    .pe-cookie button { font-size: 12px; padding: 7px 14px; }
}

/* ===== FOOTER ===== */
.lfxx-footer {
    background: rgba(10, 12, 28, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #cfcfcf;
    position: relative;
    overflow: hidden;
}

/* Background glow blobs */
.lfxx-footer::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(24, 119, 242, 0.12), transparent 70%);
    pointer-events: none;
}

.lfxx-footer::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: 10%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.1), transparent 70%);
    pointer-events: none;
}

.lfxx-glow-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(24, 119, 242, 0.6), transparent);
}

.lfxx-wrap {
    max-width: 1200px;
    margin: auto;
    padding: 32px 20px 44px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.lfxx-brand h4 {
    font-size: 26px;
    color: #fff;
    font-weight: 800;
    margin: 0 0 12px;
}

.lfxx-brand h4 span {
    color: var(--primary);
}

.lfxx-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 20px;
    color: #9da5c0;
}

.lfxx-socials {
    display: flex;
    gap: 10px;
}

.lfxx-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(24, 119, 242, 0.3);
    background: rgba(24, 119, 242, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.lfxx-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
    color: #fff;
}

.lfxx-links span {
    display: block;
    color: #fff;
    font-weight: 700;
    margin-bottom: 14px;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lfxx-links a {
    display: block;
    color: #9da5c0;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.lfxx-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.highlight-link {
    margin-top: 6px;
    font-weight: 700;
    color: var(--primary) !important;
}

.highlight-link:hover {
    color: #5ca8ff !important;
    transform: translateX(5px);
}

.lfxx-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.lfxx-copy {
    font-size: 13px;
    color: #6a7190;
    margin-bottom: 6px;
}

.lfxx-trust {
    font-size: 12px;
    color: #6a7190;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .lfxx-wrap {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .lfxx-wrap {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
    }

    .lfxx-socials {
        justify-content: center;
    }

    .lfxx-links a:hover {
        transform: none;
    }
}

/* ============================================================
   INDEX PAGE SPECIFIC STYLES
   ============================================================ */

/* ===== TRENDING SECTION ===== */
.trend-section {
    max-width: 1200px;
    margin: 28px auto 36px;
    padding: 0 20px;
}

.trend-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
}

.trend-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.trend-card {
    text-decoration: none;
    display: block;
}

.trend-img {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255,255,255,0.3);
    box-shadow: 0 8px 28px rgba(24, 119, 242, 0.13), 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trend-card:hover .trend-img {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(24, 119, 242, 0.2), 0 4px 16px rgba(0,0,0,0.12);
}

.trend-img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.55s ease;
}

.trend-card:hover .trend-img img {
    transform: scale(1.06);
}

.trend-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 13px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: rgba(24, 119, 242, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.3);
    letter-spacing: 0.3px;
}

.trend-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    background: linear-gradient(to top, rgba(10, 12, 35, 0.78), rgba(10, 12, 35, 0.2), transparent);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.trend-info strong {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.trend-info span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
    .trend-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .trend-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .trend-img img {
        height: 250px;
    }

    .trend-title {
        font-size: 20px;
    }
}

/* ===== POPULAR LOCATIONS ===== */
.popular-locations {
    padding: 16px 20px 40px;
    text-align: center;
}

.section-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
}

.section-sub {
    color: var(--text-meta);
    font-size: 15px;
    margin-bottom: 32px;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.location-card {
    position: relative;
    height: 240px;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(24, 119, 242, 0.14), 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: block;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,12,35,0.08), rgba(10,12,35,0.5));
    transition: background 0.3s ease;
}

.location-card h3 {
    position: absolute;
    bottom: 22px;
    left: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    z-index: 2;
    margin: 0;
    transition: bottom 0.3s ease;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.location-card .view-btn {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(24, 119, 242, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 999px;
    padding: 9px 22px;
    font-size: 13px;
    cursor: pointer;
    opacity: 0;
    transition: bottom 0.3s ease, opacity 0.3s ease;
    white-space: nowrap;
    display: block;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(24, 119, 242, 0.22), 0 4px 16px rgba(0,0,0,0.14);
}

.location-card:hover .overlay {
    background: linear-gradient(180deg, rgba(10,12,35,0.06), rgba(10,12,35,0.72));
}

.location-card:hover h3 {
    bottom: 58px;
}

.location-card:hover .view-btn {
    bottom: 18px;
    opacity: 1;
}

@media (max-width: 900px) {
    .location-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-card {
        height: 200px;
    }
}

/* ===== CATEGORIES ===== */
.categories {
    padding: 40px 20px 50px;
    text-align: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur-sm);
    -webkit-backdrop-filter: var(--glass-blur-sm);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(24, 119, 242, 0.09);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(24, 119, 242, 0.18);
}

.category-card img {
    width: 100%;
    height: 195px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.45s ease;
}

.category-card:hover img {
    transform: scale(1.06);
}

.category-card h3 {
    font-size: 15px;
    color: var(--text);
    font-weight: 700;
    margin: 12px 12px 14px;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .category-card img {
        height: 155px;
    }
}

@media (max-width: 480px) {
    .category-grid {
        gap: 12px;
    }

    .category-card img {
        height: 135px;
    }

    .category-card h3 {
        font-size: 14px;
    }
}

/* ===== PROMOTE SECTION ===== */
.promote-elite {
    padding: 60px 20px;
    overflow: hidden;
}

.promote-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 40px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 48px rgba(24, 119, 242, 0.12);
    padding: 48px;
}

.promote-content {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.subline {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
    background: rgba(24, 119, 242, 0.1);
    padding: 5px 14px;
    border-radius: 999px;
    border: 1px solid rgba(24, 119, 242, 0.2);
}

.promote-content h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
    margin: 0 0 16px;
}

.promote-content h2 span {
    color: var(--primary);
}

.promote-content .desc {
    color: var(--text-meta);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 26px;
}

.gold-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    text-decoration: none !important;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    padding: 13px 32px;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.gold-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(24, 119, 242, 0.5);
    color: #fff;
}

/* PHOTO GALLERY */
.promote-gallery {
    position: relative;
    height: 400px;
}

.photo-box {
    position: absolute;
    width: 195px;
    height: 260px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16), 0 4px 12px rgba(24, 119, 242, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.5s ease;
}

.photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.photo-box:hover img {
    transform: scale(1.08);
}

.photo1 { top: 20px;  left: 0;    transform: rotate(-10deg); z-index: 4; }
.photo2 { top: 55px;  left: 90px; transform: rotate(5deg);   z-index: 3; }
.photo3 { top: 105px; left: 180px;transform: rotate(-6deg);  z-index: 2; }
.photo4 { top: 155px; left: 270px;transform: rotate(8deg);   z-index: 1; }

.promote-gallery:hover .photo1 { transform: rotate(-4deg) translateY(-10px); }
.promote-gallery:hover .photo2 { transform: rotate(2deg)  translateY(-15px); }
.promote-gallery:hover .photo3 { transform: rotate(-2deg) translateY(-10px); }
.promote-gallery:hover .photo4 { transform: rotate(4deg)  translateY(-15px); }

@media (max-width: 950px) {
    .promote-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 36px 28px;
    }

    .promote-content {
        align-items: center;
        margin: 0 auto;
    }

    .promote-gallery {
        height: 320px;
        margin-top: 36px;
    }

    .photo-box { width: 165px; height: 220px; }
    .photo2 { left: 65px; }
    .photo3 { left: 140px; }
    .photo4 { left: 215px; }
}

@media (max-width: 600px) {
    .promote-elite {
        padding: 30px 14px;
    }

    .promote-wrapper {
        padding: 26px 18px;
        border-radius: var(--radius);
    }

    .promote-gallery {
        height: 280px;
    }

    .photo-box { width: 130px; height: 180px; }
    .photo2 { left: 44px; }
    .photo3 { left: 100px; }
    .photo4 { left: 160px; }
}