/* ============================================
   💎 RANVYX STORE THEME SYSTEM
   100% Authentic Match for ranvyxstore.com
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700;800;900&family=Orbitron:wght@400;600;700;800;900&family=Rajdhani:wght@400;500;600;700&family=Space+Mono:wght@400;700&family=Prompt:wght@300;400;500;600;700;800&family=Sarabun:wght@300;400;500;600;700&display=swap');

:root {
    --bg-body: #050508;
    --bg-card: #0c0d12;
    --bg-card-alt: #101118;
    --bg-nav: rgba(10, 11, 16, 0.88);
    
    --primary: #6a80a0;
    --primary-rgb: 106, 128, 160;
    --primary-light: #9fabbd;
    --secondary: #4b5d78;
    --secondary-rgb: 75, 93, 120;
    
    --accent-glow: rgba(106, 128, 160, 0.25);
    --border-color: rgba(106, 128, 160, 0.2);
    --border-card: rgba(255, 255, 255, 0.08);
    
    --text-main: #9ca3af;
    --text-heading: #ffffff;
    --text-muted: #6b7280;
    --disc-color: #5865F2;
    --font-main: 'Prompt', 'Kanit', sans-serif;
    --font-cyber: 'Orbitron', 'Rajdhani', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-body) !important;
    color: var(--text-main) !important;
    font-family: var(--font-main) !important;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

@media (hover: hover) and (pointer: fine) {
    *, *::before, *::after, html, body, a, button, input, select, textarea, [role="button"], .btn, .modal, .modal-backdrop, .modal-dialog, .modal-content, .offcanvas, .swal2-container, .swal2-popup {
        cursor: none !important;
    }
}

@media (hover: none) or (pointer: coarse) {
    #cx-dot, #cx-ring {
        display: none !important;
    }
}

.store-shell {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ══════════════════════════════════════════
   CUSTOM CURSOR (DOT + RING HALO WITH GLOW)
══════════════════════════════════════════ */
#cx-dot {
    position: fixed;
    left: 0;
    top: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #facc15;
    pointer-events: none !important;
    z-index: 2147483647 !important; /* Highest possible 32-bit z-index */
    box-shadow: 0 0 8px #facc15, 0 0 16px rgba(250, 204, 21, 0.9);
    transform: translate3d(-50%, -50%, 0);
    will-change: transform;
    transition: opacity 0.2s ease;
}

#cx-ring {
    position: fixed;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(250, 204, 21, 0.75);
    box-shadow: 0 0 14px rgba(250, 204, 21, 0.4);
    pointer-events: none !important;
    z-index: 2147483646 !important;
    transform: translate3d(-50%, -50%, 0);
    will-change: transform;
    transition: width 0.25s ease-out, height 0.25s ease-out, border-color 0.2s, background 0.2s, box-shadow 0.2s, opacity 0.2s;
}

html.cx-hot #cx-ring {
    width: 48px;
    height: 48px;
    border-color: #facc15;
    background: rgba(250, 204, 21, 0.15);
    box-shadow: 0 0 22px rgba(250, 204, 21, 0.6);
}

/* Background Cyber Grid (Gold Luxury Theme) */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(234, 179, 8, 0.085) 1px, transparent 1px),
        linear-gradient(90deg, rgba(234, 179, 8, 0.085) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 130% 100% at 50% 30%, black 35%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse 130% 100% at 50% 30%, black 35%, transparent 90%);
    pointer-events: none;
    z-index: 0;
}

/* Ambient Radial Glows */
.ambient-glow-1 {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(234, 179, 8, 0.09) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ══════════════════════════════════════════
   GATE HERO SCREEN (SCREENSHOT 6)
══════════════════════════════════════════ */
.gate-hero-section {
    min-height: 82vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 40px 20px 60px;
}

.hero-canvas-constellation {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.gate-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.gate-hero-logo-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 18px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gate-hero-logo-img {
    width: 84px;
    height: 84px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 0 20px rgba(106, 128, 160, 0.6));
    animation: rxFloat 3s ease-in-out infinite alternate;
}

@keyframes rxFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}

.gate-hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(20, 22, 32, 0.8);
    border: 1px solid rgba(106, 128, 160, 0.35);
    color: #94a3b8;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
    font-family: var(--font-cyber);
}

.gate-hero-pill-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: #60a5fa;
    box-shadow: 0 0 8px #60a5fa;
}

.gate-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 3px;
    font-family: var(--font-cyber);
    margin-bottom: 6px;
    text-shadow: 0 0 30px rgba(106, 128, 160, 0.4);
}

.gate-hero-sub {
    font-size: 0.88rem;
    color: #64748b;
    letter-spacing: 2.5px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-cyber);
    margin-bottom: 16px;
}

.gate-hero-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.gate-hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-gate-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #090a10;
    color: #ffffff !important;
    font-family: var(--font-cyber);
}

.btn-gate-discord {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2), rgba(88, 101, 242, 0.08));
    border-color: rgba(88, 101, 242, 0.45);
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.25);
}

.btn-gate-discord:hover {
    background: #5865F2;
    border-color: #5865F2;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.5);
}

.btn-gate-buy {
    background: #0d0e16;
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-gate-buy:hover {
    background: #161824;
    border-color: rgba(106, 128, 160, 0.6);
    transform: translateY(-2px);
}

.btn-gate-login {
    background: #e2e8f0;
    color: #050508 !important;
    border-color: #ffffff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.35);
}

.btn-gate-login:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.6);
}

.btn-gate-browse {
    background: #0d0e16;
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-gate-browse:hover {
    background: #161824;
    border-color: rgba(106, 128, 160, 0.6);
    transform: translateY(-2px);
}

.gate-register-link {
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.gate-register-link:hover {
    color: #94a3b8;
    text-decoration: underline;
}

/* ══════════════════════════════════════════
   NAVBAR (RANVYX STORE FLOATING NAVBAR)
/* ══════════════════════════════════════════
   TOP GOLDEN RUNNING MARQUEE TICKER (DESTINY STYLE)
══════════════════════════════════════════ */
.top-gold-marquee-bar {
    width: 100%;
    background: linear-gradient(90deg, #9a6f1d, #d4a74a, #facc15, #d4a74a, #9a6f1d);
    color: #050508;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 6px 0;
    overflow: hidden;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(250, 204, 21, 0.35);
    letter-spacing: 0.5px;
}

.top-gold-marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: topGoldMarquee 28s linear infinite;
}

.top-gold-marquee-group {
    display: flex;
    gap: 36px;
    padding-right: 36px;
    flex-shrink: 0;
    white-space: nowrap;
}

.top-gold-marquee-group span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

@keyframes topGoldMarquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* ══════════════════════════════════════════
   FLOATING NAVBAR (DESTINY SHOP STYLE)
══════════════════════════════════════════ */
.navbar-ranvyx-wrap {
    position: sticky;
    top: 14px;
    z-index: 999;
    padding: 0 16px;
    max-width: 1320px;
    margin: 12px auto 24px;
}

.navbar-ranvyx {
    position: relative;
    background: rgba(8, 9, 14, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 999px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(250, 204, 21, 0.08);
    overflow: hidden;
    z-index: 1;
}

/* Dual Separated Gold Border Beam (Full Sweep from End to End) */
.navbar-ranvyx::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2200px;
    height: 2200px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(250, 204, 21, 0.15) 15deg,
        #facc15 30deg,
        #ffffff 45deg,
        #ca8a04 60deg,
        transparent 75deg,
        transparent 180deg,
        rgba(250, 204, 21, 0.15) 195deg,
        #facc15 210deg,
        #ffffff 225deg,
        #ca8a04 240deg,
        transparent 255deg,
        transparent 360deg
    );
    animation: rotateWideNavbarBeam 6s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes rotateWideNavbarBeam {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.navbar-ranvyx::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    background: rgba(8, 9, 14, 0.96);
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
}

.navbar-ranvyx > * {
    position: relative;
    z-index: 1;
}

.brand-ranvyx {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff !important;
    font-weight: 800;
    letter-spacing: 1.5px;
    font-family: var(--font-cyber);
    font-size: 1.05rem;
}

.brand-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 0 8px rgba(250, 204, 21, 0.5));
}

/* Center Pill Links */
.nav-pill-group {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(14, 15, 22, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    padding: 4px 8px;
}

.nav-pill-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #94a3b8 !important;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-pill-link i {
    font-size: 0.85rem;
}

.nav-pill-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.06);
}

.nav-pill-link.active {
    background: rgba(250, 204, 21, 0.15);
    border: 1px solid rgba(250, 204, 21, 0.4);
    color: #facc15 !important;
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.2);
}

