/* ===================================================
   AccountPlug — Elite Crimson Cyber Storefront Stylesheet
   =================================================== */

:root {
    color-scheme: dark;
    /* Pure Electric Crimson Red Palette */
    --red-primary: #ff1e38;
    --red-bright: #ff334b;
    --red-dark: #d40c24;
    --red-deep: #160408;
    --red-glow: rgba(255, 30, 56, 0.4);
    --red-glow-strong: rgba(255, 30, 56, 0.75);
    --red-surface: rgba(255, 30, 56, 0.08);
    --red-surface-hover: rgba(255, 30, 56, 0.15);
    --red-border: rgba(255, 30, 56, 0.28);
    --red-border-bright: rgba(255, 50, 75, 0.6);

    /* Backgrounds: Deep Stealth Obsidian */
    --bg-primary: #07070a;
    --bg-secondary: #0c0b11;
    --bg-card: #121018;
    --bg-card-hover: #191623;
    --border: #1f1b29;
    --border-light: #2c273a;

    /* Text */
    --text-primary: #f5f5fc;
    --text-secondary: #9a9ab5;
    --text-muted: #5e5d75;

    /* Accents */
    --green: #22c55e;
    --green-glow: rgba(34, 197, 94, 0.35);

    /* Geometry */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 26px;
    --radius-full: 9999px;

    /* Fonts */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Curves */
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --spring: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

.hidden {
    display: none !important;
}

/* ========================================
   Interactive Background & Ambient FX
   ======================================== */

#cyber-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    opacity: 0.95;
}

.ambient-glow {
    position: fixed;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 30, 56, 0.14) 0%, rgba(212, 12, 36, 0.04) 40%, transparent 70%);
    filter: blur(50px);
    transition: opacity 0.4s ease;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--red-dark), var(--red-primary), #fff, var(--red-primary));
    background-size: 200% 100%;
    animation: scrollGleam 2.5s linear infinite;
    z-index: 9999;
    box-shadow: 0 0 14px var(--red-glow-strong);
    transition: width 0.08s ease-out;
}

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

/* ========================================
   Typography & Utilities
   ======================================== */

.red-accent {
    color: var(--red-primary);
    text-shadow: 0 0 16px var(--red-glow);
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--red-primary) 50%, var(--red-bright) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4.5s ease infinite alternate;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--red-primary);
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 6px 16px;
    background: var(--red-surface);
    border: 1px solid var(--red-border);
    border-radius: var(--radius-full);
    box-shadow: 0 0 20px rgba(255, 30, 56, 0.15);
    animation: tagPulse 3s infinite ease-in-out;
}

@keyframes tagPulse {
    0%, 100% { border-color: var(--red-border); box-shadow: 0 0 15px rgba(255, 30, 56, 0.15); }
    50% { border-color: var(--red-border-bright); box-shadow: 0 0 28px rgba(255, 30, 56, 0.35); }
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
}

/* ========================================
   Buttons & CTAs
   ======================================== */

.btn-primary, .btn-ghost, .btn-discord, .btn-nav-shop, .btn-buy-lg, .filter-btn {
    position: relative;
    overflow: hidden;
    user-select: none;
}

/* Animated Light Beam Sweep */
.btn-primary::after, .btn-nav-shop::after, .btn-buy-lg::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -80%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(25deg);
    animation: sweepBeam 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    pointer-events: none;
}

@keyframes sweepBeam {
    0%, 65% { left: -80%; }
    100% { left: 180%; }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 28px var(--red-glow), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    animation: btnRedGlow 3s ease-in-out infinite;
}

@keyframes btnRedGlow {
    0%, 100% { box-shadow: 0 6px 28px var(--red-glow), 0 0 0 1px rgba(255, 255, 255, 0.2) inset; }
    50% { box-shadow: 0 8px 38px rgba(255, 30, 56, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.35) inset; }
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 45px var(--red-glow-strong), 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.99);
}

