/* =============================================================================
   Buyin Child Theme — custom.css
   Poker dark theme: variables, base resets, and all component classes.
   Elementor widget panels should reference Global Color tokens, not raw hex.
   ============================================================================= */

/* ─────────────────────────────────────────────────────────────
   CSS CUSTOM PROPERTIES
───────────────────────────────────────────────────────────── */

:root {
    /* Brand colors */
    --color-red:          #e63946;
    --color-gold:         #d4a843;
    --color-green:        #2ecc71;
    --color-blue:         #3b82f6;

    /* Backgrounds */
    --bg-primary:         #0a0a0f;
    --bg-secondary:       #0f0f18;
    --bg-card:            #12121a;
    --bg-card-hover:      #16161f;
    --bg-felt:            #0d1f0d;
    --bg-overlay:         rgba(0, 0, 0, 0.72);

    /* Text */
    --text-primary:       #e8e8f0;
    --text-secondary:     #c8c8d8;
    --text-muted:         #8888a8;

    /* Borders */
    --border-subtle:      rgba(255, 255, 255, 0.07);
    --border-card:        rgba(255, 255, 255, 0.10);
    --border-gold:        rgba(212, 168, 67, 0.35);
    --border-red:         rgba(230, 57, 70, 0.35);

    /* Shadows / glows */
    --glow-red:           0 0 24px rgba(230, 57, 70, 0.45);
    --glow-gold:          0 0 24px rgba(212, 168, 67, 0.45);
    --shadow-card:        0 8px 32px rgba(0, 0, 0, 0.55);
    --shadow-deep:        0 20px 60px rgba(0, 0, 0, 0.7);

    /* Gradients */
    --grad-red:           linear-gradient(135deg, #e63946 0%, #c1121f 100%);
    --grad-gold:          linear-gradient(135deg, #d4a843 0%, #b8860b 100%);
    --grad-dark:          linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
    --grad-hero-overlay:  linear-gradient(135deg, rgba(10,10,15,0.9) 0%, rgba(15,10,25,0.75) 100%);

    /* Spacing scale */
    --space-xs:    0.5rem;
    --space-sm:    1rem;
    --space-md:    1.5rem;
    --space-lg:    2.5rem;
    --space-xl:    4rem;
    --space-2xl:   6rem;

    /* Border radius */
    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --radius-pill: 9999px;

    /* Transitions */
    --transition:       0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow:  0.6s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ─────────────────────────────────────────────────────────────
   BASE RESETS & GLOBAL
───────────────────────────────────────────────────────────── */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #050505;
    /* Poker felt texture — JS overwrites this with the saved felt preference */
    background-image: url('../images/Poker felt 2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-secondary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-red);
}


/* ─────────────────────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────────────────────── */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 16px 0;
    /* Starts fully transparent — same as original */
    background: transparent;
    transition: background 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                backdrop-filter 0.4s ease,
                border-color 0.4s ease,
                padding 0.4s ease,
                box-shadow 0.4s ease;
}

/* JS adds .scrolled at scrollY > 50 — matches original exactly */
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 0;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    /* Logo left | nav-links center (flex: 1 + justify-content) | CTA right */
    justify-content: space-between;
    gap: var(--space-md);
}

/* LOGO */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    flex-shrink: 0;
    color: inherit;
}

/* When a custom logo image is set, constrain its size */
.nav-logo img,
.nav-logo .custom-logo {
    height: 44px;
    width: auto;
    display: block;
}

.logo-icon {
    font-size: 1.6rem;
    color: var(--color-red);
    line-height: 1;
    transition: color var(--transition);
}

.nav-logo:hover .logo-icon {
    color: var(--color-gold);
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.logo-accent {
    color: var(--color-red);
    margin-left: 0.15em;
    font-weight: 600;
}

/* NAV LINKS — centered in the remaining space between logo and CTA */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    /* Takes all available space and centers items inside */
    flex: 1;
    justify-content: center;
}

/* WordPress adds <li> with class current-menu-item */
.nav-links li {
    list-style: none;
}

.nav-links a,
.nav-links .nav-link {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links .nav-link:hover {
    color: var(--color-gold);
    background: rgba(212, 168, 67, 0.08);
}


/* FELT SWITCHER */
.nav-felt-switcher-wrap {
    flex: none !important;
    justify-content: flex-end !important;
    padding: 0;
    margin: 0;
}

.nav-felt-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    list-style: none;
}

.felt-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
}

.felt-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
    padding: 0;
}

.felt-btn:hover,
.felt-btn.active {
    border-color: var(--color-red);
    color: var(--color-red);
    background: rgba(230, 57, 70, 0.10);
}

@media (max-width: 900px) {
    .nav-felt-switcher-wrap { display: none; }
}


/* GET STARTED button */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--grad-red);
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-red);
    opacity: 0.92;
    color: #fff !important;
}

/* HAMBURGER */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition), border-color var(--transition);
    padding: 0;
}

