/* =============================================================
   CAPX-STYLE MODERN HOME — dark gaming / neon green rewards theme
   Palette: #0a1f13 / #102e1b / #00ff66 / #00e676 / #0d2818 / #1b4329
   ============================================================= */

:root {
    --ch-bg: #0a1f13;
    --ch-bg-2: #102e1b;
    --ch-brand: #00ff66;
    --ch-brand-2: #00e676;
    --ch-card: #0d2818;
    --ch-card-2: #0f2f1c;
    --ch-border: #1b4329;
    --ch-heading: #ffffff;
    --ch-muted: #a0b3a6;
    --ch-darktext: #05140a;
    --ch-glow: rgba(0, 255, 102, 0.6);
}

.modern-home {
    font-family: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
}

/* Hide the old app light content padding bleed behind the landing */
.modern-home.cxx-landing-host {
    padding-right: 0;
    padding-left: 0;
}

.cxx-landing {
    position: relative;
    background: linear-gradient(180deg, #0a1f13 0%, #07180e 100%);
    border-radius: 0 0 28px 28px;
    color: var(--ch-muted);
    overflow: hidden;
}

.cxx-landing *,
.cxx-landing *::before,
.cxx-landing *::after {
    box-sizing: border-box;
}

.cxx-landing a {
    text-decoration: none;
}

.cxx-landing img {
    max-width: 100%;
}

.cxx-landing h1, .cxx-landing h2, .cxx-landing h3, .cxx-landing h4 {
    color: var(--ch-heading);
}

/* ===================== HERO ===================== */

.home-hero {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    margin: 18px 0 26px;
    background:
        radial-gradient(1100px 560px at 82% -12%, rgba(0, 230, 118, 0.28), transparent 60%),
        radial-gradient(900px 540px at -12% 118%, rgba(0, 230, 118, 0.16), transparent 55%),
        radial-gradient(700px 420px at 50% 120%, rgba(0, 255, 102, 0.10), transparent 60%),
        linear-gradient(135deg, #132e1d 0%, #0a1f13 52%, #08190f 100%);
    border: 1px solid var(--ch-border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 30px 60px rgba(0, 0, 0, 0.45);
}

/* --- landing nav (inside hero, like capx) --- */
.landing-nav {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 26px;
    border-bottom: 1px solid rgba(27, 67, 41, 0.55);
}

.landing-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-brand img {
    height: 38px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(0, 255, 102, 0.35));
}

.landing-brand span {
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    letter-spacing: 0.5px;
}

.landing-brand span em {
    font-style: normal;
    color: var(--ch-brand);
}

.landing-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.landing-links > a {
    position: relative;
    color: var(--ch-muted);
    font-size: 14px;
    font-weight: 600;
    padding: 9px 15px;
    border-radius: 999px;
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.landing-links > a:hover {
    color: var(--ch-heading);
    background: rgba(0, 255, 102, 0.08);
    box-shadow: 0 0 0 1px rgba(0, 255, 102, 0.25);
}

.landing-close-button {
    display: none;
}

.landing-auth {
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-auth-mobile {
    display: none;
}

.landing-signin,
.landing-signup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.landing-signin {
    color: var(--ch-brand);
    border: 1px solid rgba(0, 255, 102, 0.45);
    background: rgba(0, 255, 102, 0.06);
}

.landing-signin:hover {
    background: rgba(0, 255, 102, 0.12);
    box-shadow: 0 0 14px rgba(0, 255, 102, 0.25);
    color: var(--ch-brand);
}

.landing-signup {
    background: var(--ch-brand);
    color: var(--ch-darktext);
    box-shadow: 0 6px 18px rgba(0, 255, 102, 0.35);
}

.landing-signup:hover {
    background: #2bff79;
    box-shadow: 0 0 24px var(--ch-glow);
    transform: translateY(-1px) scale(1.02);
    color: var(--ch-darktext);
}

.landing-menu-button {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--ch-border);
    background: var(--ch-card);
    color: var(--ch-heading);
    font-size: 18px;
    cursor: pointer;
}

/* --- hero grid --- */
.home-hero-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 34px;
    padding: 40px 26px 12px;
}

.home-hero-copy {
    position: relative;
    z-index: 4;
}

.hero-kicker {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 18px;
    margin-bottom: 18px;
}

.hero-kicker span {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ch-brand);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-kicker span::before {
    content: '•';
    color: var(--ch-brand);
    font-size: 16px;
    text-shadow: 0 0 10px var(--ch-brand);
}

.hero-kicker span:first-child::before {
    content: '';
    display: none;
}

.home-hero-copy h1 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--ch-heading);
    margin: 0 0 22px;
}

