/* ============================================
   💎 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) {
    body, a, button, input, select, textarea, [role="button"] {
        cursor: none !important;
    }
}

/* ══════════════════════════════════════════
   CUSTOM CURSOR (DOT + RING HALO WITH GLOW)
══════════════════════════════════════════ */
#cx-dot {
    position: fixed;
    left: 0;
    top: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9fabbd;
    pointer-events: none;
    z-index: 999999;
    box-shadow: 0 0 8px #9fabbd, 0 0 16px rgba(106, 128, 160, 0.8);
    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(106, 128, 160, 0.65);
    box-shadow: 0 0 14px rgba(106, 128, 160, 0.35);
    pointer-events: none;
    z-index: 999998;
    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;
}

html.cx-hot #cx-ring {
    width: 48px;
    height: 48px;
    border-color: #9fabbd;
    background: rgba(106, 128, 160, 0.12);
    box-shadow: 0 0 20px rgba(106, 128, 160, 0.5);
}

/* Background Cyber Grid */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(106, 128, 160, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(106, 128, 160, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 130% 100% at 50% 30%, black 30%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse 130% 100% at 50% 30%, black 30%, transparent 85%);
    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(106, 128, 160, 0.08) 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)
══════════════════════════════════════════ */
.navbar-ranvyx-wrap {
    position: sticky;
    top: 12px;
    z-index: 1000;
    padding: 0 16px;
    margin-bottom: 24px;
}

.navbar-ranvyx {
    background: rgba(10, 11, 16, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(106, 128, 160, 0.06);
}

.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(106, 128, 160, 0.4));
}

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

.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(106, 128, 160, 0.22);
    border: 1px solid rgba(106, 128, 160, 0.45);
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(106, 128, 160, 0.25);
}

/* Nav Right (Search & Auth) */
.nav-right-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-search-wrap {
    position: relative;
    width: 170px;
}

.nav-search-wrap input {
    width: 100%;
    background: rgba(20, 22, 30, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 999px !important;
    padding: 5px 12px 5px 30px !important;
    font-size: 0.8rem !important;
    color: #ffffff !important;
    outline: none !important;
}

.nav-search-wrap i {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 0.75rem;
}

.btn-pill-reg {
    background: #ffffff;
    color: #050508 !important;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 6px 16px;
    border-radius: 999px;
    text-decoration: none;
    border: none;
    transition: all 0.2s ease;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.25);
}

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

.btn-pill-login {
    background: #12131a;
    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);
    transition: all 0.2s ease;
}

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