.btn-primary svg {
    transition: transform 0.3s var(--spring);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light);
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.btn-ghost:hover {
    border-color: var(--red-primary);
    background: var(--red-surface);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 30, 56, 0.2);
}

.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 34px;
    background: #5865F2;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 28px rgba(88, 101, 242, 0.35);
}

.btn-discord:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.55);
    background: #4752c4;
}

.btn-discord svg {
    transition: transform 0.3s var(--spring);
}

.btn-discord:hover svg {
    transform: scale(1.15) rotate(-6deg);
}

/* ========================================
   Navbar
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--transition);
    background: rgba(7, 7, 10, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 30, 56, 0.08);
}

.navbar.scrolled {
    background: rgba(7, 7, 10, 0.94);
    border-bottom-color: rgba(255, 30, 56, 0.22);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.nav-container {
    max-width: 1220px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

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

.logo-wrapper {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--red-deep);
    border: 1px solid var(--red-border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 30, 56, 0.25);
    transition: transform 0.4s var(--spring), box-shadow 0.4s ease;
}

.logo-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.logo:hover .logo-wrapper {
    transform: rotate(-6deg) scale(1.12);
    box-shadow: 0 0 25px var(--red-glow-strong);
    border-color: var(--red-primary);
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
    padding: 6px 0;
}

.nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--red-primary);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--red-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-nav-shop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.86rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--red-glow);
}

.btn-nav-shop:hover {
    box-shadow: 0 6px 28px rgba(255, 30, 56, 0.65);
    transform: translateY(-2px) scale(1.03);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   Hero Section & Showcase Card
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 90px;
    overflow: hidden;
    z-index: 2;
}

.hero-radial-glow {
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 650px;
    background: radial-gradient(ellipse at center, rgba(255, 30, 56, 0.2) 0%, rgba(212, 12, 36, 0.05) 45%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: heroPulse 7s ease-in-out infinite alternate;
}

@keyframes heroPulse {
    0% { transform: translateX(-50%) scale(0.9); opacity: 0.7; }
    100% { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 30, 56, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 30, 56, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.8) 0%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Radar Sonar Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--red-surface);
    border: 1px solid var(--red-border);
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    box-shadow: 0 0 20px rgba(255, 30, 56, 0.15);
}

.radar-ping {
    position: relative;
    width: 10px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ping-dot {
    width: 8px;
    height: 8px;
    background: var(--red-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--red-primary);
}

.radar-ping::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1.5px solid var(--red-primary);
    animation: radarExpand 2s cubic-bezier(0.1, 0.7, 0.1, 1) infinite;
}

@keyframes radarExpand {
    0% { width: 8px; height: 8px; opacity: 1; }
    100% { width: 28px; height: 28px; opacity: 0; }
}

.badge-text {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--red-primary);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 38px;
    line-height: 1.75;
}

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

.hero-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.trust-bullet {
    width: 6px;
    height: 6px;
    background: var(--red-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--red-primary);
}

/* Showcase Hologram Card */
.hero-showcase {
    position: relative;
}

.showcase-card {
    background: rgba(18, 16, 25, 0.85);
    border: 1px solid var(--red-border);
    border-radius: var(--radius-xl);
    padding: 34px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 45px rgba(255, 30, 56, 0.18);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--spring), box-shadow 0.4s ease;
}

.showcase-card:hover {
    transform: translateY(-5px);
    border-color: var(--red-border-bright);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.75), 0 0 60px rgba(255, 30, 56, 0.3);
}

.showcase-card-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 30, 56, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.showcase-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.showcase-logo-ring {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-deep);
    box-shadow: 0 0 20px rgba(255, 30, 56, 0.35);
}

.showcase-logo-ring::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--red-primary), transparent 60%, var(--red-primary));
    z-index: 0;
    animation: ringRotate 4s linear infinite;
}

@keyframes ringRotate {
    to { transform: rotate(360deg); }
}