/* Nav Right (Destiny Shop Buttons) */
.nav-right-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-top-pill-contact {
    background: #0d0e14;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #cbd5e1 !important;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 6px 16px;
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-top-pill-contact:hover {
    background: #181924;
    border-color: rgba(250, 204, 21, 0.5);
    color: #facc15 !important;
}

.btn-top-pill-reg {
    background: #ffffff;
    color: #050508 !important;
    font-weight: 800;
    font-size: 0.82rem;
    padding: 6px 18px;
    border-radius: 999px;
    text-decoration: none;
    border: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.btn-top-pill-reg:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}

.btn-top-pill-login {
    background: #0d0e14;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 6px 16px;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.btn-top-pill-login:hover {
    background: #181924;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.nav-balance-pill {
    background: #0d0e14;
    border: 1px solid rgba(250, 204, 21, 0.35);
    border-radius: 999px;
    padding: 5px 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #facc15 !important;
    cursor: pointer !important;
    transition: all 0.2s ease;
}

.nav-balance-pill:hover {
    background: #181924;
    border-color: #facc15;
    box-shadow: 0 0 12px rgba(250, 204, 21, 0.3);
}

.nav-user-badge {
    background: rgba(20, 22, 30, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 4px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer !important;
    transition: all 0.2s ease;
}

.nav-user-badge:hover {
    background: #181924;
    border-color: rgba(250, 204, 21, 0.5);
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.25);
}

.nav-user-member-tag {
    background: rgba(250, 204, 21, 0.12);
    border: 1px solid rgba(250, 204, 21, 0.4);
    color: #facc15;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 999px;
    font-family: var(--font-cyber);
}

/* ══════════════════════════════════════════
   COMPACT CYBER GOLD MUSIC PLAYER DOCK
══════════════════════════════════════════ */
.store-music-dock {
    position: fixed;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 9999;
    width: min(220px, calc(100vw - 2.5rem));
    pointer-events: auto;
    cursor: pointer;
    border-radius: 14px;
    background: #08090d;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.85), 0 0 20px rgba(250, 204, 21, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.store-music-dock:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.9), 0 0 25px rgba(250, 204, 21, 0.25);
}

/* Rotating Gold Border Beam on Mini Music Dock */
.store-music-dock::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(250, 204, 21, 0.15) 15deg,
        #facc15 35deg,
        #ffffff 45deg,
        #ca8a04 60deg,
        transparent 80deg,
        transparent 180deg,
        rgba(250, 204, 21, 0.15) 195deg,
        #facc15 215deg,
        #ffffff 225deg,
        #ca8a04 240deg,
        transparent 260deg,
        transparent 360deg
    );
    animation: rotateGoldBorderBeam 4s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.store-music-dock-inner {
    position: relative;
    z-index: 1;
    padding: 8px 12px;
    margin: 1.5px;
    border-radius: 12.5px;
    background: radial-gradient(circle at 80% 20%, rgba(250, 204, 21, 0.06), transparent 70%), rgba(8, 9, 14, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.store-music-dock-head {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 3px;
}

.store-music-dock-icon {
    font-size: 0.82rem;
    color: #facc15;
    filter: drop-shadow(0 0 6px rgba(250, 204, 21, 0.7));
}

.store-music-dock-title {
    font-family: var(--font-cyber);
    font-weight: 700;
    font-size: 0.72rem;
    color: #eab308;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex: 1;
}

.store-music-dock-live {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 12px;
    opacity: 0.35;
}

.store-music-dock-live span {
    display: block;
    width: 2.5px;
    border-radius: 2px;
    background: linear-gradient(180deg, #fef08a, #ca8a04);
    height: 3px;
}

.store-music-dock.playing .store-music-dock-live {
    opacity: 1;
}

.store-music-dock.playing .store-music-dock-live span:nth-child(1) { animation: smBar .8s ease-in-out infinite; }
.store-music-dock.playing .store-music-dock-live span:nth-child(2) { animation: smBar .8s ease-in-out .15s infinite; }
.store-music-dock.playing .store-music-dock-live span:nth-child(3) { animation: smBar .8s ease-in-out .3s infinite; }

@keyframes smBar {
    0%, 100% { height: 3px; }
    50% { height: 11px; }
}

.store-music-dock-track {
    font-size: 0.76rem;
    color: #f8fafc;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}

.store-music-dock-vol {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: #94a3b8;
    margin-bottom: 0;
    cursor: default;
}

.store-music-dock-vol input[type="range"] {
    flex: 1;
    height: 4px;
    accent-color: #facc15;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.store-music-dock-vol input[type="range"]:hover {
    background: rgba(250, 204, 21, 0.3);
}

/* ══════════════════════════════════════════
   FLOATING DISCORD BUTTON (LUXURY GOLD CYBER THEME)
══════════════════════════════════════════ */
.discord-floating-btn {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 9999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fef08a 0%, #facc15 45%, #ca8a04 100%);
    color: #08090d !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(250, 204, 21, 0.55), 0 0 20px rgba(250, 204, 21, 0.35);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.discord-floating-btn:hover {
    transform: translateY(-4px) scale(1.1);
    background: linear-gradient(135deg, #ffffff 0%, #fef08a 30%, #facc15 100%);
    box-shadow: 0 12px 35px rgba(250, 204, 21, 0.8), 0 0 30px rgba(250, 204, 21, 0.6);
    color: #000000 !important;
}

.discord-floating-btn i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.discord-floating-btn:hover i {
    transform: scale(1.08) rotate(6deg);
}

/* ══════════════════════════════════════════
   HERO BANNER SHOWCASE (DESTINY STYLE)
══════════════════════════════════════════ */
.container-xl,
.container-xxl,
.store-shell {
    max-width: 1320px !important;
    width: 100% !important;
}

.hero-showcase-container {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 2.35 / 1;
    margin: 0 auto 30px !important;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #090a0f;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(106, 128, 160, 0.05);
}

.hero-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.hero-slide-item {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px;
}

/* ══════════════════════════════════════════
   2 STATS CARDS (DESTINY SHOP STYLE)
══════════════════════════════════════════ */
.stats-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

@media (max-width: 768px) {
    .stats-grid-2 {
        grid-template-columns: 1fr;
    }
}

.ranvyx-stat-card-v2 {
    background: #08090d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.25s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.ranvyx-stat-card-v2:hover {
    border-color: rgba(250, 204, 21, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(250, 204, 21, 0.1);
}

.stat-card-title-v2 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #cbd5e1;
    margin-bottom: 6px;
    font-family: var(--font-main);
}

.stat-card-number-v2 {
    font-size: 1.65rem;
    font-weight: 800;
    color: #facc15;
    font-family: var(--font-cyber);
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.stat-card-unit-v2 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-left: 6px;
    font-family: var(--font-main);
}

.stat-card-icon-v2 {
    font-size: 2.2rem;
    color: #eab308;
    opacity: 0.7;
    filter: drop-shadow(0 0 8px rgba(234, 179, 8, 0.4));
}

/* ══════════════════════════════════════════
   LIVE PURCHASE FEED (SCREENSHOT 1)
══════════════════════════════════════════ */
.section-eyebrow {
    font-family: var(--font-cyber);
    font-size: 0.78rem;
    color: #64748b;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.section-main-heading {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    font-family: var(--font-main);
}

.section-subtext {
    color: #71717a;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

/* ══════════════════════════════════════════
   LIVE FEED INFINITE MARQUEE TICKER (EXACT MATCH SCREENSHOT 2)
══════════════════════════════════════════ */
.live-feed-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 6px 0 16px;
    mask-image: linear-gradient(90deg, transparent 0, #000 2.5%, #000 97.5%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 2.5%, #000 97.5%, transparent 100%);
}

.live-feed-marquee-wrapper {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: ranvyxFeedMarquee 26s linear infinite;
}

.live-feed-marquee-wrapper:hover {
    animation-play-state: paused;
}

.live-feed-track-group {
    display: flex;
    gap: 14px;
    padding-right: 14px;
    flex-shrink: 0;
}

@keyframes ranvyxFeedMarquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.purchase-feed-card {
    flex: 0 0 310px;
    width: 310px;
    min-height: 104px;
    display: flex;
    align-items: stretch;
    background: #090a0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.purchase-feed-card:hover {
    border-color: rgba(106, 128, 160, 0.45);
    background: #0d0f17;
    transform: translateY(-2px);
}

.purchase-feed-thumb {
    flex: 0 0 94px;
    position: relative;
    overflow: hidden;
    background: #141520;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purchase-feed-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.purchase-feed-body {
    flex: 1;
    min-width: 0;
    padding: 0.65rem 0.85rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.15rem;
}

.purchase-feed-user {
    font-family: var(--font-cyber);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.purchase-feed-product {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.purchase-feed-price {
    font-family: var(--font-cyber);
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: 0.02em;
    margin-top: 0.05rem;
}

.purchase-feed-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem;
    margin-top: 0.25rem;
}

.purchase-feed-date {
    font-size: 0.68rem;
    color: #64748b;
    white-space: nowrap;
}

.purchase-feed-tag {
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.45);
    background: rgba(34, 197, 94, 0.1);
    white-space: nowrap;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-feed-details {
    overflow: hidden;
}

.live-feed-buyer {
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-feed-product {
    font-size: 0.74rem;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-feed-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.live-feed-tag {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.live-feed-time {
    font-size: 0.64rem;
    color: #52525b;
}

/* ══════════════════════════════════════════
   CATEGORY CARDS (SCREENSHOT 2)
══════════════════════════════════════════ */
.cat-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .cat-grid-2x2 {
        grid-template-columns: 1fr;
    }
}

.ranvyx-cat-card {
    position: relative;
    background: #08090d;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    z-index: 1;
}

/* Rotating Electric Gold Gradient for Categories */
.ranvyx-cat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(250, 204, 21, 0.1) 15deg,
        #facc15 35deg,
        #ffffff 45deg,
        #ca8a04 60deg,
        transparent 80deg,
        transparent 180deg,
        rgba(250, 204, 21, 0.1) 195deg,
        #facc15 215deg,
        #ffffff 225deg,
        #ca8a04 240deg,
        transparent 260deg,
        transparent 360deg
    );
    animation: rotateGoldBorderBeam 3.8s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.ranvyx-cat-card::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    background: #08090d;
    border-radius: 14.5px;
    pointer-events: none;
    z-index: 0;
}

.ranvyx-cat-card > * {
    position: relative;
    z-index: 1;
}

.ranvyx-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.9), 0 0 25px rgba(250, 204, 21, 0.3);
}

.ranvyx-cat-banner {
    width: 100%;
    aspect-ratio: 2.3 / 1;
    overflow: hidden;
    position: relative;
    background: #0d0e14;
    z-index: 1;
}

.ranvyx-cat-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ranvyx-cat-card:hover .ranvyx-cat-banner img {
    transform: scale(1.04);
}

.ranvyx-cat-footer-v2 {
    padding: 14px 18px;
    background: #08080c;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.ranvyx-cat-title-v2 {
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-main);
    letter-spacing: 0.2px;
}

.ranvyx-cat-des-v2 {
    font-size: 0.8rem;
    color: #94a3b8;
}

.ranvyx-cat-count-badge {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 600;
}

.cat-pill-gold {
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.35);
    color: #fef08a;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-view-all-cats {
    background: #0d0e14;
    border: 1px solid rgba(234, 179, 8, 0.35);
    color: #facc15 !important;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-view-all-cats:hover {
    background: #181a24;
    border-color: #facc15;
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.3);
    color: #ffffff !important;
}

/* ══════════════════════════════════════════
   WHEEL SPIN ROULETTE (SCREENSHOT 3)
══════════════════════════════════════════ */
.wheel-page-container {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.wheel-action-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.wheel-pill-badge {
    background: #0d0e14;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 999px;
}

.wheel-stage {
    position: relative;
    width: 380px;
    height: 380px;
    margin: 0 auto 30px;
}

@media (max-width: 480px) {
    .wheel-stage {
        width: 300px;
        height: 300px;
    }
}

.wheel-pointer {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 24px solid #ffffff;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8));
    z-index: 10;
}

.wheel-canvas-disc {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.9), 0 0 20px rgba(106, 128, 160, 0.2);
    border: 6px solid #272730;
    transition: transform 5s cubic-bezier(0.15, 0.9, 0.2, 1);
}

.wheel-center-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #0f1016;
    border: 3px solid #33333f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-family: var(--font-cyber);
    color: #ffffff;
    font-size: 0.95rem;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0,0,0,0.8);
    z-index: 5;
}