.home-hero-copy h1 span {
    color: var(--ch-brand);
    text-shadow: 0 0 28px rgba(0, 255, 102, 0.45);
}

.home-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 6px;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 54px;
    padding: 0 34px;
    border-radius: 999px;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    cursor: pointer;
}

.home-btn-primary {
    background: linear-gradient(135deg, #00ff66, #00e676);
    color: var(--ch-darktext);
    box-shadow: 0 10px 30px rgba(0, 255, 102, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    animation: heroBtnPulse 2.6s ease-in-out infinite;
}

.home-btn-primary:hover {
    box-shadow: 0 0 26px var(--ch-glow), 0 14px 34px rgba(0, 255, 102, 0.4);
    transform: scale(1.04);
    color: var(--ch-darktext);
}

@keyframes heroBtnPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(0, 255, 102, 0.32), inset 0 1px 0 rgba(255,255,255,0.4); }
    50% { box-shadow: 0 0 22px rgba(0, 255, 102, 0.6), 0 14px 38px rgba(0, 255, 102, 0.42), inset 0 1px 0 rgba(255,255,255,0.4); }
}

.home-btn-ghost {
    background: transparent;
    color: var(--ch-heading);
    border: 1px solid var(--ch-border);
}

.home-btn-ghost:hover {
    border-color: var(--ch-brand);
    color: var(--ch-brand);
    box-shadow: 0 0 18px rgba(0, 255, 102, 0.2);
}

.hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin-top: 26px;
}

.hero-trust .ht-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ch-muted);
    font-size: 13px;
    font-weight: 600;
}

.hero-trust .ht-item i {
    color: var(--ch-brand);
    font-size: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.6);
}

/* --- hero visual (composed) --- */
.home-hero-media {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 0.94;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glow-behind {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 88%;
    height: 88%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 38%, rgba(0, 255, 102, 0.30), transparent 55%),
        radial-gradient(circle at 50% 120%, rgba(0, 230, 118, 0.22), transparent 62%);
    filter: blur(4px);
    animation: glowBreath 5s ease-in-out infinite;
}

@keyframes glowBreath {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero-hourglass {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 62%;
    height: 62%;
    border-radius: 50%;
    border: 1.5px dashed rgba(0, 255, 102, 0.35);
    animation: spinSlow 22s linear infinite;
}

.hero-hourglass::after {
    content: '';
    position: absolute;
    inset: 14%;
    border-radius: 50%;
    border: 1px dashed rgba(0, 255, 102, 0.2);
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-coin-main {
    position: relative;
    z-index: 3;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: conic-gradient(from 210deg, #0d6b35, #00e676, #16ff79, #00a94f, #0d6b35);
    box-shadow: 0 0 60px rgba(0, 255, 102, 0.45), 0 24px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 8px rgba(5, 20, 10, 0.55);
    animation: coinFloat 5s ease-in-out infinite;
}

@keyframes coinFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-14px) rotate(2deg); }
}

.hero-coin-main::before {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #103d24, #071a10 70%);
    box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.6);
}

.hero-coin-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #fff;
    text-align: center;
}

.hero-coin-inner i {
    font-size: 52px;
    color: #ffd54f;
    text-shadow: 0 0 24px rgba(255, 213, 79, 0.6);
}

.hero-coin-inner b {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
}

.hero-coin-inner em {
    font-style: normal;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--ch-brand);
    text-transform: uppercase;
}

.hero-graphic {
    position: relative;
    z-index: 3;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow:
        0 30px 60px -20px rgba(0, 0, 0, 0.55),
        0 0 80px -16px rgba(0, 255, 102, 0.5);
    animation: coinFloat 6s ease-in-out infinite;
    pointer-events: none;
}