.showcase-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    background: #000;
}

.showcase-meta h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
}

.showcase-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--red-primary);
    margin-bottom: 4px;
}

.status-indicator {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--green);
}

.showcase-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 24px;
    text-align: center;
}

.ss-val {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
}

.ss-red {
    color: var(--red-primary);
    text-shadow: 0 0 12px var(--red-glow);
}

.ss-lbl {
    font-size: 0.74rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 2px;
}

.showcase-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feed-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.feed-item:hover {
    background: rgba(255, 30, 56, 0.05);
    border-color: var(--red-border);
}

.feed-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--red-surface);
    color: var(--red-primary);
    font-size: 0.95rem;
}

.feed-info {
    flex: 1;
}

.feed-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
}

.feed-time {
    font-size: 0.74rem;
    color: var(--text-muted);
}

.feed-tag {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    background: var(--red-surface);
    color: var(--red-primary);
    border: 1px solid var(--red-border);
}

/* ========================================
   Telemetry Stats Section
   ======================================== */

.stats {
    padding: 0 24px 100px;
    position: relative;
    z-index: 2;
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 44px 48px;
    background: rgba(16, 14, 22, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--red-border);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 35px rgba(255, 30, 56, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.stats-container:hover {
    border-color: var(--red-border-bright);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(255, 30, 56, 0.22);
}

.stat-card {
    flex: 1;
    text-align: center;
    padding: 10px 18px;
    transition: transform 0.3s var(--spring);
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-prefix-label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--red-primary);
    margin-bottom: 6px;
}

.stat-number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.stat-card h3 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--red-primary);
    text-shadow: 0 0 14px var(--red-glow);
}

.stat-static {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--red-primary);
    text-shadow: 0 0 16px var(--red-glow);
}

.stat-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 6px;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 58px;
    background: linear-gradient(180deg, transparent, var(--red-border), transparent);
}

/* ========================================
   Features Section (Pillars)
   ======================================== */

.features {
    padding: 110px 24px;
    position: relative;
    z-index: 2;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 38px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--spring), border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    transform-style: preserve-3d;
}

.feature-index {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-index {
    color: var(--red-primary);
    text-shadow: 0 0 12px var(--red-glow);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(350px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 30, 56, 0.14), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover {
    border-color: var(--red-border-bright);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(255, 30, 56, 0.18);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-surface);
    border: 1px solid var(--red-border);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    color: var(--red-primary);
    box-shadow: 0 0 20px rgba(255, 30, 56, 0.2);
    transition: transform 0.4s var(--spring);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(6deg);
    border-color: var(--red-primary);
    box-shadow: 0 0 30px var(--red-glow-strong);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Catalog Section
   ======================================== */

.catalog {
    padding: 110px 24px;
    background: rgba(12, 11, 17, 0.7);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 30, 56, 0.08);
    border-bottom: 1px solid rgba(255, 30, 56, 0.08);
}

.catalog-container {
    max-width: 1220px;
    margin: 0 auto;
}

.catalog-header {
    text-align: left;
    margin-bottom: 24px;
}

.catalog-tag {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--red-primary);
    margin-bottom: 8px;
    display: inline-block;
}

.catalog-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.catalog-header p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Category Tabs Row (NFA, Cheats, Extra) */
.category-tabs {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 18px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 9px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 700;
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    border-color: var(--red-border);
    color: #fff;
    background: rgba(255, 255, 255, 0.02);
}

.tab-btn.active {
    background: rgba(255, 30, 56, 0.16);
    color: #fff;
    border-color: var(--red-primary);
    box-shadow: 0 0 22px rgba(255, 30, 56, 0.25);
}

.tab-btn .count {
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.25s ease;
}

.tab-btn.active .count {
    background: var(--red-primary);
    color: #fff;
    box-shadow: 0 0 10px var(--red-glow);
}