.nav-hamburger:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: var(--border-gold);
}

.nav-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* Hamburger open state — JS adds .open to .navbar */
.navbar.open .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar.open .nav-hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.navbar.open .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ─────────────────────────────────────────────────────────────
   NAVBAR — RESPONSIVE (mobile)
───────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
    .nav-hamburger {
        display: flex;
    }

    /* Nav links collapse into a full-width dropdown */
    .nav-links {
        display: none;
        position: fixed;
        top: 68px;   /* exact navbar height */
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border-subtle);
        padding: var(--space-sm) var(--space-md) var(--space-md);
        z-index: 9998;
    }

    .navbar.open .nav-links {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border-subtle);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a,
    .nav-links .nav-link {
        display: block;
        width: 100%;
        padding: 0.85rem 0.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-cta {
        display: none;   /* replaced by a full-width link inside mobile menu */
    }
}


/* ─────────────────────────────────────────────────────────────
   FOOTER
   Semi-transparent so the body felt texture shows through,
   matching the original HTML site behaviour.
───────────────────────────────────────────────────────────── */

.footer {
    /* Transparent enough to let the fixed felt background bleed through */
    background: rgba(5, 5, 5, 0.82);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: var(--space-2xl) 0 0;
    /* Ensure the felt body background shows — no opaque solid fill */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    position: relative;
    z-index: 2;
}

.footer .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
}

/* Brand column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 280px;
    margin: 0;
}

/* Social icons row */
.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: rgba(212, 168, 67, 0.12);
    border-color: var(--border-gold);
    color: var(--color-gold);
    transform: translateY(-3px);
}

/* Link columns */
.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin: 0 0 0.25rem;
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* WordPress nav_menu renders <li> inside the <ul> — target both */
.footer-list li,
.footer-list > li {
    list-style: none;
}

.footer-list a,
.footer-list li a {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition), padding-left var(--transition);
    display: inline-block;
}

.footer-list a:hover,
.footer-list li a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

/* Copyright bar */
.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-md) 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
}

/* Footer — responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: var(--space-lg);
    }

    .footer-brand {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: var(--space-lg);
    }

    .footer-tagline {
        flex: 1;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }

    .footer-brand {
        grid-column: 1 / -1;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }
}


/* ─────────────────────────────────────────────────────────────
   ELEMENTOR GLOBAL OVERRIDES
───────────────────────────────────────────────────────────── */

/* Make every Elementor section full-width by default */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1240px;
}

/* Remove default Elementor widget margins that fight the dark theme */
.elementor-widget:not(:last-child) {
    margin-bottom: 0;
}

/* Ensure canvas inside sections doesn't create scroll */
.elementor-section {
    overflow: hidden;
}


/* ─────────────────────────────────────────────────────────────
   HEADER — STICKY + BLUR
───────────────────────────────────────────────────────────── */

.elementor-location-header {
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
    z-index: 9999;
}

.elementor-location-header.scrolled {
    background: rgba(10, 10, 15, 0.98);
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

/* Nav links */
.elementor-nav-menu a {
    color: var(--text-secondary) !important;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: color var(--transition) !important;
}

.elementor-nav-menu a:hover,
.elementor-nav-menu .current-menu-item > a {
    color: var(--color-gold) !important;
}


/* ─────────────────────────────────────────────────────────────
   HERO SECTION  (Buyin Hero Widget output)
   Matches the original static site structure 1-to-1.
───────────────────────────────────────────────────────────── */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ── Background layer ── */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    /* Must fill the entire .hero-bg absolutely positioned container */
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.78;
    filter: blur(0.5px);
    /* Fade the bottom edge into the body felt — exact original behaviour */
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    display: block;
    /* Prevent the img from creating layout space */
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 8, 16, 0.15) 0%,
        rgba(8, 8, 16, 0.45) 50%,
        #0f0f18 100%
    );
}

/* ── Particle canvas ── */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* ── Content wrapper ── */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 120px 24px 80px;
    width: 100%;
}