.btn-wheel-spin {
    background: #0d0e14;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 10px 36px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 36px;
}

.btn-wheel-spin:hover {
    background: #161822;
    border-color: rgba(106, 128, 160, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(106, 128, 160, 0.25);
}

.wheel-prizes-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.wheel-prize-card {
    background: #08090d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 140px;
}

.wheel-prize-thumb {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    object-fit: cover;
    background: #141520;
}

.wheel-prize-info {
    text-align: left;
    line-height: 1.2;
}

.wheel-prize-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffffff;
}

.wheel-prize-stock {
    font-size: 0.68rem;
    color: #71717a;
}

/* ══════════════════════════════════════════
   TOPUP GATEWAY & FAQ (SCREENSHOT 4)
══════════════════════════════════════════ */
.topup-channels-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .topup-channels-2 {
        grid-template-columns: 1fr;
    }
}

.topup-box-card {
    background: #08090d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none !important;
}

.topup-box-card:hover {
    border-color: var(--gold-primary, #facc15);
    background: radial-gradient(circle at top center, rgba(250, 204, 21, 0.08) 0%, #0c0d14 70%);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(250, 204, 21, 0.2);
}

.topup-box-icon-angpao {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fef08a;
    font-size: 1.5rem;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.topup-box-icon-slip {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #1e293b;
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.topup-box-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2px;
}

.topup-box-sub {
    font-size: 0.85rem;
    color: #71717a;
    margin-bottom: 16px;
}

.topup-fee-badge-red {
    font-size: 0.76rem;
    color: #ef4444;
    font-weight: 700;
}

.topup-fee-badge-green {
    font-size: 0.76rem;
    color: #22c55e;
    font-weight: 700;
}

/* FAQ Layout */
.topup-faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 30px;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .topup-faq-layout {
        grid-template-columns: 1fr;
    }
}

.btn-faq-discord {
    background: #0c0d14;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 14px;
}

.btn-faq-discord:hover {
    background: #141622;
    border-color: rgba(88, 101, 242, 0.6);
}

.faq-accordion-item {
    background: #08090d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-accordion-head {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
    user-select: none;
}

.faq-accordion-body {
    padding: 0 18px 16px;
    font-size: 0.84rem;
    color: #94a3b8;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 12px;
}

.faq-tag-pill {
    background: rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
    font-size: 0.68rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 6px;
    display: inline-block;
    margin-top: 8px;
}

/* ══════════════════════════════════════════
   PURCHASE HISTORY (SCREENSHOT 5)
══════════════════════════════════════════ */
.buyhis-container {
    max-width: 860px;
    margin: 0 auto 50px;
}

.buyhis-search-bar {
    max-width: 280px;
    margin: 0 0 24px auto;
    position: relative;
}

.buyhis-search-bar input {
    width: 100%;
    background: #0b0c12 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    padding: 8px 14px !important;
    font-size: 0.85rem !important;
    color: #ffffff !important;
}

.empty-history-box {
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
}

.empty-history-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.empty-history-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #cbd5e1;
}

.pagination-ranvyx {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 20px;
}

.btn-page-ranvyx {
    background: #0b0c12;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
}

/* ══════════════════════════════════════════
   FOOTER (RANVYX STORE EXACT MATCH)
══════════════════════════════════════════ */
.footer-ranvyx {
    margin-top: 80px;
    padding: 40px 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: #030306;
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 1.5px;
    font-family: var(--font-cyber);
    font-size: 1.15rem;
    margin-bottom: 18px;
}

.footer-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-social-a {
    color: #94a3b8 !important;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--font-cyber);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.footer-social-a:hover {
    color: #ffffff !important;
}

.footer-copyright-text {
    font-size: 0.75rem;
    color: #52525b;
    font-family: var(--font-cyber);
    letter-spacing: 1px;
}

/* ══════════════════════════════════════════
   AUTH MODAL & 2-COLUMN SPLIT CARD (SCREENSHOT 7 & 8)
══════════════════════════════════════════ */
.auth-split-card {
    max-width: 900px;
    margin: 20px auto 40px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(106, 128, 160, 0.28);
    background: linear-gradient(165deg, rgba(12, 14, 20, 0.98), rgba(6, 8, 12, 0.99));
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 40px rgba(106, 128, 160, 0.15);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    position: relative;
}

@media (max-width: 768px) {
    .auth-split-card {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════
   360° 3D CELESTIAL ROTATING ORBIT AROUND LOGO
══════════════════════════════════════════ */
.auth-aside,
.auth-aside-celestial {
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(234, 179, 8, 0.12) 0%, #06070b 72%);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .auth-aside,
    .auth-aside-celestial {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 30px 20px;
    }
}

.auth-celestial-wrap {
    position: relative;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 28px;
    perspective: 800px;
}

/* 360° Rotating Beam Ring 1 (Outer Flat Arc) */
.auth-orbit-ring.ring-1 {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.15);
    animation: rotate360 20s linear infinite;
}

/* 360° Rotating Glowing Conic Light Arc 2 */
.auth-orbit-ring.ring-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    padding: 1.5px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(250, 204, 21, 0.2) 20deg,
        #ffffff 45deg,
        #facc15 65deg,
        #ca8a04 90deg,
        transparent 120deg,
        transparent 180deg,
        rgba(250, 204, 21, 0.2) 200deg,
        #ffffff 225deg,
        #facc15 245deg,
        #ca8a04 270deg,
        transparent 300deg,
        transparent 360deg
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    filter: drop-shadow(0 0 8px #facc15);
    animation: rotate360 4.5s linear infinite;
}

/* 360° 3D Tilted Orbital Ellipse Ring 3 */
.auth-orbit-ring.ring-3 {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1.5px dashed rgba(250, 204, 21, 0.6);
    box-shadow: 0 0 25px rgba(250, 204, 21, 0.35);
    transform: rotateX(68deg) rotateY(18deg);
    animation: rotate3dOrbit 6s linear infinite;
}

.orbit-node {
    position: absolute;
    color: #facc15;
    font-size: 0.85rem;
    filter: drop-shadow(0 0 8px rgba(250, 204, 21, 0.95));
}

.node-1 { top: 6px; left: 50%; transform: translateX(-50%); color: #ffffff; }
.node-2 { bottom: 20px; right: 20px; }
.node-3 { top: 55px; left: 10px; font-size: 0.7rem; color: #ffffff; }
.node-4 { top: 18px; right: 28px; font-size: 0.75rem; }
.node-5 { bottom: 18px; left: 32px; font-size: 0.75rem; }

@keyframes rotate360 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotate3dOrbit {
    0% { transform: rotateX(68deg) rotateY(18deg) rotateZ(0deg); }
    100% { transform: rotateX(68deg) rotateY(18deg) rotateZ(360deg); }
}

/* Center Suspended Logo Core */
.auth-celestial-core {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #08090e 60%, rgba(202, 138, 4, 0.4) 100%);
    border: 1.5px solid rgba(250, 204, 21, 0.4);
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.95), 0 0 30px rgba(250, 204, 21, 0.45), inset 0 0 15px rgba(250, 204, 21, 0.2);
    position: relative;
    z-index: 2;
    animation: corePulseAura 3s ease-in-out infinite alternate;
}

@keyframes corePulseAura {
    0% {
        box-shadow: 0 0 35px rgba(0, 0, 0, 0.95), 0 0 20px rgba(250, 204, 21, 0.35), inset 0 0 10px rgba(250, 204, 21, 0.15);
        border-color: rgba(250, 204, 21, 0.3);
    }
    100% {
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.98), 0 0 40px rgba(250, 204, 21, 0.65), inset 0 0 20px rgba(250, 204, 21, 0.35);
        border-color: rgba(254, 240, 138, 0.8);
    }
}

.auth-celestial-logo {
    width: 82px;
    height: 82px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(250, 204, 21, 0.75));
    animation: floatCelestialLogo 3.5s ease-in-out infinite alternate;
}

@keyframes floatCelestialLogo {
    0% { transform: translateY(-4px) scale(0.97); }
    100% { transform: translateY(4px) scale(1.03); }
}

.auth-aside-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
    z-index: 3;
}

.btn-auth-aside-shop {
    background: linear-gradient(135deg, #e5b958, #b88728);
    color: #08090d !important;
    font-weight: 800;
    font-size: 0.82rem;
    padding: 8px 18px;
    border-radius: 10px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.35);
    transition: all 0.2s ease;
}