/* Sub-Filters Row (All, Rust, Arc Raiders, etc.) */
.sub-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.sub-filter-btn {
    background: #0b0a12;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.86rem;
    font-family: var(--font-body);
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sub-filter-btn:hover {
    border-color: rgba(255, 30, 56, 0.4);
    color: #fff;
    transform: translateY(-1px);
}

.sub-filter-btn.active {
    background: rgba(255, 30, 56, 0.16);
    border-color: var(--red-primary);
    color: var(--red-primary);
    font-weight: 700;
    box-shadow: 0 0 14px rgba(255, 30, 56, 0.2);
}

/* Loading & Error */
.loading-state {
    text-align: center;
    padding: 75px 24px;
    color: var(--text-muted);
}

.loader-spinner {
    width: 46px;
    height: 46px;
    border: 3px solid rgba(255, 30, 56, 0.15);
    border-top-color: var(--red-primary);
    border-right-color: var(--red-bright);
    border-radius: 50%;
    animation: crimsonSpin 0.75s linear infinite;
    margin: 0 auto 20px;
    box-shadow: 0 0 25px var(--red-glow);
}

@keyframes crimsonSpin {
    to { transform: rotate(360deg); }
}

.error-state {
    text-align: center;
    padding: 75px 24px;
    color: var(--text-muted);
}

.error-state a {
    color: var(--red-primary);
    text-decoration: underline;
    font-weight: 700;
}

/* Product Cards */
.products-grid {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0;
    transition: transform 0.25s cubic-bezier(0.2, 0, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    overflow: hidden;
    transform-style: preserve-3d;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(320px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 30, 56, 0.16), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.product-card:hover {
    border-color: var(--red-border-bright);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.55), 0 0 35px rgba(255, 30, 56, 0.2);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    position: relative;
    overflow: hidden;
    background: #08070d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--spring);
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.06);
}

.product-image-wrap.has-placeholder {
    background: linear-gradient(135deg, #160408 0%, #0c0b11 100%);
}

.product-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.product-badge.in-stock {
    background: rgba(10, 20, 15, 0.85);
    color: var(--green);
    border: 1px solid rgba(34, 197, 94, 0.4);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.2);
}

.product-badge.out-of-stock {
    background: rgba(25, 8, 10, 0.85);
    color: var(--red-primary);
    border: 1px solid var(--red-border);
}

.product-card-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-icon-wrap {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-deep);
    border: 1px solid var(--red-border);
    border-radius: var(--radius-md);
    font-size: 1.7rem;
    box-shadow: 0 0 20px rgba(255, 30, 56, 0.25);
    transition: transform 0.4s var(--spring);
}

.product-card:hover .product-icon-wrap {
    transform: scale(1.15) rotate(6deg);
    border-color: var(--red-primary);
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.product-card:hover h3 {
    color: #fff;
}

.product-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    flex-grow: 1;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.product-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.74rem;
    color: var(--text-muted);
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--red-primary);
    text-shadow: 0 0 12px var(--red-glow);
}

.product-price-slash {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 6px;
}

.view-details-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--red-primary);
    padding: 6px 14px;
    background: var(--red-surface);
    border: 1px solid var(--red-border);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.view-details-hint svg {
    transition: transform 0.3s var(--spring);
}

.product-card:hover .view-details-hint {
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 18px var(--red-glow);
}

.product-card:hover .view-details-hint svg {
    transform: translateX(4px);
}

/* ========================================
   FAQ Accordion Section
   ======================================== */

.faq {
    padding: 110px 24px;
    position: relative;
    z-index: 2;
}

.faq-container {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--red-border);
}

.faq-item.active {
    border-color: var(--red-border-bright);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 30, 56, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--red-primary);
}