/* ── Badge ── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0;
    background: none;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--color-red), #ff6b6b, var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-dot { display: none; }

@keyframes pulse-dot {
    0%, 100% { opacity: 1;   transform: scale(1);   }
    50%       { opacity: 0.5; transform: scale(1.5); }
}

/* ── Title ── */
.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.hero-gradient {
    background: linear-gradient(135deg, var(--color-red), #ff6b6b, var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Subtitle ── */
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-subtitle em {
    color: var(--color-gold);
    font-style: italic;
}

/* ── CTA buttons row ── */
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* Base button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Primary (red fill) */
.btn-primary {
    background: linear-gradient(135deg, #e63946, #c0392b);
    color: #fff !important;
    border-color: transparent;
    box-shadow: 0 0 40px rgba(230, 57, 70, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(230, 57, 70, 0.45), 0 8px 32px rgba(0,0,0,0.4);
    filter: brightness(1.1);
    color: #fff !important;
}

.btn-primary:active {
    transform: translateY(0);
}

/* Larger hero variant */
.btn-hero {
    font-size: 1.05rem;
    font-weight: 800;
    padding: 16px 36px;
    box-shadow: 0 0 28px rgba(230, 57, 70, 0.45);
}

/* Ghost / outline */
.btn-ghost {
    background: transparent;
    color: var(--text-muted) !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 500;
    border-radius: var(--radius-pill);
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--text-secondary) !important;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.2em;
    line-height: 1;
}

.btn-arrow {
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-block;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ── Live proof line ── */
.hero-live-proof {
    color: var(--color-green);
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 28px;
    letter-spacing: 0.2px;
}

/* ── Trust stat badges row ── */
.hero-stats {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.stat-badge:hover {
    border-color: var(--color-red);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 1.2em;
    line-height: 1;
}

/* ── Stats strip (numbers row) ── */
.hero-stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-top: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.stats-strip-item {
    text-align: center;
    padding: 0 12px;
}

.stats-strip-item + .stats-strip-item {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-strip-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.stats-strip-value.gold {
    color: var(--color-gold);
}

.stats-strip-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 4px;
}

/* ── Scroll indicator ── */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-red), transparent);
    border-radius: 2px;
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%   { opacity: 0; transform: scaleY(0.5); transform-origin: top;    }
    50%  { opacity: 1; transform: scaleY(1);                              }
    100% { opacity: 0; transform: scaleY(0.5); transform-origin: bottom; }
}

/* ── animate-in (entrance stagger on page load) ── */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-badge.animate-in      { animation-delay: 0.2s; }
.hero-title.animate-in      { animation-delay: 0.4s; }
.hero-subtitle.animate-in   { animation-delay: 0.6s; }
.hero-actions.animate-in    { animation-delay: 0.8s; }
.hero-live-proof.animate-in { animation-delay: 1.0s; }
.hero-stats.animate-in      { animation-delay: 1.2s; }
.hero-stats-strip.animate-in{ animation-delay: 1.4s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ── Hero responsive ── */
@media (max-width: 768px) {
    .hero-content {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-hero,
    .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 12px;
    }

    .stat-badge {
        padding: 8px 14px;
        font-size: 0.78rem;
    }

    .hero-stats-strip {
        padding: 16px;
        max-width: 100%;
    }

    .stats-strip-value {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats-strip {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stats-strip-item + .stats-strip-item {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 1rem;
    }
}


/* ─────────────────────────────────────────────────────────────
   SECTION SHARED STYLES
───────────────────────────────────────────────────────────── */

.section-tag {
    display: inline-block;
    background: rgba(230, 57, 70, 0.12);
    border: 1px solid var(--border-red);
    border-radius: var(--radius-pill);
    padding: 0.35rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-red);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

/* Dark card base */
.dark-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.dark-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: rgba(255, 255, 255, 0.16);
}


/* ─────────────────────────────────────────────────────────────
   ABOUT SECTION — FEATURE CARDS
───────────────────────────────────────────────────────────── */

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow-red);
    border-color: var(--border-red);
}

/* Icon container inside feature card */
.feature-card .elementor-icon-box-icon {
    background: rgba(230, 57, 70, 0.12);
    border-radius: var(--radius-md);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.feature-card .elementor-icon-box-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-card .elementor-icon-box-description {
    color: var(--text-muted);
    font-size: 0.9rem;
}


/* ─────────────────────────────────────────────────────────────
   TESTIMONIALS SECTION
───────────────────────────────────────────────────────────── */

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

/* Highlighted center card */
.testimonial-card.featured {
    border-color: var(--border-gold);
    box-shadow: var(--glow-gold);
    position: relative;
    z-index: 1;
}

.testimonial-card .stars {
    color: var(--color-gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-card .author-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

.testimonial-card .author-meta {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Avatar circle */
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grad-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
    overflow: hidden;
}


/* Old recharge-timeline block removed — full styles live in the RECHARGE SECTION block below */

/* ─────────────────────────────────────────────────────────────
   FELT BLEED — section backgrounds stay semi-transparent
   so the fixed body felt texture is always visible underneath.
   These override any solid fills that may appear elsewhere.
───────────────────────────────────────────────────────────── */

.section,
.about,
.testimonials,
.recharge,
.staking,
.gallery,
.talkedges {
    /* Ensure all sections are transparent enough for the felt to show */
    background-color: transparent;
}

/* Dark tint overlays that match the original site's section contrast */
.about      { background: rgba(5, 5, 5, 0.25); }
.testimonials { background: rgba(5, 5, 5, 0.15); }
.recharge   { background: rgba(5, 5, 5, 0.15); }
.staking    { background: rgba(5, 5, 5, 0.25); }
.gallery    { background: rgba(5, 5, 5, 0.15); }
.talkedges  { background: rgba(5, 5, 5, 0.25); }


/* ─────────────────────────────────────────────────────────────
   STAKING SECTION — TIER CARDS
───────────────────────────────────────────────────────────── */

.tier-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}

.tier-card:hover {
    transform: translateY(-6px);
}

.tier-bronze {
    border-top: 3px solid #cd7f32;
}

.tier-bronze:hover {
    box-shadow: 0 0 24px rgba(205, 127, 50, 0.3);
}

.tier-silver {
    border-top: 3px solid var(--color-gold);
    position: relative;
}

.tier-silver:hover {
    box-shadow: var(--glow-gold);
}

/* "Most Popular" badge on silver tier */
.tier-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-gold);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.tier-amount {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.tier-split {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Feature list inside tier card */
.tier-card .elementor-icon-list-item {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tier-card .elementor-icon-list-icon {
    color: var(--color-green);
}

/* Qualification tag */
.tier-qualification {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    font-size: 0.8rem;
    color: var(--text-muted);
}


/* Gallery section styles live in the GALLERY SECTION block further below */


/* ─────────────────────────────────────────────────────────────
   TALK EDGES SECTION — CHAT UI
───────────────────────────────────────────────────────────── */

.chat-window {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.chat-header {
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--space-sm) var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.chat-online-dot {
    width: 8px;
    height: 8px;
    background: var(--color-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-green);
    animation: pulse-glow 2s ease-in-out infinite;
}

.chat-messages {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-height: 320px;
    overflow-y: auto;
}

/* Scrollbar styling for chat */
.chat-messages::-webkit-scrollbar {
    width: 4px;
}
.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}
.chat-messages::-webkit-scrollbar-thumb {
    background: var(--border-card);
    border-radius: 2px;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--grad-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.chat-bubble {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
    padding: 0.5rem 0.85rem;
    max-width: 85%;
}

.chat-username {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 0.2rem;
}

.chat-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Chat input bar */
.chat-input-bar {
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-sm) var(--space-md);
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color var(--transition);
}

.chat-input:focus {
    border-color: var(--border-gold);
}

.chat-send-btn {
    background: var(--grad-red);
    border: none;
    border-radius: var(--radius-pill);
    padding: 0.5rem 1.25rem;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity var(--transition);
}

.chat-send-btn:hover {
    opacity: 0.85;
}

/* Elementor Tabs override inside chat section */
.talk-edges-section .elementor-tabs-wrapper {
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 0;
}

.talk-edges-section .elementor-tab-title {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.talk-edges-section .elementor-tab-title.elementor-active {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}


/* ─────────────────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────────────────── */

/* Primary red button */
.elementor-button.btn-primary,
.btn-primary {
    background: var(--grad-red);
    color: #fff !important;
    border: none;
    border-radius: var(--radius-pill);
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.elementor-button.btn-primary:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-red);
    opacity: 0.92;
}

/* Ghost / outline button */
.elementor-button.btn-ghost,
.btn-ghost {
    background: transparent;
    color: var(--text-primary) !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-pill);
    font-weight: 600;
    transition: border-color var(--transition), color var(--transition);
}

.elementor-button.btn-ghost:hover,
.btn-ghost:hover {
    border-color: var(--color-gold);
    color: var(--color-gold) !important;
}

/* Gold CTA button */
.elementor-button.btn-gold,
.btn-gold {
    background: var(--grad-gold);
    color: #000 !important;
    border: none;
    border-radius: var(--radius-pill);
    font-weight: 700;
    transition: transform var(--transition), box-shadow var(--transition);
}

.elementor-button.btn-gold:hover,
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
}


/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */

.elementor-location-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}

.footer-brand-tagline {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 260px;
}

/* Footer column headings */
.footer-col-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-sm);
}

/* Footer nav menu links */
.elementor-location-footer .elementor-nav-menu a {
    color: var(--text-muted) !important;
    font-size: 0.875rem;
    font-weight: 400;
    transition: color var(--transition) !important;
}

.elementor-location-footer .elementor-nav-menu a:hover {
    color: var(--color-gold) !important;
}

/* Social icon buttons */
.elementor-location-footer .elementor-social-icon {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    width: 40px;
    height: 40px;
    transition: background var(--transition), border-color var(--transition);
}

.elementor-location-footer .elementor-social-icon:hover {
    background: rgba(212, 168, 67, 0.12);
    border-color: var(--border-gold);
}

/* Copyright bar */
.footer-copyright {
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-sm) 0;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-align: center;
}