.btn-auth-aside-shop:hover {
    background: linear-gradient(135deg, #fef08a, #ca8a04);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(250, 204, 21, 0.55);
}

.btn-auth-aside-contact {
    background: #0d0e14;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 8px 18px;
    border-radius: 10px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.btn-auth-aside-contact:hover {
    background: #181924;
    border-color: rgba(250, 204, 21, 0.5);
    color: #facc15 !important;
    transform: translateY(-2px);
}

.auth-perk-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.86rem;
    color: #cbd5e1;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.auth-perk-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #94a3b8;
    box-shadow: 0 0 8px #94a3b8;
    flex-shrink: 0;
}

.auth-panel {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

@media (max-width: 768px) {
    .auth-panel {
        padding: 30px 24px;
    }
}

.auth-modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    text-decoration: none !important;
}

.auth-modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.auth-header-title {
    font-family: var(--font-cyber);
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.auth-header-title span {
    color: #94a3b8;
}

.auth-header-sub {
    font-size: 0.84rem;
    color: #64748b;
    margin-bottom: 20px;
}

/* Tabs Pill Switcher */
.auth-tabs-wrap {
    background: #0d0e14;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 4px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-bottom: 24px;
}

.auth-tab-pill {
    padding: 8px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    font-family: var(--font-cyber);
    border: none;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.auth-tab-pill.active {
    background: #ffffff;
    color: #050508 !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Input Fields */
.auth-input-group {
    margin-bottom: 16px;
}

.auth-label-title {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 6px;
    font-family: var(--font-cyber);
}

.auth-custom-input {
    width: 100%;
    background: #090a0f !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    font-size: 0.88rem !important;
    color: #ffffff !important;
    outline: none !important;
    transition: border-color 0.2s ease;
}

.auth-custom-input:focus {
    border-color: rgba(106, 128, 160, 0.8) !important;
    box-shadow: 0 0 12px rgba(106, 128, 160, 0.25) !important;
}

.auth-custom-input::placeholder {
    color: #475569 !important;
}

.auth-submit-btn {
    width: 100%;
    background: #ffffff;
    color: #050508 !important;
    font-weight: 800;
    font-size: 0.9rem;
    font-family: var(--font-cyber);
    letter-spacing: 1px;
    padding: 12px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
    margin-top: 10px;
    margin-bottom: 16px;
}

/* Global Auth / User Modal Overlay */
.auth-modal-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 100000 !important;
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
}

.auth-modal-overlay.active {
    display: flex !important;
}

/* ══════════════════════════════════════════
   PRODUCTS GRID & PRODUCT CARD (4 COLUMNS)
══════════════════════════════════════════ */
.products-grid-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

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

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

@media (max-width: 480px) {
    .products-grid-home {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════
   CLEAN ELECTRIC GOLD BORDER BEAM (CONSTRAINED TO CARD BORDER)
══════════════════════════════════════════ */
.ranvyx-prod-card {
    position: relative;
    background: #090a0f;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
    z-index: 1;
}

/* Rotating Electric Gold Gradient */
.ranvyx-prod-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(250, 204, 21, 0.1) 15deg,
        #facc15 35deg,
        #ffffff 45deg,
        #ca8a04 60deg,
        transparent 80deg,
        transparent 180deg,
        rgba(250, 204, 21, 0.1) 195deg,
        #facc15 215deg,
        #ffffff 225deg,
        #ca8a04 240deg,
        transparent 260deg,
        transparent 360deg
    );
    animation: rotateGoldBorderBeam 3.5s linear infinite;
    pointer-events: none;
    z-index: 0;
}

/* Inner Background Mask to create clean 1.5px border */
.ranvyx-prod-card::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    background: #090a0f;
    border-radius: 14.5px;
    pointer-events: none;
    z-index: 0;
}

@keyframes rotateGoldBorderBeam {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.ranvyx-prod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(250, 204, 21, 0.4), 0 16px 40px rgba(0, 0, 0, 0.95);
}

.ranvyx-prod-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: #12131c;
    border-top-left-radius: 14.5px;
    border-top-right-radius: 14.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1;
}

.ranvyx-prod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

/* ══════════════════════════════════════════
   CELESTIAL 360° HOVER OVERLAY (EXACT MATCH IMAGE)
══════════════════════════════════════════ */
.prod-hover-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(12, 13, 18, 0.88) 0%, rgba(5, 6, 10, 0.95) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
    pointer-events: none;
}

.ranvyx-prod-card:hover .prod-hover-overlay,
.ranvyx-cat-card:hover .prod-hover-overlay {
    opacity: 1;
    visibility: visible;
}

.prod-celestial-orbit-wrap {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 600px;
    transform: scale(0.7);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ranvyx-prod-card:hover .prod-celestial-orbit-wrap,
.ranvyx-cat-card:hover .prod-celestial-orbit-wrap {
    transform: scale(1);
}

/* Orbit Ring 1 (Outer circle with star nodes) */
.prod-orbit-ring.ring-1 {
    position: absolute;
    width: 135px;
    height: 135px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.15);
    animation: rotate360 16s linear infinite;
}

/* Orbit Ring 2 (Rotating Golden Light Beam) */
.prod-orbit-ring.ring-2 {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    padding: 1.5px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(250, 204, 21, 0.2) 20deg,
        #ffffff 45deg,
        #facc15 65deg,
        #ca8a04 90deg,
        transparent 120deg,
        transparent 180deg,
        rgba(250, 204, 21, 0.2) 200deg,
        #ffffff 225deg,
        #facc15 245deg,
        #ca8a04 270deg,
        transparent 300deg,
        transparent 360deg
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    filter: drop-shadow(0 0 6px #facc15);
    animation: rotate360 4s linear infinite;
}

/* Orbit Ring 3 (3D Tilted Ellipse Orbit) */
.prod-orbit-ring.ring-3 {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1.5px dashed rgba(250, 204, 21, 0.65);
    box-shadow: 0 0 18px rgba(250, 204, 21, 0.35);
    transform: rotateX(68deg) rotateY(18deg);
    animation: rotate3dOrbit 5s linear infinite;
}

.prod-orbit-ring .orbit-node {
    position: absolute;
    color: #facc15;
    font-size: 0.75rem;
    filter: drop-shadow(0 0 6px rgba(250, 204, 21, 0.9));
}

.prod-orbit-ring .node-1 { top: 2px; left: 50%; transform: translateX(-50%); color: #ffffff; }
.prod-orbit-ring .node-2 { bottom: 12px; right: 12px; }

/* Center Suspended Core & Logo */
.prod-celestial-core {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #08090e 60%, rgba(202, 138, 4, 0.4) 100%);
    border: 1px solid rgba(250, 204, 21, 0.4);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.95), 0 0 18px rgba(250, 204, 21, 0.45), inset 0 0 10px rgba(250, 204, 21, 0.2);
    position: relative;
    z-index: 2;
    animation: corePulseAura 3s ease-in-out infinite alternate;
}

.prod-hover-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(250, 204, 21, 0.8));
    animation: floatCelestialLogo 3.5s ease-in-out infinite alternate;
}

.ranvyx-prod-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    z-index: 1;
}

.ranvyx-prod-name {
    font-size: 0.92rem;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-cyber);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.2px;
}

.ranvyx-prod-tag-gold {
    font-size: 0.72rem;
    font-weight: 700;
    color: #eab308;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ranvyx-prod-price-v2 {
    font-size: 1.25rem;
    font-weight: 900;
    color: #ffffff;
    font-family: var(--font-cyber);
    letter-spacing: 0.5px;
}

.ranvyx-stock-pill-gold {
    border: 1px solid rgba(234, 179, 8, 0.45);
    background: rgba(234, 179, 8, 0.08);
    border-radius: 8px;
    padding: 3px 10px;
    font-size: 0.72rem;
    color: #fef08a;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-prod-buy-gold {
    width: 100%;
    background: linear-gradient(135deg, #c59b4b, #96702c);
    border: 1px solid rgba(250, 204, 21, 0.5);
    color: #ffffff !important;
    font-size: 0.88rem;
    font-weight: 800;
    padding: 9px;
    border-radius: 999px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(197, 155, 75, 0.35);
}

.btn-prod-buy-gold:hover {
    background: linear-gradient(135deg, #e5b958, #b88728);
    border-color: #fef08a;
    box-shadow: 0 6px 24px rgba(250, 204, 21, 0.6);
    transform: translateY(-1px);
    color: #ffffff !important;
}

.btn-prod-out-v2 {
    width: 100%;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171 !important;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: not-allowed;
}

.prod-sold-fire {
    font-size: 0.74rem;
    color: #94a3b8;
    font-weight: 600;
}

.btn-prod-out {
    width: 100%;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #f87171 !important;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 7px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: not-allowed;
}

/* Nav Right Badges (Screenshot 3) */
.nav-balance-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 10, 15, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.nav-balance-pill:hover {
    border-color: rgba(106, 128, 160, 0.5);
    background: rgba(18, 20, 30, 0.85);
}

.nav-user-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 10, 15, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 5px 12px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.nav-user-badge:hover {
    border-color: rgba(106, 128, 160, 0.5);
    background: rgba(18, 20, 30, 0.85);
}

.nav-user-badge-name {
    font-family: var(--font-cyber);
    font-weight: 800;
    font-size: 0.86rem;
    color: #ffffff;
}

.nav-user-member-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 2px 7px;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.02);
}

/* ══════════════════════════════════════════
   WHY CHOOSE US & GUARANTEE STRIP (SCREENSHOT 12)
══════════════════════════════════════════ */
.why-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .why-grid-2x2 {
        grid-template-columns: 1fr;
    }
}

.why-feature-card {
    background: #08090d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s ease;
}

.why-feature-card:hover {
    border-color: rgba(106, 128, 160, 0.4);
    transform: translateY(-2px);
}

.why-card-icon-wrap {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.why-card-header-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-cyber);
    margin-bottom: 8px;
}

.why-card-desc-text {
    font-size: 0.84rem;
    color: #94a3b8;
    line-height: 1.65;
    margin-bottom: 16px;
}

.why-card-tags-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.why-tag-pill-item {
    font-size: 0.68rem;
    font-weight: 700;
    color: #64748b;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: var(--font-cyber);
}