.faq-chevron {
    transition: transform 0.4s var(--spring);
    color: var(--text-muted);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--red-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 26px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 26px 24px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   CTA Banner
   ======================================== */

.cta {
    position: relative;
    padding: 130px 24px;
    text-align: center;
    overflow: hidden;
    z-index: 2;
}

.cta-glow {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(255, 30, 56, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

.cta-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(18, 16, 25, 0.85);
    border: 1px solid var(--red-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(24px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 50px rgba(255, 30, 56, 0.15);
}

.cta-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--red-primary);
    margin-bottom: 16px;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 38px;
    line-height: 1.75;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    padding: 70px 24px 40px;
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1220px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 360px;
}

.footer-brand .logo {
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    gap: 60px;
}

.f-col h4 {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--red-primary);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.f-col a {
    display: block;
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 10px;
    transition: var(--transition);
}

.f-col a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-badge {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--red-primary);
    padding: 4px 12px;
    background: var(--red-surface);
    border: 1px solid var(--red-border);
    border-radius: var(--radius-full);
}

/* ========================================
   Product Detail Modal
   ======================================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(4, 4, 8, 0.8);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    perspective: 1200px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    position: relative;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg-card);
    border: 1px solid var(--red-border-bright);
    border-radius: var(--radius-xl);
    box-shadow: 0 35px 95px rgba(0, 0, 0, 0.75), 0 0 60px rgba(255, 30, 56, 0.25);
    transform: translateY(35px) scale(0.92) rotateX(10deg);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.modal-overlay.active .modal-card {
    transform: translateY(0) scale(1) rotateX(0deg);
    opacity: 1;
}

.modal-card::-webkit-scrollbar {
    width: 6px;
}
.modal-card::-webkit-scrollbar-track {
    background: transparent;
}
.modal-card::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 3px;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--red-surface);
    color: #fff;
    border-color: var(--red-primary);
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    gap: 0;
    align-items: stretch;
}

.modal-left-col {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    background: #06050a;
    border-right: 1px solid var(--border);
}

.modal-image-col {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 24px 12px 24px;
    overflow: hidden;
    position: relative;
}

.modal-image-col img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 30, 56, 0.25);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.65), 0 0 25px rgba(255, 30, 56, 0.18);
    transition: transform 0.6s var(--spring);
}

.modal-card:hover .modal-image-col img {
    transform: scale(1.03);
}

.modal-image-col .modal-icon-placeholder {
    font-size: 4.8rem;
    color: var(--red-primary);
    filter: drop-shadow(0 0 25px var(--red-glow-strong));
}

.modal-desc-wrap {
    padding: 0 24px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.modal-desc-header {
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-desc-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: var(--red-primary);
    text-transform: uppercase;
}

.modal-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    white-space: pre-line;
    word-break: break-word;
    max-height: 220px;
    overflow-y: auto;
}

.modal-desc::-webkit-scrollbar {
    width: 4px;
}

.modal-desc::-webkit-scrollbar-thumb {
    background: var(--red-primary);
    border-radius: 4px;
}

.modal-info-col {
    flex: 1;
    padding: 34px;
    display: flex;
    flex-direction: column;
}

.modal-badge-row {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.modal-info-col h2 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: 14px;
    color: var(--text-primary);
    padding-right: 36px;
    letter-spacing: -0.5px;
}

.modal-details {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.modal-detail-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
}

/* Custom Cyber Variant Picker & Native Fallback */
.variant-picker-container {
    margin-bottom: 22px;
    position: relative;
}

.variant-picker-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.variant-picker-label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red-primary);
    box-shadow: 0 0 10px var(--red-glow-strong);
}

.custom-variant-wrapper {
    position: relative;
    width: 100%;
}

.custom-variant-trigger {
    width: 100%;
    padding: 13px 18px;
    background: #110f18;
    border: 1px solid var(--red-border);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    user-select: none;
}

.custom-variant-trigger:hover,
.custom-variant-wrapper.open .custom-variant-trigger {
    border-color: var(--red-bright);
    box-shadow: 0 0 18px var(--red-glow);
    background: #161322;
}