/* floating offer chips */
.hero-chip {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 13px 9px 9px;
    border-radius: 14px;
    background: rgba(13, 40, 24, 0.9);
    border: 1px solid var(--ch-border);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 255, 102, 0.06);
    backdrop-filter: blur(6px);
    animation: coinFloat 6s ease-in-out infinite;
}

.hero-chip .chip-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #152f1f;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-chip .chip-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-chip .chip-icon i {
    font-size: 18px;
    color: var(--ch-brand);
}

.hero-chip .chip-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.hero-chip .chip-meta small {
    color: var(--ch-muted);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-chip .chip-meta b {
    color: var(--ch-brand);
    font-size: 14px;
    font-weight: 800;
}

.hero-chip.hc-1 { top: 8%; left: 4%; animation-delay: 0.3s; }
.hero-chip.hc-2 { top: 24%; right: 2%; animation-delay: 1.1s; }
.hero-chip.hc-3 { bottom: 18%; left: -2%; animation-delay: 1.8s; }
.hero-chip.hc-4 { bottom: 8%; right: 6%; animation-delay: 0.7s; }

.hero-float-coin {
    position: absolute;
    z-index: 2;
    color: var(--ch-brand);
    opacity: 0.9;
    filter: drop-shadow(0 0 12px rgba(0, 255, 102, 0.7));
    animation: coinFloat 4.5s ease-in-out infinite;
}

.hero-float-coin.fi-1 { top: 6%; left: 42%; font-size: 22px; animation-delay: 0.5s; }
.hero-float-coin.fi-2 { top: 48%; left: 0; font-size: 17px; animation-delay: 1.4s; }
.hero-float-coin.fi-3 { bottom: 30%; right: -1%; font-size: 26px; animation-delay: 2s; }
.hero-float-coin.fi-4 { bottom: 4%; left: 30%; font-size: 19px; animation-delay: 0.9s; }

.hero-float-trophy {
    position: absolute;
    z-index: 2;
    top: -2%;
    right: 18%;
    font-size: 34px;
    color: #ffd54f;
    filter: drop-shadow(0 0 16px rgba(255, 213, 79, 0.7));
    animation: coinFloat 5.4s ease-in-out infinite;
    animation-delay: 1.6s;
    transform: rotate(12deg);
}

.hero-float-money {
    position: absolute;
    z-index: 2;
    bottom: 26%;
    left: 46%;
    font-size: 26px;
    color: #4ade80;
    filter: drop-shadow(0 0 14px rgba(74, 222, 128, 0.6));
    animation: coinFloat 5s ease-in-out infinite;
    animation-delay: 2.4s;
    transform: rotate(-8deg);
}

/* --- games strip (bottom of hero) --- */
.hero-games-strip {
    position: relative;
    z-index: 4;
    margin-top: 26px;
    padding: 16px 26px 24px;
    border-top: 1px solid rgba(27, 67, 41, 0.6);
    overflow: hidden;
}

.hero-games-strip-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--ch-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.hero-games-strip-head i {
    color: var(--ch-brand);
}

.hero-games-strip .strip-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 2px 8px;
    scrollbar-width: none;
}

.hero-games-strip .strip-track::-webkit-scrollbar {
    display: none;
}

.strip-game {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 10px 10px;
    border-radius: 14px;
    background: rgba(13, 40, 24, 0.85);
    border: 1px solid var(--ch-border);
    transition: all 0.3s ease;
    min-width: 86px;
}

.strip-game:hover {
    transform: translateY(-4px);
    border-color: var(--ch-brand);
    box-shadow: 0 10px 24px rgba(0, 255, 102, 0.25);
}

.strip-game img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

.strip-game span {
    font-size: 10px;
    color: var(--ch-heading);
    font-weight: 700;
    text-align: center;
    max-width: 76px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.strip-game small {
    font-size: 10px;
    font-weight: 700;
    color: var(--ch-brand);
}

/* ===================== SECTION PRIMITIVES ===================== */

.cxx-section {
    padding: 30px 26px;
}

.cxx-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.cxx-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ch-brand);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cxx-kicker::before {
    content: '';
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--ch-brand), transparent);
}