/* ─────────────────────────────────────────────────────────────
   PAGE HERO SECTION  (page.php — all non-homepage pages)
───────────────────────────────────────────────────────────── */

.page-hero-section {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    /* Default dark gradient background — replaced by inline style when image is set */
    background: linear-gradient(135deg, #0a0a0f 0%, #12121a 100%);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    padding-bottom: 60px;
    overflow: hidden;
    /* Top padding accounts for the fixed navbar (~68px) */
    padding-top: 100px;
}

/* Dark overlay so text is always readable over any background image */
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 8, 16, 0.55) 0%,
        rgba(8, 8, 16, 0.75) 60%,
        rgba(8, 8, 16, 0.92) 100%
    );
    /* Bottom red accent line */
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #e63946, #d4a843) 1;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

/* Breadcrumb */
.page-hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 18px;
}

.page-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.25s ease;
}

.page-hero-breadcrumb a:hover {
    color: var(--color-gold);
}

.page-hero-breadcrumb .breadcrumb-sep {
    opacity: 0.4;
    font-size: 1rem;
}

.page-hero-breadcrumb span:last-child {
    color: var(--color-gold);
}

/* Title */
.page-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin: 0 0 18px;
    /* Subtle gradient on the last word — achieved via span if needed */
}

/* Subtitle */
.page-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero-section {
        min-height: 260px;
        padding-top: 90px;
        padding-bottom: 40px;
    }

    .page-hero-title {
        font-size: clamp(1.6rem, 7vw, 2.5rem);
    }

    .page-hero-subtitle {
        font-size: 0.95rem;
    }
}