.custom-variant-trigger .trigger-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-variant-trigger .trigger-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
}

.custom-variant-trigger .trigger-price {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--red-bright);
    background: rgba(255, 30, 56, 0.14);
    border: 1px solid rgba(255, 30, 56, 0.35);
    padding: 3px 9px;
    border-radius: 6px;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
}

.custom-variant-arrow {
    color: var(--red-primary);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.custom-variant-wrapper.open .custom-variant-arrow {
    transform: rotate(180deg);
}

.custom-variant-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #100e17;
    border: 1px solid rgba(255, 30, 56, 0.45);
    border-radius: var(--radius-sm);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.95), 0 0 25px rgba(255, 30, 56, 0.18);
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
    padding: 6px;
    animation: variantDropdownFade 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes variantDropdownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-variant-wrapper.open .custom-variant-menu {
    display: block;
}

.custom-variant-menu::-webkit-scrollbar {
    width: 6px;
}
.custom-variant-menu::-webkit-scrollbar-track {
    background: #0c0b11;
    border-radius: 3px;
}
.custom-variant-menu::-webkit-scrollbar-thumb {
    background: var(--red-border);
    border-radius: 3px;
}
.custom-variant-menu::-webkit-scrollbar-thumb:hover {
    background: var(--red-primary);
}

.custom-variant-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.18s ease;
    border: 1px solid transparent;
    margin-bottom: 3px;
    background: rgba(255, 255, 255, 0.02);
}

.custom-variant-item:last-child {
    margin-bottom: 0;
}

.custom-variant-item:hover {
    background: rgba(255, 30, 56, 0.12);
    border-color: rgba(255, 30, 56, 0.35);
    transform: translateX(2px);
}

.custom-variant-item.active {
    background: rgba(255, 30, 56, 0.18);
    border-color: var(--red-primary);
    box-shadow: 0 0 15px rgba(255, 30, 56, 0.15) inset;
}

.custom-variant-item .item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-variant-item .item-radio {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.custom-variant-item.active .item-radio {
    border-color: var(--red-primary);
    background: var(--red-primary);
    box-shadow: 0 0 10px var(--red-glow);
}

.custom-variant-item.active .item-radio::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
}

.custom-variant-item .item-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
}

.custom-variant-item .item-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-variant-item .item-stock {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    padding: 3px 8px;
    border-radius: 4px;
}

.custom-variant-item .item-price {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--red-bright);
}

/* Native select fallback styling (Deep Obsidian & Crimson, never white) */
select,
option {
    color-scheme: dark !important;
    background-color: #121019 !important;
    color: #ffffff !important;
}

.variant-select {
    color-scheme: dark !important;
    width: 100%;
    padding: 13px 18px;
    background-color: #121019 !important;
    border: 1px solid var(--red-border);
    border-radius: var(--radius-sm);
    color: #ffffff !important;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 20px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    outline: none;
    transition: var(--transition);
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23ff1e38' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
}

.variant-select:hover {
    border-color: var(--red-bright);
    box-shadow: 0 0 16px var(--red-glow);
}

.variant-select:focus {
    border-color: var(--red-primary);
    box-shadow: 0 0 20px var(--red-glow);
}

.variant-select option {
    color-scheme: dark !important;
    background-color: #121019 !important;
    color: #ffffff !important;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 12px 16px;
    border: none;
}

.variant-select option:checked,
.variant-select option:hover {
    background-color: #24141e !important;
    color: #ff334b !important;
}

.modal-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-top: 1px solid var(--border);
    margin-bottom: 20px;
}

.modal-price {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--red-primary);
    text-shadow: 0 0 15px var(--red-glow);
}

.modal-price-slash {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 8px;
}

.modal-stock {
    font-size: 0.82rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

.modal-stock.in-stock {
    background: rgba(34, 197, 94, 0.12);
    color: var(--green);
    border: 1px solid rgba(34, 197, 94, 0.28);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.2);
}