.cxx-section-head h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
}

.cxx-section-head p {
    color: var(--ch-muted);
    font-size: 14px;
    max-width: 560px;
}

.cxx-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ch-brand);
    font-size: 13px;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 102, 0.35);
    background: rgba(0, 255, 102, 0.06);
    transition: all 0.25s ease;
}

.cxx-view-all:hover {
    background: var(--ch-brand);
    color: var(--ch-darktext);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
}

/* ===================== METRICS ===================== */

.landing-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 10px 26px 30px;
}

.metric-card {
    background: linear-gradient(180deg, var(--ch-card-2), var(--ch-card));
    border: 1px solid var(--ch-border);
    border-radius: 18px;
    padding: 24px 20px;
    position: relative;
    overflow: hidden;
    text-align: left;
    transition: all 0.3s ease;
}

.metric-card::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -30%;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 102, 0.14), transparent 70%);
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 102, 0.6);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 255, 102, 0.15);
}

.metric-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 16px;
    background: rgba(0, 255, 102, 0.12);
    border: 1px solid rgba(0, 255, 102, 0.25);
    color: var(--ch-brand);
    box-shadow: 0 0 18px rgba(0, 255, 102, 0.18);
}

.metric-icon.gold { color: #ffd54f; background: rgba(255, 213, 79, 0.12); border-color: rgba(255, 213, 79, 0.3); box-shadow: 0 0 18px rgba(255, 213, 79, 0.18); }
.metric-icon.sky { color: #38bdf8; background: rgba(56, 189, 248, 0.12); border-color: rgba(56, 189, 248, 0.3); box-shadow: 0 0 18px rgba(56, 189, 248, 0.18); }

.metric-card strong {
    display: block;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--ch-heading);
    line-height: 1.1;
    margin-bottom: 6px;
}

.metric-card strong i {
    font-style: normal;
    color: var(--ch-brand);
}

.metric-card span {
    font-size: 12.5px;
    color: var(--ch-muted);
    line-height: 1.5;
    display: block;
}

/* ===================== WELCOME ===================== */

.landing-welcome {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    padding: 30px 26px;
}

.landing-welcome-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0 16px;
}

.landing-welcome-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.landing-welcome-copy h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 12px;
}

.landing-welcome-copy h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--ch-brand);
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.landing-welcome-copy p {
    color: var(--ch-muted);
    font-size: 15px;
    line-height: 1.7;
    max-width: 520px;
}

.welcome-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.wb-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border-radius: 999px;
    background: rgba(13, 40, 24, 0.9);
    border: 1px solid var(--ch-border);
    color: var(--ch-heading);
    font-size: 12.5px;
    font-weight: 700;
}

.wb-item i {
    color: var(--ch-brand);
}

.landing-welcome-media {
    position: relative;
    border-radius: 22px;
    padding: 28px;
    background:
        radial-gradient(600px 300px at 50% 0%, rgba(0, 255, 102, 0.14), transparent 60%),
        linear-gradient(180deg, var(--ch-card-2), var(--ch-card));
    border: 1px solid var(--ch-border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.landing-welcome-media::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ch-brand), transparent);
    opacity: 0.6;
}

.wm-tile {
    border-radius: 16px;
    padding: 16px;
    background: rgba(5, 20, 10, 0.55);
    border: 1px solid var(--ch-border);
    text-align: center;
    transition: all 0.3s ease;
}

.wm-tile:hover { border-color: rgba(0, 255, 102, 0.55); transform: translateY(-3px); }

.wm-tile .wm-ico {
    font-size: 30px;
    margin-bottom: 8px;
}

.wm-tile b {
    display: block;
    color: var(--ch-heading);
    font-size: 14px;
    font-weight: 800;
}

.wm-tile small {
    color: var(--ch-muted);
    font-size: 11.5px;
}