/* Guarantee Strip (Value Banner) */
.guarantee-value-banner {
    background: #08090d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 22px 28px;
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .guarantee-value-banner {
        grid-template-columns: 1fr;
    }
}

.guarantee-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-cyber);
}

.guarantee-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 576px) {
    .guarantee-items-grid {
        grid-template-columns: 1fr;
    }
}

.guarantee-item-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2px;
}

.guarantee-item-desc {
    font-size: 0.76rem;
    color: #64748b;
}

/* ══════════════════════════════════════════
   DISCORD COMMUNITY SECTION (LUXURY GOLD THEME)
══════════════════════════════════════════ */
.discord-community-box {
    position: relative;
    background: #08090d;
    border-radius: 24px;
    overflow: hidden;
    padding: 40px;
    margin: 40px auto 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85), 0 0 30px rgba(250, 204, 21, 0.1);
    z-index: 1;
}

/* Rotating Electric Gold Gradient for Community Box */
.discord-community-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2200px;
    height: 2200px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(250, 204, 21, 0.15) 15deg,
        #facc15 30deg,
        #ffffff 45deg,
        #ca8a04 60deg,
        transparent 75deg,
        transparent 180deg,
        rgba(250, 204, 21, 0.15) 195deg,
        #facc15 210deg,
        #ffffff 225deg,
        #ca8a04 240deg,
        transparent 255deg,
        transparent 360deg
    );
    animation: rotateWideNavbarBeam 6s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.discord-community-box::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(250, 204, 21, 0.08), transparent 70%), #07080c;
    border-radius: 22.5px;
    pointer-events: none;
    z-index: 0;
}

.discord-community-box > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .discord-community-box {
        padding: 24px 18px;
    }
}

.discord-community-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
}

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

.discord-community-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: #ffffff;
    font-family: var(--font-cyber);
    line-height: 1.2;
    margin-bottom: 14px;
}

.discord-community-title span {
    background: linear-gradient(135deg, #fef08a 0%, #facc15 50%, #eab308 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 14px rgba(250, 204, 21, 0.5));
}

.discord-bullet-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.discord-bullet-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #facc15;
    box-shadow: 0 0 8px #facc15;
}

.btn-join-discord-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e5b958, #b88728);
    color: #08090d !important;
    font-weight: 900;
    font-family: var(--font-cyber);
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 14px;
    text-decoration: none !important;
    box-shadow: 0 0 25px rgba(250, 204, 21, 0.45);
    margin-top: 14px;
    transition: all 0.25s ease;
}

.btn-join-discord-lg:hover {
    background: linear-gradient(135deg, #fef08a, #ca8a04);
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(250, 204, 21, 0.7);
}

.btn-join-discord-lg:hover {
    background: #4752c4;
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.6);
    transform: translateY(-2px);
}

/* Discord Mockup Widget Card */
.discord-widget-card {
    background: #2b2d31;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.discord-widget-header {
    background: #5865F2;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
}

.discord-widget-users {
    max-height: 260px;
    overflow-y: auto;
    padding: 12px 14px;
}

.discord-widget-user-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.discord-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1e1f22;
}

.discord-user-name {
    font-size: 0.82rem;
    color: #dbdee1;
    font-weight: 600;
}

.discord-user-status-text {
    font-size: 0.68rem;
    color: #949ba4;
}

.discord-widget-footer {
    background: #1e1f22;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: #949ba4;
}

.btn-discord-join-sm {
    background: #5865F2;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 4px;
    text-decoration: none;
}

/* ══════════════════════════════════════════
   CINEMATIC GOLDEN EMBLEM POP & MODAL EXPANSION
══════════════════════════════════════════ */
.modal-gold-intro-fx {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 100001;
    opacity: 0;
}

.auth-modal-overlay.active .modal-gold-intro-fx {
    animation: goldIntroBurst 0.65s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
}

.modal-gold-emblem-core {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, #08090d 50%, #ca8a04 100%);
    border: 2px solid #facc15;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 35px rgba(250, 204, 21, 0.9), inset 0 0 15px rgba(250, 204, 21, 0.6);
    position: relative;
    z-index: 5;
}

.modal-gold-emblem-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(250, 204, 21, 0.8));
}

.modal-gold-shockwave-1,
.modal-gold-shockwave-2,
.modal-gold-shockwave-3 {
    position: absolute;
    border-radius: 50%;
    border: 2px solid #facc15;
    pointer-events: none;
}

.modal-gold-shockwave-1 {
    width: 110px;
    height: 110px;
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.8);
}

.modal-gold-shockwave-2 {
    width: 150px;
    height: 150px;
    border-style: dashed;
    border-color: rgba(250, 204, 21, 0.6);
}

.modal-gold-shockwave-3 {
    width: 200px;
    height: 200px;
    border-color: rgba(234, 179, 8, 0.3);
}

@keyframes goldIntroBurst {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.2) rotate(-30deg);
    }
    35% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.3) rotate(0deg);
        filter: drop-shadow(0 0 40px rgba(250, 204, 21, 1));
    }
    60% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.6);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.8);
        visibility: hidden;
    }
}

/* Modal Window Reveal Animation */
.auth-modal-overlay.active .acct-modal-wrap {
    animation: acctModalPopIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}

@keyframes acctModalPopIn {
    0% {
        opacity: 0;
        transform: scale(0.4) translateY(20px);
        filter: blur(10px) brightness(1.8);
    }
    60% {
        opacity: 1;
        transform: scale(1.03) translateY(0);
        filter: blur(0px) brightness(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0px) brightness(1);
    }
}

.acct-modal-wrap {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    background: #090a0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 30px rgba(250, 204, 21, 0.15);
    padding: 26px;
    position: relative;
    z-index: 100002;
}

.acct-modal-wrap::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    padding: 2px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        #facc15 25deg,
        #ca8a04 55deg,
        transparent 80deg,
        transparent 180deg,
        #facc15 205deg,
        #ca8a04 235deg,
        transparent 260deg,
        transparent 360deg
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateGoldBeam 4.5s linear infinite;
    pointer-events: none;
    z-index: 2;
    opacity: 0.85;
    filter: drop-shadow(0 0 8px rgba(250, 204, 21, 0.7));
}

.acct-modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    text-decoration: none !important;
    z-index: 5;
}

.acct-modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.acct-profile-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(250, 204, 21, 0.25);
    background: rgba(250, 204, 21, 0.04);
    margin-bottom: 12px;
    position: relative;
    z-index: 3;
}

.acct-avatar-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--zone-profile, #facc15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-cyber);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--zone-profile-contrast, #08090d);
    border: 2px solid rgba(255, 255, 255, 0.4);
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 0 20px var(--zone-profile, rgba(250, 204, 21, 0.5));
}

.acct-avatar-tag {
    position: absolute;
    bottom: -6px;
    font-size: 0.52rem;
    font-weight: 800;
    font-family: 'Space Mono', monospace;
    background: var(--zone-profile, #facc15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--zone-profile-contrast, #08090d);
    padding: 1px 7px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.acct-wallet-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 16px;
    position: relative;
    z-index: 3;
}

.acct-wallet-amount {
    font-size: 1.15rem;
    font-weight: 800;
    color: #facc15;
    font-family: var(--font-cyber);
    letter-spacing: 0.5px;
}

.acct-actions-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
    position: relative;
    z-index: 3;
}

.acct-action-btn-item {
    background: #0d0e14;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 14px;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.25s ease;
}

.acct-action-btn-item:hover {
    background: #181924;
    border-color: rgba(250, 204, 21, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(250, 204, 21, 0.15);
}

.acct-action-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(250, 204, 21, 0.08);
    border: 1px solid rgba(250, 204, 21, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #facc15;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.acct-action-btn-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2px;
}

.acct-action-btn-sub {
    font-size: 0.72rem;
    color: #94a3b8;
}

.acct-pwd-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none !important;
    margin-bottom: 12px;
    transition: all 0.2s ease;
    position: relative;
    z-index: 3;
}

.acct-pwd-row:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(250, 204, 21, 0.3);
}

.btn-admin-gold-portal {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.15), rgba(202, 138, 4, 0.25));
    border: 1px solid rgba(250, 204, 21, 0.55);
    color: #fef08a !important;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.2);
    position: relative;
    z-index: 3;
}

.btn-admin-gold-portal:hover {
    background: linear-gradient(135deg, #e5b958, #b88728);
    color: #08090d !important;
    border-color: #fef08a;
    box-shadow: 0 6px 24px rgba(250, 204, 21, 0.6);
    transform: translateY(-1px);
}

.btn-acct-logout {
    width: 100%;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171 !important;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 10px;
    border-radius: 12px;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
    z-index: 3;
}

.btn-acct-logout:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.6);
    color: #ffffff !important;
}
    font-weight: 800;
    font-size: 0.84rem;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
}

.btn-acct-logout:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    color: #f87171 !important;
}

/* ══════════════════════════════════════════
   CONTACT PAGE (SCREENSHOT 19)
══════════════════════════════════════════ */
.contact-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-channel-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 15, 0.75);
    overflow: hidden;
    text-decoration: none !important;
    color: #fff !important;
    transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s;
    backdrop-filter: blur(12px);
}

.contact-channel-card:hover {
    transform: translateY(-3px);
    border-color: rgba(106, 128, 160, 0.5);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.contact-channel-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.contact-channel-card:hover .contact-channel-glow {
    opacity: 1;
}

.contact-youtube .contact-channel-glow { background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), transparent 60%); }
.contact-tiktok .contact-channel-glow { background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), transparent 60%); }
.contact-discord .contact-channel-glow { background: linear-gradient(135deg, rgba(88, 101, 242, 0.18), transparent 60%); }
.contact-website .contact-channel-glow { background: linear-gradient(135deg, rgba(168, 85, 247, 0.18), transparent 60%); }
.contact-instagram .contact-channel-glow { background: linear-gradient(135deg, rgba(236, 72, 153, 0.14), transparent 60%); }