.modal-stock.out-of-stock {
    background: var(--red-surface);
    color: var(--red-primary);
    border: 1px solid var(--red-border);
}

#modal-buy-wrap .btn-buy-lg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 32px var(--red-glow);
    text-decoration: none;
    animation: btnRedGlow 3s infinite ease-in-out;
}

#modal-buy-wrap .btn-buy-lg:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 45px var(--red-glow-strong);
}

#modal-buy-wrap .btn-buy-lg:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    animation: none;
}

/* ========================================
   Scroll Reveal Fade
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive Adjustments
   ======================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content {
        text-align: center;
    }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(7, 7, 10, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        border-bottom: 1px solid var(--red-border);
    }

    .nav-links.open {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .btn-nav-shop {
        display: none;
    }

    .hero {
        padding: 130px 20px 70px;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 28px;
        padding: 36px 24px;
    }

    .stat-divider {
        width: 80px;
        height: 1px;
    }

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

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

    .hero-buttons, .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-ghost, .btn-discord {
        width: 100%;
        justify-content: center;
    }

    .modal-body {
        flex-direction: column;
    }

    .modal-left-col {
        flex: none;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .modal-image-col {
        width: 100%;
        padding: 18px 18px 8px 18px;
    }

    .modal-image-col img {
        width: 100%;
        height: auto;
    }

    .modal-desc-wrap {
        padding: 0 18px 18px 18px;
    }

    .modal-info-col {
        padding: 24px 18px;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-nav {
        width: 100%;
        justify-content: space-between;
    }

    .payment-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .catalog-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-filter-actions {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .purchase-toast {
        left: 14px;
        right: 14px;
        bottom: 16px;
        max-width: unset;
    }
}

/* ===================================================
   Payment Methods Trust Ribbon
   =================================================== */
.payment-ribbon {
    background: #08070d;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    position: relative;
    overflow: hidden;
}

.payment-ribbon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 30, 56, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.payment-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.payment-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
}

.payment-title .lock-icon {
    color: var(--red-primary);
    display: flex;
    align-items: center;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: var(--transition);
    user-select: none;
}