.wm-tile .fa-trophy { color: #ffd54f; text-shadow: 0 0 16px rgba(255, 213, 79, 0.5); }
.wm-tile .fa-coins { color: var(--ch-brand); text-shadow: 0 0 16px rgba(0, 255, 102, 0.5); }
.wm-tile .fa-dollar-sign { color: #4ade80; text-shadow: 0 0 16px rgba(74, 222, 128, 0.5); }
.wm-tile .fa-gamepad { color: #38bdf8; text-shadow: 0 0 16px rgba(56, 189, 248, 0.5); }

/* ===================== STEPS ===================== */

.landing-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 10px 26px 30px;
}

.step-article {
    position: relative;
    background: linear-gradient(180deg, var(--ch-card-2), var(--ch-card));
    border: 1px solid var(--ch-border);
    border-radius: 20px;
    padding: 30px 24px 26px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.step-article:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 102, 0.55);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(0, 255, 102, 0.12);
}

.step-number {
    position: absolute;
    top: 18px;
    right: 20px;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0, 255, 102, 0.35);
}

.step-article .step-ico {
    width: 58px;
    height: 58px;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.16), rgba(0, 230, 118, 0.05));
    border: 1px solid rgba(0, 255, 102, 0.3);
    color: var(--ch-brand);
    box-shadow: 0 0 24px rgba(0, 255, 102, 0.15);
}

.step-article h3 {
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 10px;
}

.step-article p {
    color: var(--ch-muted);
    font-size: 13.5px;
    line-height: 1.7;
    margin: 0;
}

.step-article .step-payout-visual {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(5, 20, 10, 0.6);
    border: 1px solid var(--ch-border);
}

.step-payout-visual strong {
    color: var(--ch-brand);
    font-size: 20px;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
}

.step-payout-visual .pay-ic {
    display: flex;
    gap: 8px;
}

.step-payout-visual .pay-ic i {
    font-size: 18px;
    color: var(--ch-muted);
}

/* ===================== LIVE TICKER ===================== */

.landing-live {
    padding: 10px 26px 30px;
}

.live-ticker-shell {
    background: linear-gradient(180deg, var(--ch-card-2), var(--ch-card));
    border: 1px solid var(--ch-border);
    border-radius: 20px;
    padding: 18px 20px;
    overflow: hidden;
    position: relative;
}

.live-ticker-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--ch-heading);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--ch-brand);
    box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.7);
    animation: livePing 1.6s ease-out infinite;
}

@keyframes livePing {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 102, 0); }
}

.live-ticker-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 0 6px;
    scrollbar-width: none;
}

.live-ticker-track::-webkit-scrollbar { display: none; }

.live-ticket {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 200px;
    padding: 12px 15px 12px 12px;
    border-radius: 14px;
    background: rgba(5, 20, 10, 0.6);
    border: 1px solid var(--ch-border);
    transition: all 0.3s ease;
}

.live-ticket:hover { border-color: rgba(0, 255, 102, 0.5); }

.live-ticket .lt-pay {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 102, 0.1);
    border: 1px solid rgba(0, 255, 102, 0.22);
    color: var(--ch-brand);
    font-size: 16px;
    flex-shrink: 0;
}

.live-ticket .lt-info b {
    display: block;
    color: var(--ch-heading);
    font-size: 13px;
    font-weight: 700;
}

.live-ticket .lt-info small {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--ch-muted);
    font-size: 11px;
}

.live-ticket .lt-info small img { height: 12px; }

.live-ticket .lt-amt {
    margin-left: auto;
    color: var(--ch-brand);
    font-size: 13px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

/* ===================== OFFERS / WALLS GRID ===================== */

.landing-offers {
    padding: 10px 26px 30px;
    scroll-margin-top: 10px;
}

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

.company-card-vertical {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--ch-border);
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--ch-card-2), var(--ch-card));
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    transition: all 0.35s ease;
    cursor: pointer;
}

.company-card-vertical:hover {
    transform: translateY(-7px) scale(1.015);
    border-color: rgba(0, 255, 102, 0.7);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.5), 0 0 26px rgba(0, 255, 102, 0.22);
}

.company-image-container {
    padding: 24px 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 102, 0.14), transparent 70%);
    border-bottom: 1px solid var(--ch-border);
}

.company-image-container img {
    width: 84px;
    height: 84px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.5));
    transition: transform 0.4s ease;
}

.company-card-vertical:hover .company-image-container img {
    transform: scale(1.1) rotate(2deg);
}