/* ─────────────────────────────────────────────────────────────
   RECHARGE REQUEST PAGE — page-recharge-request.php
   Two-column layout: form card (left) + trust sidebar (right)
───────────────────────────────────────────────────────────── */

.recharge-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    max-width: 900px;
    margin: 110px auto 80px;
    padding: 0 24px;
    align-items: start;
}

/* ── Form card (left) ── */
.recharge-form-card {
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 28px;
    padding: 36px 32px;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.5);
}

.recharge-form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.2;
}

.recharge-form-subtitle {
    font-size: 0.88rem;
    color: #9898b0;
    margin-bottom: 28px;
}

/* Shared form inputs — recharge page uses .form-group / .form-label / .form-control */
.recharge-form-card .form-group {
    margin-bottom: 20px;
}

.recharge-form-card .form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #e8e8f0;
    margin-bottom: 8px;
}

.recharge-form-card .form-control {
    width: 100%;
    padding: 13px 16px;
    background: rgba(15, 15, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #e8e8f0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
}

.recharge-form-card select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239898b0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 42px;
    cursor: pointer;
}

.recharge-form-card .form-control::placeholder { color: #9898b0; }

.recharge-form-card .form-control:focus {
    outline: none;
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.10);
}

/* ── Contact channel toggle ── */
.contact-toggle {
    display: flex;
    gap: 10px;
}

.contact-option {
    flex: 1;
    position: relative;
}

.contact-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.contact-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #9898b0;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.contact-option input[type="radio"]:checked + label {
    border-color: #e63946;
    color: #fff;
    background: rgba(230, 57, 70, 0.08);
}

.contact-option label:hover {
    border-color: rgba(255, 255, 255, 0.18);
    color: #e8e8f0;
}

.contact-option input[type="radio"]:disabled + label {
    opacity: 0.35;
    cursor: not-allowed;
}

/* ── Submit button ── */
.form-submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    font-size: 1rem;
    font-weight: 700;
    padding: 15px;
    box-shadow: 0 0 24px rgba(230, 57, 70, 0.35);
}

.form-privacy-note {
    text-align: center;
    font-size: 0.73rem;
    color: #9898b0;
    margin-top: 10px;
    margin-bottom: 0;
}

/* ── Trust sidebar (right) ── */
.recharge-trust-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.trust-panel {
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 18px 20px;
}

.trust-panel.green-accent {
    border-color: rgba(46, 204, 113, 0.20);
}

.trust-panel-title {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #9898b0;
    margin-bottom: 14px;
}

.trust-panel.green-accent .trust-panel-title {
    color: #2ecc71;
}

/* Steps */
.trust-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.trust-step-num {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    margin-top: 1px;
    flex-shrink: 0;
}