.contact-channel-icon {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-channel-body {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
}

.contact-channel-label {
    display: block;
    font-family: var(--font-cyber);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.03em;
    color: #ffffff;
}

.contact-channel-hint {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 0.15rem;
}

.contact-channel-arrow {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    color: rgba(248, 250, 252, 0.35);
    transition: transform 0.25s, color 0.25s;
}

.contact-channel-card:hover .contact-channel-arrow {
    transform: translate(2px, -2px);
    color: #ffffff;
}

@media (max-width: 768px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════
   PRODUCT DETAIL PAGE (SCREENSHOT 25 & 26)
══════════════════════════════════════════ */
.spp-shell {
    max-width: 1040px;
    margin: 0 auto;
    padding: 10px 0 40px;
}

.spp-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.spp-back-btn {
    background: rgba(20, 22, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 6px 18px;
    color: #cbd5e1 !important;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.spp-back-btn:hover {
    background: rgba(30, 34, 46, 0.95);
    border-color: rgba(106, 128, 160, 0.5);
    color: #ffffff !important;
}

.spp-breadcrumb {
    font-size: 0.82rem;
    color: #64748b;
}

.spp-breadcrumb a {
    color: #94a3b8;
    text-decoration: none;
}

.spp-breadcrumb span {
    color: #ffffff;
    font-weight: 700;
}

.spp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 32px;
    margin-bottom: 36px;
}

@media (max-width: 850px) {
    .spp-hero-grid {
        grid-template-columns: 1fr;
    }
}

.spp-main-img-box {
    background: #090a0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    position: relative;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.spp-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spp-title-text {
    font-family: var(--font-cyber);
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.spp-chips-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.spp-chip-item {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #94a3b8;
}

.spp-chip-item.ready {
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.08);
    color: #4ade80;
}

.spp-price-strip {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 18px;
}

.spp-price-amount {
    font-family: var(--font-cyber);
    font-size: 1.7rem;
    font-weight: 900;
    color: #ffffff;
}

.spp-stock-count {
    font-size: 0.84rem;
    color: #64748b;
}

.spp-video-review-card {
    background: #090a0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.spp-video-review-card:hover {
    border-color: rgba(106, 128, 160, 0.4);
    background: #0f111a;
}

.spp-video-play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.spp-video-title {
    font-weight: 700;
    font-size: 0.88rem;
    color: #ffffff;
    line-height: 1.2;
}

.spp-video-sub {
    font-size: 0.72rem;
    color: #64748b;
}

.spp-option-select-box {
    background: #090a0f;
    border: 1px solid rgba(106, 128, 160, 0.4);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 18px;
    position: relative;
}

.spp-option-label {
    font-size: 0.72rem;
    color: #64748b;
    margin-bottom: 4px;
}

.spp-option-val-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.spp-option-name {
    font-family: var(--font-cyber);
    font-weight: 800;
    font-size: 0.95rem;
    color: #ffffff;
}

.spp-option-price {
    font-family: var(--font-cyber);
    font-weight: 800;
    font-size: 0.95rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spp-option-check-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #3b82f6;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

.spp-qty-row-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.spp-qty-label {
    font-size: 0.88rem;
    color: #94a3b8;
}

.spp-qty-stepper {
    display: flex;
    align-items: center;
    background: #090a0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.spp-qty-btn {
    width: 34px;
    height: 34px;
    background: transparent;
    border: none;
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spp-qty-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.spp-qty-input {
    width: 44px;
    text-align: center;
    background: transparent;
    border: none;
    color: #ffffff;
    font-weight: 800;
    font-family: var(--font-cyber);
    outline: none;
}

.spp-buy-btn-main {
    width: 100%;
    background: #4b5d78;
    color: #ffffff !important;
    font-weight: 800;
    font-size: 0.95rem;
    font-family: var(--font-cyber);
    letter-spacing: 1px;
    padding: 14px;
    border-radius: 999px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.spp-buy-btn-main:hover {
    background: #5b6f8f;
    transform: translateY(-1px);
}

/* Bottom Details 2-Column Grid (Screenshot 26) */
.spp-details-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
}

@media (max-width: 850px) {
    .spp-details-grid {
        grid-template-columns: 1fr;
    }
}

.spp-info-panel-box {
    background: #090a0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    height: fit-content;
}

.spp-desc-panel-box {
    background: #090a0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
}

.spp-panel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-cyber);
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.spp-info-table-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.82rem;
}

.spp-info-table-row:last-child {
    border-bottom: none;
}

.spp-info-key {
    color: #64748b;
}

.spp-info-val {
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-cyber);
}

.spp-desc-item-card {
    background: #07080c;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 12px;
    font-size: 0.84rem;
    line-height: 1.7;
    color: #cbd5e1;
}

.spp-desc-item-card strong {
    color: #ffffff;
}

/* ══════════════════════════════════════════
   ADMIN BACKEND CYBER THEME (RANVYX STORE)
══════════════════════════════════════════ */
/* Modal Positioning & Layer Fix */
.modal {
    z-index: 1060 !important;
}

.modal-backdrop {
    z-index: 1050 !important;
    background-color: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(4px) !important;
}

.modal-dialog {
    margin: 1.75rem auto !important;
    max-width: 540px;
}

.modal-dialog-centered {
    display: flex !important;
    align-items: center !important;
    min-height: calc(100% - 3.5rem) !important;
    justify-content: center !important;
}

.modal-content.admin-inner-card {
    background: #090a0f !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 30px rgba(106, 128, 160, 0.15) !important;
    border-radius: 18px !important;
}

.admin-sidebar {
    background: #090a0f !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 18px !important;
    backdrop-filter: blur(16px);
}

.admin-sidebar-header {
    padding: 14px 16px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-sidebar .list-group-item {
    background: transparent !important;
    color: #94a3b8 !important;
    font-size: 0.84rem;
    font-weight: 700;
    font-family: var(--font-cyber);
    border: 1px solid transparent !important;
    border-radius: 10px !important;
    padding: 10px 14px !important;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.admin-sidebar .list-group-item:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    color: #ffffff !important;
    transform: translateX(3px);
}

.admin-sidebar .list-group-item.active {
    background: rgba(106, 128, 160, 0.25) !important;
    border-color: rgba(106, 128, 160, 0.55) !important;
    color: #ffffff !important;
    box-shadow: 0 0 16px rgba(106, 128, 160, 0.25);
}

.admin-sidebar-heading {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #475569;
    text-transform: uppercase;
    padding: 10px 12px 4px;
    font-family: var(--font-cyber);
}

.admin-content-card {
    background: #090a0f !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 18px !important;
    overflow: hidden;
    backdrop-filter: blur(16px);
}

.admin-inner-card {
    background: #06070a !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 14px !important;
    padding: 20px !important;
}

.admin-stat-box {
    background: #06070a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
}

.admin-stat-box:hover {
    border-color: rgba(106, 128, 160, 0.5);
    transform: translateY(-2px);
}

.admin-stat-box .stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(106, 128, 160, 0.15);
    border: 1px solid rgba(106, 128, 160, 0.3);
    color: #93c5fd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.admin-stat-num {
    font-family: var(--font-cyber);
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
}

/* Cyber Form Inputs */
.admin-input {
    background: #07080c !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    color: #ffffff !important;
    font-size: 0.86rem !important;
    padding: 10px 14px !important;
    outline: none !important;
    transition: border-color 0.2s;
}

.admin-input:focus {
    border-color: rgba(106, 128, 160, 0.8) !important;
    box-shadow: 0 0 12px rgba(106, 128, 160, 0.25) !important;
}

.admin-label {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-family: var(--font-cyber);
}

/* Cyber Table */
.admin-table {
    width: 100%;
    color: #cbd5e1;
    border-collapse: separate;
    border-spacing: 0;
}

.admin-table th {
    background: rgba(255, 255, 255, 0.02);
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-family: var(--font-cyber);
}

.admin-table td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.84rem;
    vertical-align: middle;
}

.admin-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.btn-cyber-primary {
    background: #4b5d78;
    color: #ffffff !important;
    font-weight: 800;
    font-family: var(--font-cyber);
    font-size: 0.84rem;
    padding: 8px 18px;
    border-radius: 10px;
    border: none;
    transition: all 0.2s;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-cyber-primary:hover {
    background: #5b6f8f;
    transform: translateY(-1px);
}

/* ══════════════════════════════════════════
   CYBER ADMIN ACTION BUTTONS (DARK THEME FIT)
══════════════════════════════════════════ */
.btn-cyber-edit,
.admin-table .btn-outline-warning,
.admin-inner-card .btn-outline-warning {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    background: rgba(234, 179, 8, 0.12) !important;
    border: 1px solid rgba(234, 179, 8, 0.35) !important;
    color: #facc15 !important;
    padding: 6px 14px !important;
    border-radius: 8px !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    font-family: var(--font-cyber) !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none !important;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

.btn-cyber-edit:hover,
.admin-table .btn-outline-warning:hover,
.admin-inner-card .btn-outline-warning:hover {
    background: #eab308 !important;
    border-color: #eab308 !important;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 0 16px rgba(234, 179, 8, 0.5), 0 4px 12px rgba(0, 0, 0, 0.6) !important;
}

.btn-cyber-del,
.admin-table .btn-outline-danger,
.admin-inner-card .btn-outline-danger {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    background: rgba(239, 68, 68, 0.12) !important;
    border: 1px solid rgba(239, 68, 68, 0.35) !important;
    color: #f87171 !important;
    padding: 6px 14px !important;
    border-radius: 8px !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    font-family: var(--font-cyber) !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none !important;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

.btn-cyber-del:hover,
.admin-table .btn-outline-danger:hover,
.admin-inner-card .btn-outline-danger:hover {
    background: #ef4444 !important;
    border-color: #ef4444 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 0 16px rgba(239, 68, 68, 0.5), 0 4px 12px rgba(0, 0, 0, 0.6) !important;
}

.btn-cyber-stock,
.admin-table .btn-outline-info,
.admin-inner-card .btn-outline-info {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    background: rgba(56, 189, 248, 0.12) !important;
    border: 1px solid rgba(56, 189, 248, 0.35) !important;
    color: #38bdf8 !important;
    padding: 6px 14px !important;
    border-radius: 8px !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    font-family: var(--font-cyber) !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none !important;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

.btn-cyber-stock:hover,
.admin-table .btn-outline-info:hover,
.admin-inner-card .btn-outline-info:hover {
    background: #0284c7 !important;
    border-color: #0284c7 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 0 16px rgba(56, 189, 248, 0.5), 0 4px 12px rgba(0, 0, 0, 0.6) !important;
}

/* ══════════════════════════════════════════
   BUY HISTORY (EXACT DARK CYBER THEME - SCREENSHOT 5)
══════════════════════════════════════════ */
.buyhis-shell {
    max-width: 1060px;
    margin: 0 auto 50px;
}

.buyhis-card {
    background: #08090e !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 18px !important;
    padding: 24px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6) !important;
}

.buyhis-search-wrap {
    max-width: 320px;
}

.buyhis-search-input {
    background: #050608 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    padding: 9px 16px !important;
    font-size: 0.85rem !important;
    transition: all 0.2s ease;
}

.buyhis-search-input:focus {
    border-color: rgba(106, 128, 160, 0.8) !important;
    box-shadow: 0 0 12px rgba(106, 128, 160, 0.25) !important;
    background: #07080c !important;
}

.buyhis-table {
    width: 100%;
    color: #cbd5e1 !important;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent !important;
}

.buyhis-table th {
    background: rgba(255, 255, 255, 0.02) !important;
    color: #64748b !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 12px 16px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    font-family: var(--font-cyber) !important;
}

.buyhis-table td {
    padding: 14px 16px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
    font-size: 0.85rem !important;
    vertical-align: middle !important;
    background: transparent !important;
    color: #cbd5e1 !important;
}

.buyhis-table tbody tr {
    transition: background 0.15s ease;
}

.buyhis-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.025) !important;
}

.buyhis-key-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #050609 !important;
    border: 1px solid rgba(106, 128, 160, 0.35) !important;
    padding: 5px 12px !important;
    border-radius: 8px !important;
}