.company-content {
    padding: 16px 15px 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: rgba(5, 20, 10, 0.5);
    border-top: 1px solid rgba(0, 255, 102, 0.08);
}

.company-name {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--ch-heading);
}

.company-badge {
    display: inline-block;
    width: fit-content;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(0, 255, 102, 0.14) !important;
    color: var(--ch-brand) !important;
    border: 1px solid rgba(0, 255, 102, 0.3) !important;
    padding: 3px 9px;
    border-radius: 999px;
    margin-bottom: 9px;
}

.unlock-message {
    font-size: 11px;
    color: var(--ch-muted);
    margin-bottom: 8px;
    line-height: 1.4;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 12px;
    font-size: 10px;
}

.rating-stars i { color: #fbbf24; font-size: 10px; }
.rating-stars span { color: var(--ch-muted); font-size: 10.5px; margin-left: 4px; }

.points-badge {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    font-size: 12px;
    font-weight: 800;
    color: var(--ch-brand);
    background: rgba(0, 255, 102, 0.12);
    border: 1px solid rgba(0, 255, 102, 0.3);
    padding: 5px 11px;
    border-radius: 999px;
}

.points-badge img { height: 13px; }

.offer-bonus {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    background: linear-gradient(135deg, #00ff66, #00c853);
    color: var(--ch-darktext);
    font-size: 11px;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(0, 255, 102, 0.4);
}

.card-lock-overlay {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 20, 10, 0.75);
    border: 1px solid var(--ch-border);
}

.card-lock-overlay i { color: var(--ch-muted); font-size: 12px; }

/* survey walls tint */
.survey-card .company-image-container {
    background: radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.12), transparent 70%);
}

.survey-card .offer-bonus {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    box-shadow: 0 4px 14px rgba(56, 189, 248, 0.35);
}

.survey-card .points-badge {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.12);
    border-color: rgba(56, 189, 248, 0.3);
}

/* featured offers marquee */
.featured-offers-section { scroll-margin-top: 10px; }

.featured-offers-marquee {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.featured-offers-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 6px 2px 14px;
    scrollbar-width: none;
}

.featured-offers-track::-webkit-scrollbar { display: none; }

.featured-offer-card {
    flex: 0 0 auto;
    width: 210px;
    display: block;
    background: linear-gradient(180deg, var(--ch-card-2), var(--ch-card));
    border: 1px solid var(--ch-border);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

.featured-offer-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 102, 0.6);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45), 0 0 22px rgba(0, 255, 102, 0.2);
}

.featured-offer-image {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.featured-offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-offer-card:hover .featured-offer-image img { transform: scale(1.1); }

.featured-offer-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    background: linear-gradient(135deg, #00ff66, #00c853);
    color: var(--ch-darktext);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.8px;
    padding: 4px 11px;
    border-radius: 999px;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.06); opacity: 0.88; }
}

.featured-offer-content { padding: 14px 15px 15px; }

.featured-offer-category {
    display: inline-block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--ch-brand);
    background: rgba(0, 255, 102, 0.12);
    border: 1px solid rgba(0, 255, 102, 0.28);
    padding: 2px 9px;
    border-radius: 999px;
    margin-bottom: 8px;
}

.featured-offer-title {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 800;
    color: var(--ch-heading);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-offer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.featured-offer-price {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 900;
    color: var(--ch-brand);
}

.featured-offer-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #fbbf24;
    font-size: 11.5px;
    font-weight: 800;
}

/* top offers */
.top-offers-section-enhanced { scroll-margin-top: 10px; }

.top-offers-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 6px 2px 14px;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.top-offers-track::-webkit-scrollbar { display: none; }

.top-offer-card-enhanced {
    flex: 0 0 auto;
    width: 250px;
    display: block;
    background: linear-gradient(180deg, var(--ch-card-2), var(--ch-card));
    border: 1px solid var(--ch-border);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-offer-card-enhanced:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 213, 79, 0.6);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45), 0 0 22px rgba(255, 213, 79, 0.16);
}