.nav-user-badge {
    background: rgba(20, 22, 30, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 4px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.nav-user-member-tag {
    background: #1e2230;
    border: 1px solid rgba(106, 128, 160, 0.4);
    color: #93c5fd;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 999px;
    font-family: var(--font-cyber);
}

/* ══════════════════════════════════════════
   PERSISTENT MUSIC PLAYER DOCK (BOTTOM-LEFT)
══════════════════════════════════════════ */
.store-music-dock {
    position: fixed;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 9999;
    width: min(290px, calc(100vw - 2.5rem));
    pointer-events: auto;
}

.store-music-dock-inner {
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: linear-gradient(155deg, rgba(16, 17, 25, 0.96), rgba(8, 9, 14, 0.98));
    border: 1px solid rgba(106, 128, 160, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(106, 128, 160, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.store-music-dock-head {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.35rem;
}

.store-music-dock-icon {
    font-size: 0.95rem;
    line-height: 1;
}

.store-music-dock-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    color: rgba(248, 250, 252, 0.65);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex: 1;
}

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

.store-music-dock-live span {
    display: block;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(180deg, #9fabbd, #6a80a0);
    height: 4px;
}

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

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

@keyframes smBar {
    0%, 100% { height: 4px; }
    50% { height: 13px; }
}

.store-music-dock-track {
    font-size: 0.82rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.55rem;
}

.store-music-dock-vol {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.76rem;
    color: #888888;
}

.store-music-dock-vol input[type="range"] {
    flex: 1;
    height: 4px;
    accent-color: #6a80a0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

/* ══════════════════════════════════════════
   FLOATING DISCORD BUTTON (BOTTOM-RIGHT)
══════════════════════════════════════════ */
.discord-floating-btn {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 9999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #5865F2;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(88, 101, 242, 0.5), 0 0 15px rgba(88, 101, 242, 0.3);
    transition: all 0.25s ease;
}

.discord-floating-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.7);
    color: #ffffff;
}

/* ══════════════════════════════════════════
   HERO BANNER SHOWCASE (EXACT MATCH SCREENSHOT 2)
══════════════════════════════════════════ */
.container-xl {
    max-width: 1140px !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;
}

/* ══════════════════════════════════════════
   4 STATS CARDS (EXACT MATCH SCREENSHOT 1)
══════════════════════════════════════════ */
.stats-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

@media (max-width: 992px) {
    .stats-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .stats-grid-4 {
        grid-template-columns: 1fr;
    }
}

.ranvyx-stat-card {
    background: #0a0b10;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.25s ease;
}

.ranvyx-stat-card:hover {
    border-color: rgba(106, 128, 160, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.stat-card-title {
    font-size: 0.82rem;
    color: #94a3b8;
    margin-bottom: 4px;
}

.stat-card-number {
    font-size: 1.55rem;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-cyber);
    line-height: 1.1;
}

.stat-card-unit {
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b;
    margin-left: 4px;
}

.stat-card-icon {
    font-size: 2.2rem;
    color: #ffffff;
    opacity: 0.12;
}

/* ══════════════════════════════════════════
   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 {
    background: #08090d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ranvyx-cat-card:hover {
    border-color: rgba(106, 128, 160, 0.5);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(106, 128, 160, 0.15);
    transform: translateY(-3px);
}

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

.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 {
    padding: 14px 20px;
    background: #08080c;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ranvyx-cat-title {
    font-size: 0.92rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    font-family: var(--font-cyber);
}

.btn-cat-view {
    background: #0e0f16;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-cat-view:hover {
    background: #181924;
    border-color: rgba(106, 128, 160, 0.5);
    transform: translateX(2px);
}

/* ══════════════════════════════════════════
   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: rgba(106, 128, 160, 0.45);
    background: #0c0d14;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.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;
    }
}

.auth-aside {
    padding: 40px 36px;
    border-right: 1px solid rgba(106, 128, 160, 0.15);
    background: 
        linear-gradient(160deg, rgba(106, 128, 160, 0.1), transparent 55%),
        radial-gradient(ellipse at 20% 10%, rgba(255, 255, 255, 0.05), transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .auth-aside {
        border-right: none;
        border-bottom: 1px solid rgba(106, 128, 160, 0.15);
        padding: 30px 24px;
    }
}

.auth-aside-mark {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(106, 128, 160, 0.35);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 8px 25px rgba(106, 128, 160, 0.25);
}

.auth-aside-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.auth-aside-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 12px;
    font-weight: 700;
}

.auth-aside-title {
    font-family: var(--font-cyber);
    font-weight: 900;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 14px;
}

.auth-aside-title span {
    color: #cbd5e1;
}

.auth-aside-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    color: #94a3b8;
    margin-bottom: 24px;
}

.auth-perks {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.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;
}

.auth-submit-btn:hover {
    background: #f1f5f9;
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.45);
    transform: translateY(-1px);
}

.auth-switch-prompt {
    font-size: 0.82rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 6px;
}

.auth-switch-link-action {
    color: #ffffff;
    font-weight: 800;
    font-family: var(--font-cyber);
    cursor: pointer;
    text-decoration: none;
}

.auth-switch-link-action:hover {
    color: #93c5fd;
}

.auth-browse-footer-note {
    font-size: 0.72rem;
    color: #475569;
    text-align: center;
    margin: 0;
}

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

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

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

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

.ranvyx-prod-card {
    background: #090a0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}

.ranvyx-prod-card:hover {
    border-color: rgba(106, 128, 160, 0.45);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7);
}

.ranvyx-prod-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: #12131c;
}

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

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

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

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

.ranvyx-prod-price {
    font-size: 0.84rem;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 10px;
}

.ranvyx-stock-badge-in {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 999px;
    padding: 3px 10px;
    font-size: 0.72rem;
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.ranvyx-stock-badge-out {
    border: 1px solid rgba(239, 68, 68, 0.25);
    background: rgba(239, 68, 68, 0.08);
    border-radius: 999px;
    padding: 3px 10px;
    font-size: 0.72rem;
    color: #f87171;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.btn-prod-buy {
    width: 100%;
    background: #10111a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 7px;
    border-radius: 999px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-prod-buy:hover {
    background: #181a26;
    border-color: rgba(106, 128, 160, 0.6);
}

.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 (SCREENSHOT 13)
══════════════════════════════════════════ */
.discord-community-box {
    background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(88, 101, 242, 0.12), transparent 70%), #07080c;
    border: 1px solid rgba(88, 101, 242, 0.35);
    border-radius: 24px;
    padding: 40px;
    margin: 40px auto 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(88, 101, 242, 0.15);
}

@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 {
    color: #5865F2;
}

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

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

.btn-join-discord-lg {
    background: #5865F2;
    color: #ffffff !important;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-family: var(--font-cyber);
    padding: 12px 28px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
    transition: all 0.25s ease;
    margin-top: 14px;
}

.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;
}

/* ══════════════════════════════════════════
   MY ACCOUNT MODAL (SCREENSHOT 14)
══════════════════════════════════════════ */
.acct-modal-wrap {
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    background: linear-gradient(165deg, rgba(14, 15, 22, 0.98), rgba(7, 8, 12, 0.99));
    border: 1px solid rgba(106, 128, 160, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 35px rgba(106, 128, 160, 0.15);
    padding: 24px;
    position: relative;
}

.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;
}

.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(106, 128, 160, 0.25);
    background: rgba(106, 128, 160, 0.06);
    margin-bottom: 12px;
}

.acct-avatar-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4b5d78, #6a80a0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-cyber);
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    border: 2px solid rgba(106, 128, 160, 0.5);
    position: relative;
    flex-shrink: 0;
}

.acct-avatar-tag {
    position: absolute;
    bottom: -6px;
    font-size: 0.52rem;
    font-weight: 800;
    font-family: 'Space Mono', monospace;
    background: #090a0f;
    border: 1px solid rgba(106, 128, 160, 0.4);
    color: #93c5fd;
    padding: 1px 5px;
    border-radius: 999px;
}

.acct-user-name {
    font-size: 1.1rem;
    font-weight: 900;
    color: #ffffff;
    font-family: var(--font-cyber);
    line-height: 1.2;
}

.acct-user-id {
    font-size: 0.72rem;
    color: #64748b;
    font-family: 'Space Mono', monospace;
    margin-top: 2px;
}

.acct-wallet-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-radius: 10px;
    background: #090a0f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 14px;
}