.trust-step-num.red   { background: #e63946; color: #fff; }
.trust-step-num.gold  { background: #d4a843; color: #000; }
.trust-step-num.green { background: #2ecc71; color: #000; }

.trust-step-text {
    font-size: 0.82rem;
    color: #d0d0e8;
    line-height: 1.5;
}

.trust-step-text strong { color: #2ecc71; }

/* Payment badges */
.trust-payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trust-payment-badge {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
}

.badge-btc  { background: rgba(247,147,26,0.10);  border: 1px solid rgba(247,147,26,0.30);  color: #f7931a; }
.badge-eth  { background: rgba(98,126,234,0.10);   border: 1px solid rgba(98,126,234,0.30);  color: #627eea; }
.badge-usdt { background: rgba(38,161,123,0.10);   border: 1px solid rgba(38,161,123,0.30);  color: #26a17b; }
.badge-bank { background: rgba(46,204,113,0.10);   border: 1px solid rgba(46,204,113,0.30);  color: #2ecc71; }

/* FAQ */
.trust-faq-item { margin-bottom: 14px; }
.trust-faq-item:last-child { margin-bottom: 0; }

.trust-faq-q {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.trust-faq-a {
    font-size: 0.78rem;
    color: #9898b0;
    line-height: 1.6;
}

/* Social proof chip */
.trust-proof-chip {
    background: rgba(46, 204, 113, 0.06);
    border: 1px solid rgba(46, 204, 113, 0.15);
    border-radius: 12px;
    padding: 14px 18px;
    text-align: center;
}

.trust-proof-main {
    color: #2ecc71;
    font-size: 0.88rem;
    font-weight: 700;
}

.trust-proof-sub {
    color: #9898b0;
    font-size: 0.73rem;
    margin-top: 3px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .recharge-form-wrapper {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-top: 90px;
    }
}

@media (max-width: 480px) {
    .recharge-form-card { padding: 24px 18px; }
    .contact-toggle     { flex-direction: column; }
    .recharge-form-wrapper { margin-top: 80px; }
}


/* ─────────────────────────────────────────────────────────────
   APPLY FOR STAKING — page-apply-staking.php
───────────────────────────────────────────────────────────── */

.apply-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

/* Header */
.apply-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.apply-form-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.apply-title-accent {
    color: #d4a843;            /* gold — matches original inline style */
}

.apply-form-subtitle {
    font-size: 0.95rem;
    color: #9898b0;
    margin: 0;
}

/* Card wrapper */
.apply-form {
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.5);
}

/* Two-column row */
.apply-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .apply-form-row { grid-template-columns: 1fr; }
    .apply-form     { padding: 28px 20px; }
}

/* Field group */
.apply-form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.apply-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #e8e8f0;
    margin-bottom: 8px;
}

.apply-form-hint {
    font-weight: 400;
    color: #9898b0;
    font-size: 0.8rem;
    display: block;
    margin-top: 2px;
}

/* Inputs / select / textarea */
.apply-form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(15, 15, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #e8e8f0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
}

select.apply-form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239898b0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 42px;
    cursor: pointer;
}

textarea.apply-form-control {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

.apply-form-control::placeholder {
    color: #9898b0;
}

.apply-form-control:focus {
    outline: none;
    border-color: #d4a843;
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.12);
}

/* Submit button */
.apply-form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #d4a843, #b8860b);
    color: #000 !important;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    box-shadow: 0 0 40px rgba(212, 168, 67, 0.25);
    margin-top: 8px;
}

.apply-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(212, 168, 67, 0.45);
    opacity: 0.92;
}

.apply-form-submit:active {
    transform: translateY(0);
}

/* Success / error notices */
.apply-notice {
    margin-top: 24px;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.apply-notice--success {
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.30);
    color: #2ecc71;
}

.apply-notice--error {
    background: rgba(230, 57, 70, 0.10);
    border: 1px solid rgba(230, 57, 70, 0.25);
    color: #e63946;
}


/* ─────────────────────────────────────────────────────────────
   FORM PAGES (Recharge Request, Apply Staking)
───────────────────────────────────────────────────────────── */

/* Elementor Pro Form widget override */
.elementor-form .elementor-field-group label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.elementor-form input[type="text"],
.elementor-form input[type="email"],
.elementor-form input[type="number"],
.elementor-form input[type="url"],
.elementor-form select,
.elementor-form textarea {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    transition: border-color var(--transition);
}

.elementor-form input:focus,
.elementor-form select:focus,
.elementor-form textarea:focus {
    border-color: var(--color-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.12);
}

/* Page hero for inner pages */
.page-hero {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
}

.page-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}


/* ─────────────────────────────────────────────────────────────
   GALLERY CPT — SINGLE PAGE HERO
───────────────────────────────────────────────────────────── */

.gallery-single-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    padding-bottom: var(--space-xl);
    background-size: cover;
    background-position: center;
}

.gallery-single-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-hero-overlay);
}

.gallery-single-hero .hero-content {
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--color-gold);
}

.breadcrumb-sep {
    opacity: 0.4;
}


/* ─────────────────────────────────────────────────────────────
   SHARED SECTION STRUCTURE
───────────────────────────────────────────────────────────── */

.section {
    padding: 120px 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(230, 57, 70, 0.08);
    border: 1px solid rgba(230, 57, 70, 0.15);
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #e63946;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #d0d0e8;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Accent span used inside titles */
.text-accent {
    color: #e63946;
}


/* ─────────────────────────────────────────────────────────────
   ABOUT SECTION
───────────────────────────────────────────────────────────── */

.about {
    background: rgba(10, 10, 10, 0.4);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%),
                rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #2ecc71;
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.about-card:hover::before { opacity: 1; }

.about-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: rgba(46, 204, 113, 0.10);
    color: #2ecc71;
    transition: transform 0.4s ease;
}

.about-card:hover .about-card-icon { transform: scale(1.1); }