.top-offer-rank {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    color: var(--ch-darktext);
    background: linear-gradient(135deg, #ffd54f, #f59e0b);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.35);
}

.top-offer-rank.top-1 { background: linear-gradient(135deg, #ffd54f, #f59e0b); }
.top-offer-rank.top-2 { background: linear-gradient(135deg, #d7dee6, #8a99a8); }
.top-offer-rank.top-3 { background: linear-gradient(135deg, #d99d6c, #a15c2b); }

.top-offer-image {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.top-offer-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55%;
    background: linear-gradient(to top, rgba(5, 20, 10, 0.9), transparent);
}

.top-offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.top-offer-card-enhanced:hover .top-offer-image img { transform: scale(1.14); }

.top-offer-content {
    padding: 16px;
    position: relative;
}

.top-offer-title-enhanced {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 800;
    color: var(--ch-heading);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-offer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.top-offer-payout {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 900;
    color: #ffd54f;
}

.top-offer-payout small { font-size: 11px; color: var(--ch-muted); font-weight: 500; }

.top-offer-stats {
    display: flex;
    align-items: center;
    gap: 9px;
}

.top-offer-stats span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--ch-muted);
    font-size: 11px;
    font-weight: 600;
}

.top-offer-stats i { color: #ffd54f; }

.top-offer-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.top-offer-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffd54f, #f59e0b);
    border-radius: 3px;
    animation: progressBreath 2s ease-in-out infinite;
}

@keyframes progressBreath {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ===================== CTA / JOIN ===================== */

.landing-join {
    margin: 10px 26px 30px;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 48px 34px;
    text-align: center;
    background:
        radial-gradient(700px 320px at 50% 0%, rgba(0, 255, 102, 0.2), transparent 60%),
        linear-gradient(135deg, #12301d, #0a1f13 60%);
    border: 1px solid var(--ch-border);
}

.landing-join::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 18%;
    right: 18%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ch-brand), transparent);
}

.landing-join h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    margin: 0 0 14px;
}

.landing-join p {
    color: var(--ch-muted);
    font-size: 14.5px;
    max-width: 560px;
    margin: 0 auto 26px;
    line-height: 1.7;
}

/* ===================== FAQ ===================== */

.landing-faq { padding: 10px 26px 30px; }

.landing-faq-head {
    text-align: center;
    margin-bottom: 30px;
}

.landing-faq-head .cxx-kicker { justify-content: center; }
.landing-faq-head .cxx-kicker::before { display: none; }

.landing-faq-head h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 800;
    margin: 0;
}

.landing-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.landing-faq-list details {
    background: linear-gradient(180deg, var(--ch-card-2), var(--ch-card));
    border: 1px solid var(--ch-border);
    border-radius: 15px;
    margin-bottom: 13px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.landing-faq-list details[open] {
    border-color: rgba(0, 255, 102, 0.55);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 255, 102, 0.1);
}

.landing-faq-list summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    color: var(--ch-heading);
    font-size: 15px;
    font-weight: 700;
    user-select: none;
}

.landing-faq-list summary::-webkit-details-marker { display: none; }

.landing-faq-list summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--ch-brand);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.landing-faq-list details[open] summary::after { transform: rotate(180deg); }

.landing-faq-list details p {
    margin: 0;
    padding: 2px 20px 18px;
    color: var(--ch-muted);
    font-size: 13.5px;
    line-height: 1.7;
}

/* ===================== PARTNERS ===================== */

.landing-partners { padding: 10px 26px 34px; }

.partners-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 10px;
    border-radius: 15px;
    background: rgba(13, 40, 24, 0.8);
    border: 1px solid var(--ch-border);
    color: var(--ch-muted);
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.partner-item:hover {
    border-color: rgba(0, 255, 102, 0.5);
    color: var(--ch-heading);
    transform: translateY(-4px);
}

.partner-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: grayscale(1) brightness(1.6);
    transition: filter 0.3s ease;
}

.partner-item:hover img { filter: grayscale(0) brightness(1); }

/* ===================== FOOTER ===================== */