.buyhis-key-text {
    font-family: var(--font-cyber), monospace !important;
    color: #38bdf8 !important;
    font-weight: 700 !important;
    font-size: 0.86rem !important;
    letter-spacing: 0.5px;
}

.buyhis-copy-btn {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #94a3b8 !important;
    border-radius: 6px !important;
    padding: 2px 8px !important;
    font-size: 0.72rem !important;
    cursor: pointer;
    transition: all 0.2s ease;
}

.buyhis-copy-btn:hover {
    background: #38bdf8 !important;
    border-color: #38bdf8 !important;
    color: #000000 !important;
}

/* ══════════════════════════════════════════
   GLOBAL SEAMLESS SPA NAVIGATION LOADER
══════════════════════════════════════════ */
#cx-seamless-loader {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #38bdf8, #818cf8, #60a5fa, #38bdf8);
    background-size: 200% 100%;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.8), 0 0 4px #60a5fa;
    z-index: 99999999;
    transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    width: 0%;
    opacity: 0;
    pointer-events: none;
    animation: cxGlowMove 1.5s linear infinite;
}

@keyframes cxGlowMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* ══════════════════════════════════════════
   MYSTERY BOX / WHEEL SPIN PAGE (EXACT MATCH)
══════════════════════════════════════════ */
.wheel-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.wheel-eyebrow {
    font-family: var(--font-cyber), monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.wheel-main-title {
    font-family: var(--font-cyber), Kanit, sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 4px;
}

.wheel-subtitle {
    font-size: 0.92rem;
    color: #94a3b8;
    margin-bottom: 16px;
}

.wheel-pill-badge {
    background: rgba(20, 22, 32, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 6px 20px;
    font-size: 0.84rem;
    font-weight: 700;
    color: #e2e8f0;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.wheel-pill-badge:hover {
    border-color: rgba(96, 165, 250, 0.4);
    background: rgba(30, 34, 48, 0.95);
    color: #ffffff;
}

/* ══════════════════════════════════════════════════════════
   LUCKY WHEEL OF FORTUNE (CYBER LIGHTING & CELESTIAL THEME)
══════════════════════════════════════════════════════════ */
.wheel-main-title {
    font-family: var(--font-cyber), Kanit, sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-primary, #facc15) 50%, var(--gold-secondary, #ca8a04) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(250, 204, 21, 0.35);
    margin-bottom: 6px;
}

.wheel-subtitle {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 20px;
}

.wheel-pill-badge {
    background: #0b0d14;
    border: 1.5px solid var(--gold-primary, #facc15);
    border-radius: 999px;
    padding: 6px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), 0 0 12px rgba(250, 204, 21, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.wheel-stage-wrap {
    position: relative;
    width: 530px;
    height: 530px;
    margin: 30px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 580px) {
    .wheel-stage-wrap {
        width: 350px;
        height: 350px;
    }
    .wheel-canvas-disc {
        width: 340px !important;
        height: 340px !important;
    }
    .wheel-center-spin-hub {
        width: 86px !important;
        height: 86px !important;
    }
    .wheel-celestial-orbit-wrap {
        width: 380px !important;
        height: 380px !important;
    }
    .wheel-orbit-ring.ring-1 { width: 370px !important; height: 370px !important; }
    .wheel-orbit-ring.ring-2 { width: 355px !important; height: 355px !important; }
    .wheel-orbit-ring.ring-3 { width: 345px !important; height: 345px !important; }
}

/* ── Outer Celestial 3D Orbit FX ── */
.wheel-celestial-orbit-wrap {
    position: absolute;
    width: 610px;
    height: 610px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.wheel-orbit-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wheel-orbit-ring.ring-1 {
    width: 590px;
    height: 590px;
    border: 1.5px dashed var(--gold-primary, #facc15);
    opacity: 0.35;
    animation: rotate360 20s linear infinite;
}

.wheel-orbit-ring.ring-2 {
    width: 560px;
    height: 560px;
    border: 1.5px solid transparent;
    border-top: 1.5px solid var(--gold-primary, #facc15);
    border-bottom: 1.5px solid var(--gold-primary, #facc15);
    opacity: 0.55;
    animation: rotate360 12s linear infinite reverse;
    filter: drop-shadow(0 0 8px var(--gold-primary, #facc15));
}

.wheel-orbit-ring.ring-3 {
    width: 540px;
    height: 540px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.wheel-orbit-node {
    position: absolute;
    color: var(--gold-primary, #facc15);
    filter: drop-shadow(0 0 8px var(--gold-primary, #facc15));
    font-size: 0.9rem;
    animation: celestialPulse 3s ease-in-out infinite;
}

.wheel-orbit-node.node-1 { top: 4%; left: 48%; }
.wheel-orbit-node.node-2 { top: 50%; right: 2%; }
.wheel-orbit-node.node-3 { bottom: 4%; left: 48%; }
.wheel-orbit-node.node-4 { top: 50%; left: 2%; }

/* ── Wheel Disc Box with 360° Rotating Conic Beam ── */
.wheel-disc-box {
    position: relative;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 3px;
    z-index: 3;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.95), 0 0 30px rgba(250, 204, 21, 0.2);
}

.wheel-disc-box::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        var(--gold-primary, #facc15) 30deg,
        #ffffff 45deg,
        var(--gold-secondary, #ca8a04) 60deg,
        transparent 75deg,
        transparent 180deg,
        var(--gold-primary, #facc15) 210deg,
        #ffffff 225deg,
        var(--gold-secondary, #ca8a04) 240deg,
        transparent 255deg,
        transparent 360deg
    );
    animation: rotate360 var(--glow-speed, 4.5s) linear infinite;
    z-index: 1;
}

.wheel-disc-box::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #08090f;
    z-index: 2;
}

.wheel-canvas-disc {
    position: relative;
    width: 514px;
    height: 514px;
    border-radius: 50%;
    display: block;
    z-index: 3;
}

/* ── Top Pointer Arrow ── */
.wheel-pointer-arrow {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 28px solid var(--gold-primary, #facc15);
    z-index: 10;
    filter: drop-shadow(0 4px 14px var(--gold-primary, #facc15));
}

.wheel-pointer-core {
    position: absolute;
    top: -27px;
    left: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 18px solid #ffffff;
}

/* ── Center SPIN Hub ── */
.wheel-center-spin-hub {
    position: absolute;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #2a2215, #0a0b12 85%);
    border: 2px solid var(--gold-primary, #facc15);
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.95), 0 0 25px rgba(250, 204, 21, 0.45), inset 0 0 16px rgba(250, 204, 21, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
}

.wheel-center-spin-hub:hover {
    transform: scale(1.08);
    box-shadow: 0 0 45px rgba(250, 204, 21, 0.75), inset 0 0 25px rgba(250, 204, 21, 0.4);
}

.wheel-center-spin-hub:active {
    transform: scale(0.96);
}

.wheel-center-spin-hub span {
    font-family: var(--font-cyber), Kanit, sans-serif;
    font-weight: 900;
    font-size: 1.35rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-primary, #facc15) 60%, var(--gold-secondary, #ca8a04) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none;
}

/* ── Main Spin Button ── */
.btn-wheel-action-spin {
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-primary, #facc15) 45%, var(--gold-secondary, #ca8a04) 100%);
    border: none;
    border-radius: 999px;
    padding: 12px 48px;
    color: #08090d;
    font-weight: 900;
    font-size: 1.05rem;
    font-family: var(--font-cyber), Kanit, sans-serif;
    letter-spacing: 1.5px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(250, 204, 21, 0.45);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-wheel-action-spin:hover {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 30%, var(--gold-primary, #facc15) 100%);
    color: #000000;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.9), 0 0 30px rgba(250, 204, 21, 0.75);
}

.btn-wheel-action-spin:active {
    transform: translateY(0) scale(0.98);
}

/* ── Bottom Prizes Stock Horizontal Row ── */
.wheel-prizes-horizontal-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.wheel-strip-card {
    background: #090a10;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.wheel-strip-card:hover {
    border-color: var(--gold-primary, #facc15);
    background: #0e0f18;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8), 0 0 16px rgba(250, 204, 21, 0.3);
}

.wheel-strip-thumb {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: contain;
    background: #141622;
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wheel-strip-meta {
    text-align: left;
}

.wheel-strip-title {
    font-family: var(--font-cyber), Kanit, sans-serif;
    font-weight: 800;
    font-size: 0.88rem;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.wheel-strip-stock {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 3px;
}

/* ══════════════════════════════════════════════════════════════════
   📱 MASTER MOBILE & RESPONSIVE DESIGN SYSTEM (ALL DEVICES)
   ══════════════════════════════════════════════════════════════════ */

/* Prevent horizontal overflow on all screen sizes */
html, body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    -webkit-text-size-adjust: 100%;
}

img, video, iframe, embed, object {
    max-width: 100% !important;
    height: auto;
}

/* Fluid Shell Containers */
@media (max-width: 991.98px) {
    .store-shell, .container, .container-fluid {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

@media (max-width: 575.98px) {
    .store-shell, .container, .container-fluid {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* ── Mobile Navbar & Header ── */
@media (max-width: 991.98px) {
    .navbar-ranvyx-wrap {
        padding: 0 8px !important;
        margin: 6px auto 12px !important;
        top: 6px !important;
    }

    .navbar-ranvyx {
        padding: 6px 10px !important;
        border-radius: 999px !important;
        gap: 6px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .brand-ranvyx {
        font-size: 0.84rem !important;
        gap: 6px !important;
        max-width: 120px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        flex-shrink: 1 !important;
    }

    .brand-logo-img {
        width: 26px !important;
        height: 26px !important;
        flex-shrink: 0 !important;
    }

    .nav-right-actions {
        gap: 4px !important;
        display: flex !important;
        align-items: center !important;
        flex-shrink: 0 !important;
    }

    .nav-balance-pill {
        padding: 4px 8px !important;
        font-size: 0.72rem !important;
        gap: 4px !important;
        flex-shrink: 0 !important;
        white-space: nowrap !important;
    }

    .nav-user-badge {
        display: none !important; /* Hide user badge in compact navbar on mobile; user can access profile via mobile drawer & bottom bar */
    }

    .btn-top-pill-reg, .btn-top-pill-login {
        padding: 4px 8px !important;
        font-size: 0.72rem !important;
    }

    .btn-mobile-menu-toggler {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 36px !important;
        height: 36px !important;
        border-radius: 50% !important;
        background: rgba(250, 204, 21, 0.18) !important;
        border: 1.5px solid rgba(250, 204, 21, 0.6) !important;
        color: #facc15 !important;
        box-shadow: 0 0 12px rgba(250, 204, 21, 0.35) !important;
        flex-shrink: 0 !important;
        cursor: pointer !important;
        margin-left: 2px !important;
        padding: 0 !important;
    }

    .btn-mobile-menu-toggler i {
        font-size: 1.05rem !important;
        color: #facc15 !important;
    }
}

/* ══════════════════════════════════════════
   📱 MODERN MOBILE BOTTOM NAVIGATION BAR
══════════════════════════════════════════ */
.mobile-bottom-app-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(56px + env(safe-area-inset-bottom, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: rgba(8, 9, 14, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(250, 204, 21, 0.25);
    display: none;
    align-items: center;
    justify-content: space-around;
    z-index: 9998;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.85);
}

@media (max-width: 991.98px) {
    .mobile-bottom-app-bar {
        display: flex !important;
    }
    body {
        padding-bottom: calc(62px + env(safe-area-inset-bottom, 0px)) !important;
    }
    .store-music-dock {
        bottom: calc(62px + env(safe-area-inset-bottom, 0px)) !important;
    }
    .discord-floating-btn {
        bottom: calc(62px + env(safe-area-inset-bottom, 0px)) !important;
    }
}

.mobile-bottom-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #94a3b8;
    text-decoration: none !important;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 10px;
    transition: all 0.2s ease;
    flex: 1;
}

.mobile-bottom-tab i {
    font-size: 1.12rem;
    transition: transform 0.2s ease;
}

.mobile-bottom-tab:hover,
.mobile-bottom-tab.active {
    color: #facc15 !important;
}

.mobile-bottom-tab.active i {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(250, 204, 21, 0.6));
}

    .store-navbar {
        padding: 10px 14px !important;
    }

    .navbar-collapse {
        background: rgba(10, 11, 18, 0.96) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 16px !important;
        padding: 16px !important;
        margin-top: 12px !important;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8) !important;
    }

    .navbar-nav .nav-link {
        padding: 10px 14px !important;
        border-radius: 10px !important;
        font-size: 0.95rem !important;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: rgba(168, 85, 247, 0.12) !important;
    }

    .nav-auth-buttons {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 8px !important;
        margin-top: 14px !important;
        padding-top: 14px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    }

    .nav-auth-buttons .btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .brand-ranvyx span {
        max-width: 90px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    .nav-balance-pill span {
        font-size: 0.72rem !important;
    }

    .top-gold-marquee-bar {
        font-size: 0.72rem !important;
        padding: 4px 0 !important;
    }
}

/* ── Mobile Music Dock & Floating Discord ── */
@media (max-width: 767.98px) {
    .store-music-dock {
        bottom: 10px !important;
        left: 10px !important;
        width: auto !important;
        max-width: 170px !important;
        padding: 4px 8px !important;
        border-radius: 12px !important;
        background: rgba(10, 12, 18, 0.92) !important;
    }

    .store-music-dock-head {
        font-size: 0.72rem !important;
    }

    .store-music-dock-track {
        font-size: 0.68rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .store-music-dock-vol {
        display: none !important; /* Hide volume slider on mobile to stay compact */
    }

    .discord-floating-btn {
        bottom: 10px !important;
        right: 10px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 1.15rem !important;
    }
}

/* ── Category Filter Pills (Horizontal Swipe on Mobile) ── */
@media (max-width: 767.98px) {
    .category-filter-bar,
    .nav-pills-scrollable,
    .store-cat-strip {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding-bottom: 8px !important;
        gap: 8px !important;
        scrollbar-width: none !important;
    }

    .category-filter-bar::-webkit-scrollbar,
    .nav-pills-scrollable::-webkit-scrollbar,
    .store-cat-strip::-webkit-scrollbar {
        display: none !important;
    }

    .category-filter-bar .cat-pill,
    .nav-pills-scrollable .nav-link {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        font-size: 0.82rem !important;
        padding: 6px 14px !important;
    }
}

/* ── Product & Shop Cards Grid (Clean 2 Columns on Mobile) ── */
@media (max-width: 767.98px) {
    .row-cols-product-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .product-card, .shop-card, .service-card {
        padding: 10px !important;
        border-radius: 14px !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .product-card .card-thumb,
    .shop-card .card-thumb,
    .product-card img.product-img {
        border-radius: 10px !important;
        aspect-ratio: 16/10 !important;
        object-fit: cover !important;
        width: 100% !important;
        height: auto !important;
    }

    .product-card .card-title,
    .shop-card .card-title {
        font-size: 0.88rem !important;
        margin-top: 8px !important;
        margin-bottom: 4px !important;
        line-height: 1.3 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .product-card .price-tag,
    .shop-card .price-tag {
        font-size: 0.92rem !important;
    }

    .product-card .btn-buy,
    .shop-card .btn-buy {
        padding: 7px 10px !important;
        font-size: 0.78rem !important;
        border-radius: 8px !important;
    }
}

@media (max-width: 420px) {
    .row-cols-product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }

    .product-card, .shop-card {
        padding: 8px !important;
    }

    .product-card .card-title,
    .shop-card .card-title {
        font-size: 0.82rem !important;
    }
}

/* ── Hero Banner Carousel ── */
@media (max-width: 767.98px) {
    .hero-banner-carousel,
    .carousel-item img {
        border-radius: 12px !important;
        aspect-ratio: 16/8 !important;
        object-fit: cover !important;
        height: auto !important;
    }
}

/* ── Top-Up & Payment Methods Grid ── */
@media (max-width: 767.98px) {
    .topup-methods-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .topup-method-card {
        padding: 14px 10px !important;
        border-radius: 12px !important;
        text-align: center !important;
    }

    .topup-method-card .method-icon {
        width: 42px !important;
        height: 42px !important;
        margin-bottom: 8px !important;
    }

    .topup-method-card .method-name {
        font-size: 0.85rem !important;
    }

    .qr-slip-preview-box {
        max-width: 240px !important;
        margin: 0 auto 15px !important;
    }
}

/* ── Responsive Tables & Logs ── */
.table-responsive {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    border-radius: 12px !important;
}

@media (max-width: 767.98px) {
    .table th, .table td {
        padding: 8px 10px !important;
        font-size: 0.82rem !important;
        white-space: nowrap !important;
    }

    .table .btn-sm {
        padding: 3px 8px !important;
        font-size: 0.75rem !important;
    }
}

/* ── Modals & SweetAlert2 on Mobile ── */
@media (max-width: 575.98px) {
    .modal-dialog {
        margin: 12px auto !important;
        max-width: calc(100vw - 20px) !important;
    }

    .modal-content {
        border-radius: 16px !important;
        padding: 10px !important;
    }

    .modal-header, .modal-body, .modal-footer {
        padding: 12px !important;
    }

    .swal2-popup {
        width: calc(100vw - 24px) !important;
        padding: 16px !important;
        border-radius: 16px !important;
        font-size: 0.9rem !important;
    }
}

/* ── Safe Area for Modern Notch & Home Indicator (iOS & Android) ── */
@supports (padding: max(0px)) {
    body {
        padding-left: min(0vmin, env(safe-area-inset-left));
        padding-right: min(0vmin, env(safe-area-inset-right));
        padding-bottom: env(safe-area-inset-bottom);
    }
}