.about-card-icon.icon-red   { background: rgba(230,57,70,0.10);  color: #e63946; }
.about-card-icon.icon-gold  { background: rgba(212,168,67,0.10); color: #d4a843; }
.about-card-icon.icon-green { background: rgba(46,204,113,0.10); color: #2ecc71; }
.about-card-icon.icon-blue  { background: rgba(9,132,227,0.10);  color: #0984e3; }

.about-card:has(.icon-red)::before   { background: #e63946; }
.about-card:has(.icon-gold)::before  { background: #d4a843; }

.about-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.about-card-text {
    font-size: 0.9rem;
    color: #9898b0;
    line-height: 1.7;
}

@media (max-width: 1024px) { .about-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .about-grid { grid-template-columns: 1fr; } }


/* ─────────────────────────────────────────────────────────────
   TESTIMONIALS SECTION
───────────────────────────────────────────────────────────── */

.testimonials {
    background: rgba(10, 10, 10, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.testimonial-card.featured {
    border-color: rgba(212, 168, 67, 0.30);
    box-shadow: 0 0 24px rgba(212, 168, 67, 0.07);
}

.testimonial-stars {
    color: #d4a843;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-quote {
    font-size: 0.92rem;
    color: #d0d0e8;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 20px;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-name   { font-size: 0.88rem; font-weight: 700; color: #fff; }
.testimonial-detail { font-size: 0.75rem; color: #9898b0; margin-top: 2px; }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }


/* ─────────────────────────────────────────────────────────────
   RECHARGE SECTION
───────────────────────────────────────────────────────────── */

.recharge { background: rgba(10,10,10,0.3); overflow: hidden; }

.recharge-timeline {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
    /* NO border-left here — the line comes only from .timeline-line div */
}

/* Single gradient line rendered by the HTML div — exactly one line */
.timeline-line {
    position: absolute;
    left: 24px;   /* aligns with center of the 48px step-number circle */
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #e63946, #d4a843, #2ecc71);
    border-radius: 2px;
    /* Ensure nothing else creates a second line */
    border: none;
    outline: none;
}

.timeline-step {
    display: flex;
    gap: 28px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-step:last-child { margin-bottom: 0; }

.step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e63946, #c0392b);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(230,57,70,0.25);
    position: relative;
    z-index: 1;
}

.step-content {
    background: rgba(15,15,15,0.8);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 28px 32px;
    flex: 1;
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}

.step-content:hover {
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.step-text {
    font-size: 0.92rem;
    color: #9898b0;
    line-height: 1.7;
}

.payment-methods {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(230,57,70,0.06);
    border: 1px solid rgba(230,57,70,0.12);
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #d0d0e8;
    transition: all 0.2s ease;
    cursor: default;
}

.payment-badge:hover {
    border-color: #e63946;
    color: #e63946;
    transform: translateY(-2px);
}

.payment-icon { font-size: 1.1em; }

.recharge-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    width: fit-content;
    margin-inline: auto;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}
.recharge-hint .hint-icon { color: var(--color-red); vertical-align: middle; margin-right: 6px; flex-shrink: 0; }
.recharge-hint .hint-item { display: flex; align-items: center; }
.recharge-hint .hint-item strong { color: #fff; margin-left: 4px; }
.recharge-hint .hint-divider { opacity: 0.3; }
.recharge-cta { text-align: center; margin-top: 28px; }

.btn-lg { font-size: 1.05rem; padding: 16px 40px; }

@media (max-width: 600px) {
    .recharge-timeline { padding-left: 24px; }
    .timeline-step { gap: 16px; }
    .step-content { padding: 20px; }
}


/* ─────────────────────────────────────────────────────────────
   STAKING SECTION
───────────────────────────────────────────────────────────── */

.staking { background: rgba(10,10,10,0.4); overflow: hidden; }

.staking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.staking-card {
    background: rgba(15,15,15,0.8);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 28px;
    padding: 40px 32px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}

.staking-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 16px 64px rgba(0,0,0,0.5);
}

.staking-card.featured {
    border-color: #e63946;
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(230,57,70,0.25);
}

.staking-card.featured:hover { transform: scale(1.03) translateY(-8px); }

.staking-card-glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
}

.bronze-glow { background: #cd7f32; }
.silver-glow { background: #c0c0c0; }

.staking-badge {
    position: absolute;
    top: 0;
    right: 28px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #e63946, #c0392b);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0 0 8px 8px;
}

.staking-tier {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.staking-tier.bronze { color: #cd7f32; }
.staking-tier.silver { color: #c0c0c0; }

.staking-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.staking-stakes {
    font-size: 0.9rem;
    color: #9898b0;
    margin-bottom: 24px;
}

.staking-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.staking-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #d0d0e8;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.staking-features li:last-child { border-bottom: none; }

.staking-features .check { color: #2ecc71; font-weight: 700; }

.staking-qualify {
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 24px;
}

.staking-qualify h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #d4a843;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.staking-qualify p { font-size: 0.82rem; color: #9898b0; line-height: 1.6; }

/* Outline button variant for Bronze */
.btn-outline {
    background: transparent;
    color: #d0d0e8 !important;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 9999px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    transition: all 0.4s ease;
}

.btn-outline:hover {
    border-color: rgba(255,255,255,0.35);
    color: #fff !important;
    transform: translateY(-2px);
}

.btn-block { width: 100%; text-align: center; justify-content: center; }

@media (max-width: 768px) {
    .staking-grid { grid-template-columns: 1fr; }
    .staking-card.featured { transform: none; }
}


/* ─────────────────────────────────────────────────────────────
   GALLERY SECTION
───────────────────────────────────────────────────────────── */

.gallery { background: rgba(10,10,10,0.3); }

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
    min-height: 0;
}

.gallery-item.large { grid-row: 1 / 3; }

/* Image fills the entire anchor element absolutely */
.gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 16, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 1;
    z-index: 1;
}

.gallery-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #e63946;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 9999px;
    margin-bottom: 8px;
    width: fit-content;
}

.gallery-caption { font-size: 0.9rem; color: #fff; font-weight: 500; margin: 0; }

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 260px 220px 220px;
    }
    .gallery-item.large { grid-row: auto; }
}


/* ─────────────────────────────────────────────────────────────
   TALK EDGES SECTION
───────────────────────────────────────────────────────────── */

.talkedges { background: rgba(10,10,10,0.4); }

.talkedges-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(15,15,15,0.8);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 64px rgba(0,0,0,0.5);
}

.talkedges-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.tab-btn {
    flex: 1;
    padding: 16px 24px;
    background: none;
    border: none;
    color: #9898b0;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #e63946;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.tab-btn:hover { color: #d0d0e8; background: rgba(255,255,255,0.02); }

.tab-btn.active { color: #fff; }
.tab-btn.active::after { transform: scaleX(1); }

.tab-icon { font-size: 1.2em; }

.chat-panel { display: none; flex-direction: column; }
.chat-panel.active { display: flex; }

.chat-messages {
    padding: 20px;
    max-height: 450px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-messages::-webkit-scrollbar       { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.06); border-radius: 4px; }

.chat-msg {
    display: flex;
    gap: 12px;
    animation: msgSlideIn 0.4s cubic-bezier(0.23,1,0.32,1);
}

@keyframes msgSlideIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.msg-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.msg-body {
    flex: 1;
    background: rgba(15,15,20,0.6);
    border-radius: 12px;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.06);
}

.msg-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: #e63946;
    display: block;
    margin-bottom: 4px;
}

.msg-text {
    font-size: 0.9rem;
    color: #d0d0e8;
    line-height: 1.6;
    margin: 0;
}

.msg-time {
    font-size: 0.72rem;
    color: #9898b0;
    margin-top: 6px;
    display: block;
}

.chat-input-area {
    display: flex;
    gap: 10px;
    padding: 16px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.01);
}

.chat-input {
    flex: 1;
    padding: 12px 18px;
    background: rgba(15,15,20,0.6);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 9999px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.chat-input::placeholder { color: #9898b0; }
.chat-input:focus { border-color: #e63946; }

.chat-send {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e63946, #c0392b);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 0 40px rgba(230,57,70,0.25);
}

.chat-send:hover {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(230,57,70,0.45);
}


/* ─────────────────────────────────────────────────────────────
   UTILITY CLASSES
───────────────────────────────────────────────────────────── */

.text-gold     { color: var(--color-gold); }
.text-red      { color: var(--color-red); }
.text-green    { color: var(--color-green); }
.text-muted    { color: var(--text-muted); }
.text-primary  { color: var(--text-primary); }

.font-outfit   { font-family: 'Outfit', sans-serif; }
.font-rajdhani { font-family: 'Rajdhani', sans-serif; }

.section-dark {
    background: var(--bg-primary);
}

.section-alt {
    background: var(--bg-secondary);
}

/* Divider line */
.divider {
    width: 60px;
    height: 3px;
    background: var(--grad-red);
    border-radius: var(--radius-pill);
    margin: var(--space-sm) auto;
}


/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .hero-stat-value {
        font-size: 1.6rem;
    }

    .tier-card {
        margin-bottom: var(--space-md);
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl:  2.5rem;
        --space-2xl: 4rem;
    }

    .badge-powered {
        font-size: 0.72rem;
    }

    .hero-stat-value {
        font-size: 1.4rem;
    }

    .testimonial-card.featured {
        order: -1;
    }


    .chat-messages {
        max-height: 240px;
    }
}

@media (max-width: 480px) {
    .payment-badges {
        gap: 0.5rem;
    }

    .payment-badge {
        font-size: 0.72rem;
        padding: 0.4rem 0.75rem;
    }

    .tier-amount {
        font-size: 2rem;
    }
}