.acct-wallet-label {
    font-size: 0.8rem;
    color: #94a3b8;
}

.acct-wallet-amount {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-cyber);
}

.acct-actions-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.acct-action-btn-item {
    background: #090a0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 16px;
    text-decoration: none !important;
    color: #ffffff !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.2s ease;
}

.acct-action-btn-item:hover {
    border-color: rgba(106, 128, 160, 0.5);
    background: #0f1118;
    transform: translateY(-2px);
}

.acct-action-icon-wrap {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(106, 128, 160, 0.12);
    border: 1px solid rgba(106, 128, 160, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
    font-size: 0.85rem;
    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.68rem;
    color: #64748b;
}

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

.acct-pwd-row:hover {
    border-color: rgba(106, 128, 160, 0.5);
    background: #0f1118;
}

.btn-acct-logout {
    width: 100%;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444 !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;
}

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

@media (max-width: 560px) {
    .wheel-stage-wrap {
        width: 350px;
        height: 350px;
    }
    .wheel-canvas-disc {
        width: 350px !important;
        height: 350px !important;
    }
    .wheel-center-spin-hub {
        width: 84px !important;
        height: 84px !important;
    }
}

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

.wheel-disc-box {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.95), 0 0 25px rgba(56, 189, 248, 0.12);
}

.wheel-canvas-disc {
    width: 520px;
    height: 520px;
    border-radius: 50%;
    display: block;
}

.wheel-center-spin-hub {
    position: absolute;
    width: 114px;
    height: 114px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #242738, #0e1017 80%);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.95), inset 0 0 14px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.wheel-center-spin-hub:hover {
    transform: scale(1.06);
    border-color: rgba(96, 165, 250, 0.65);
    box-shadow: 0 0 35px rgba(96, 165, 250, 0.4);
}

.wheel-center-spin-hub span {
    font-family: var(--font-cyber), Kanit, sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 2px;
    color: #ffffff;
    user-select: none;
}

.btn-wheel-action-spin {
    background: rgba(20, 22, 32, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 10px 42px;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--font-cyber), Kanit, sans-serif;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    transition: all 0.25s ease;
}

.btn-wheel-action-spin:hover {
    background: #181b28;
    border-color: rgba(96, 165, 250, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(96, 165, 250, 0.2);
}

.wheel-prizes-horizontal-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.wheel-strip-card {
    background: #090a10;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
}

.wheel-strip-card:hover {
    border-color: rgba(96, 165, 250, 0.4);
    background: #0f111a;
    transform: translateY(-2px);
}

.wheel-strip-thumb {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
    background: #141622;
    padding: 2px;
}

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

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

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