.payment-pill:hover {
    border-color: var(--red-border);
    background: rgba(255, 30, 56, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.payment-crypto-icon {
    font-weight: 900;
    font-size: 0.95rem;
    display: inline-block;
}

.payment-crypto-icon.btc { color: #f7931a; }
.payment-crypto-icon.eth { color: #627eea; }
.payment-crypto-icon.ltc { color: #345d9d; }
.payment-crypto-icon.usdt { color: #26a17b; }

.payment-badge.cashapp {
    color: #00d632;
    font-weight: 900;
    font-size: 0.95rem;
}

.payment-shield {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--text-muted);
}

.payment-shield .shield-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green-glow);
}

/* ===================================================
   Catalog Search & Live Filter Controls
   =================================================== */
.catalog-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.catalog-search-wrap {
    position: relative;
    flex: 1;
    min-width: 260px;
}

.catalog-search-wrap .search-icon {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.catalog-search-wrap input {
    width: 100%;
    padding: 13px 40px 13px 44px;
    background: #0e0c14;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    outline: none;
    transition: var(--transition);
}

.catalog-search-wrap input:hover {
    border-color: var(--border-light);
}

.catalog-search-wrap input:focus {
    border-color: var(--red-primary);
    box-shadow: 0 0 16px var(--red-glow);
    background: #110f19;
}

.search-clear {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--text-secondary);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    cursor: pointer;
    transition: var(--transition);
}

.search-clear:hover {
    background: var(--red-primary);
    color: #fff;
}

.search-clear.hidden {
    display: none;
}

.catalog-filter-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.stock-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0e0c14;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
}

.stock-filter-toggle:hover {
    border-color: var(--border-light);
}

.stock-filter-toggle input {
    display: none;
}

.toggle-track {
    width: 32px;
    height: 18px;
    background: #1f1b29;
    border-radius: var(--radius-full);
    position: relative;
    transition: background 0.2s ease;
}

.toggle-thumb {
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.2s ease;
}

.stock-filter-toggle input:checked + .toggle-track {
    background: var(--red-primary);
    box-shadow: 0 0 10px var(--red-glow);
}

.stock-filter-toggle input:checked + .toggle-track .toggle-thumb {
    transform: translateX(14px);
}

.toggle-text {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
}

.sort-select-wrap {
    position: relative;
}

.catalog-sort-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #0e0c14;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.84rem;
    font-weight: 700;
    padding: 11px 36px 11px 14px;
    cursor: pointer;
    outline: none;
    transition: var(--transition);
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23ff1e38' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.catalog-sort-select:hover {
    border-color: var(--border-light);
}

.catalog-sort-select:focus {
    border-color: var(--red-primary);
    box-shadow: 0 0 14px var(--red-glow);
}

.products-count-badge {
    background: rgba(255, 30, 56, 0.08);
    border: 1px solid var(--red-border);
    color: var(--red-bright);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.4px;
    white-space: nowrap;
}

/* ===================================================
   Customer Reviews / Vouches Section
   =================================================== */
.reviews {
    padding: 100px 0;
    position: relative;
    background: #08070d;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.review-trust-score {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: rgba(255, 184, 0, 0.06);
    border: 1px solid rgba(255, 184, 0, 0.28);
    border-radius: var(--radius-full);
    margin-bottom: 18px;
}

.stars-row {
    color: #ffb800;
    font-size: 1rem;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 0.78rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.8px;
}

.rating-divider {
    color: var(--text-muted);
}

.rating-count {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    max-width: 1240px;
    margin: 40px auto 0;
    padding: 0 24px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: var(--red-border);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55), 0 0 20px rgba(255, 30, 56, 0.12);
}

.review-card:hover::before {
    opacity: 1;
}

.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: #ffffff;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.user-name {
    font-size: 0.92rem;
    font-weight: 800;
    color: #ffffff;
}

.user-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-stars {
    color: #ffb800;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
}

.product-bought-tag {
    color: var(--red-bright);
    font-weight: 700;
    background: rgba(255, 30, 56, 0.08);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 30, 56, 0.2);
}

.review-time {
    color: var(--text-muted);
    font-weight: 600;
}

.reviews-cta {
    text-align: center;
    margin-top: 36px;
}

.btn-ghost-sm {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.btn-ghost-sm:hover {
    border-color: var(--red-primary);
    color: #ffffff;
    background: var(--red-surface);
    box-shadow: 0 0 20px var(--red-glow);
    transform: translateY(-2px);
}

/* ===================================================
   Live Recent Purchase Activity Toast
   =================================================== */
.purchase-toast {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 999;
    background: rgba(14, 12, 20, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--red-border);
    border-radius: var(--radius-md);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.85), 0 0 28px rgba(255, 30, 56, 0.2);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 380px;
    transform: translateY(120px) scale(0.92);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.purchase-toast.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.toast-indicator {
    width: 10px;
    height: 10px;
    position: relative;
    flex-shrink: 0;
}

.toast-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    display: block;
    box-shadow: 0 0 10px var(--green);
    animation: toastRadarPing 2s infinite ease-in-out;
}

@keyframes toastRadarPing {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 14px var(--green); }
    100% { transform: scale(0.9); opacity: 0.8; }
}

.toast-content {
    flex: 1;
}

.toast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 2px;
}

.toast-buyer {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
}

.toast-time {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--red-bright);
}

.toast-product {
    font-size: 0.88rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.35;
}

.toast-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--green);
    margin-top: 3px;
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.85rem;
    padding: 4px;
    border-radius: 4px;
    line-height: 1;
    transition: var(--transition);
}

.toast-close:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}