.modern-footer {
    margin-top: 10px;
    padding: 40px 26px 28px;
    border-top: 1px solid rgba(27, 67, 41, 0.7);
    background: linear-gradient(180deg, #081a10, #050f0a);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 34px;
    margin-bottom: 28px;
}

.footer-brand img { height: 42px; margin-bottom: 14px; object-fit: contain; }

.footer-brand p {
    color: var(--ch-muted);
    font-size: 13px;
    line-height: 1.7;
    max-width: 320px;
    margin: 0 0 16px;
}

.footer-social { display: flex; gap: 9px; }

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--ch-muted);
    background: rgba(13, 40, 24, 0.9);
    border: 1px solid var(--ch-border);
    transition: all 0.25s ease;
}

.footer-social a:hover {
    color: var(--ch-darktext);
    background: var(--ch-brand);
    border-color: var(--ch-brand);
    box-shadow: 0 0 18px rgba(0, 255, 102, 0.4);
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin: 0 0 16px;
    color: var(--ch-heading);
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: var(--ch-muted);
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--ch-brand); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(27, 67, 41, 0.6);
    color: var(--ch-muted);
    font-size: 12.5px;
}

.footer-cookie-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 999px;
    background: rgba(13, 40, 24, 0.9);
    border: 1px solid var(--ch-border);
    color: var(--ch-muted);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.footer-cookie-chip:hover {
    color: var(--ch-brand);
    border-color: rgba(0, 255, 102, 0.5);
}

/* ===================== MODAL OVERRIDES ===================== */

.of-modal-content {
    background: var(--ch-card) !important;
    border-color: var(--ch-border) !important;
    color: var(--ch-heading);
}

.of-modal-header {
    background: linear-gradient(180deg, var(--ch-card-2), var(--ch-card)) !important;
    border-bottom: 1px solid var(--ch-border) !important;
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 1100px) {
    .companies-grid { grid-template-columns: repeat(3, 1fr); }
    .landing-metrics { grid-template-columns: repeat(2, 1fr); }
    .partners-strip { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 992px) {
    .home-hero-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-hero-copy { text-align: center; }

    .hero-kicker { justify-content: center; }

    .home-hero-actions { justify-content: center; }

    .hero-trust { justify-content: center; }

    .home-hero-media { min-height: 0; }

    .hero-visual { max-width: 420px; margin: 0 auto; }

    .landing-welcome { grid-template-columns: 1fr; }

    .landing-steps { grid-template-columns: repeat(2, 1fr); }

    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .landing-nav { flex-wrap: wrap; }

    .landing-links {
        order: 3;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 12px 0 0;
        border-top: 1px solid rgba(27, 67, 41, 0.55);
        margin-top: 6px;
    }

    .landing-links.show { display: flex; }

    .landing-links > a {
        padding: 12px 10px;
        border-radius: 10px;
        text-align: center;
    }

    .landing-close-button {
        display: inline-flex;
        align-self: flex-end;
        width: 34px;
        height: 34px;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 10px;
        color: var(--ch-muted);
        font-size: 16px;
        margin-bottom: 4px;
        cursor: pointer;
    }

    .landing-auth { display: none; }

    .landing-auth-mobile {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-top: 14px;
        margin-top: 12px;
        border-top: 1px solid rgba(27, 67, 41, 0.55);
    }

    .landing-auth-mobile .landing-signin,
    .landing-auth-mobile .landing-signup { width: 100%; height: 46px; }

    .landing-menu-button { display: inline-flex; }

    .companies-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .home-hero {
        border-radius: 20px;
        margin: 10px 0 18px;
    }

    .landing-nav, .home-hero-grid, .cxx-section,
    .landing-metrics, .landing-welcome, .landing-steps,
    .landing-live, .landing-offers, .landing-faq,
    .landing-partners, .modern-footer, .landing-join {
        padding-left: 16px;
        padding-right: 16px;
    }

    .landing-metrics { grid-template-columns: 1fr 1fr; gap: 12px; }
    .landing-steps { grid-template-columns: 1fr; }
    .partners-strip { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .landing-welcome-media { grid-template-columns: 1fr; }
    .hero-visible-imgs .hc-3 { display: none; }

    .metric-card strong { font-size: 21px; }
    .metric-card { padding: 18px 15px; }
    .hero-coin-main { width: 160px; height: 160px; }
}