/* ==========================================================================
   RUSTED.VIP - Ultra-Scannable Tech UI Design System
   High Contrast Typography (Inter & JetBrains Mono), Clear Visual Anchors & High Readability
   ========================================================================== */

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

:root {
    /* Pure Pitch Black Canvas */
    --bg-base: #000000;
    --bg-surface: #000000;
    --bg-card: transparent;
    --bg-card-hover: transparent;
    --bg-glass: rgba(0, 0, 0, 0.95);
    --bg-glass-card: transparent;

    /* Zero Outlines & Borders */
    --border-subtle: none;
    --border-hover: none;
    --border-accent: none;

    /* High Visibility Accents */
    --accent-red: #ff4655;
    --accent-red-dark: #d63031;
    --accent-red-glow: rgba(255, 70, 85, 0.4);
    --accent-purple: #8a2be2;
    --accent-gold: #ffb703;
    --accent-success: #2ecc71;

    /* Ultra-Legible Typography Stack */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* High Contrast Text Colors (Optimized for Fast Scanning) */
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    /* High contrast light grey */
    --text-muted: #94a3b8;
    /* Readable muted grey */

    /* Subtle Precision Roundness System */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 10px;
    --radius-pill: 9999px;

    /* Spacing & Heights */
    --header-height: 72px;

    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global Base (Unselectable & Non-Copyable Text Lock) */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    outline: none !important;
}

/* Allow text selection inside editable input/textarea fields */
input,
textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

html {
    scroll-behavior: smooth;
    color-scheme: dark;
    scrollbar-gutter: stable;
}

body {
    background-color: #000000;
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Ambani-Style Ultra-Luxury Hero Entrance Animation (1.4s Staggered Reveal)
   ========================================================================== */
/* ==========================================================================
   100% Reliable Page Open & Reload Staggered Animation System
   ========================================================================== */
.hero-content>*,
.section-header>*,
.prereq-card,
.accordion-item,
.status-matrix-box,
.faq-accordion .accordion-item,
.support-card,
.auth-card-wrapper,
.cta-portal-box,
.terms-content>* {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

body.page-loaded .hero-content>*:nth-child(1),
body.page-loaded .section-header>*:nth-child(1),
body.page-loaded .auth-card-wrapper {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

body.page-loaded .hero-content>*:nth-child(2),
body.page-loaded .section-header>*:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}

body.page-loaded .hero-content>*:nth-child(3),
body.page-loaded .section-header>*:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

body.page-loaded .hero-content>*:nth-child(4),
body.page-loaded .hero-content .hero-buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.55s;
}

body.page-loaded .prereq-card,
body.page-loaded .accordion-item,
body.page-loaded .status-matrix-box,
body.page-loaded .support-card,
body.page-loaded .cta-portal-box,
body.page-loaded .terms-content>* {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

body.page-loaded .prereq-card:nth-child(1),
body.page-loaded .accordion-item:nth-child(1) {
    transition-delay: 0.35s;
}

body.page-loaded .prereq-card:nth-child(2),
body.page-loaded .accordion-item:nth-child(2) {
    transition-delay: 0.48s;
}

body.page-loaded .prereq-card:nth-child(3),
body.page-loaded .accordion-item:nth-child(3) {
    transition-delay: 0.61s;
}

body.page-loaded .prereq-card:nth-child(4),
body.page-loaded .accordion-item:nth-child(4) {
    transition-delay: 0.74s;
}

/* ==========================================================================
   Store Skeleton Wireframe Loading System (Slow Network / Offline Resilient)
   ========================================================================== */
.skeleton-card {
    background: rgba(14, 14, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    height: 380px;
    position: relative;
}

.skeleton-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: skeletonShimmer 1.5s infinite;
}

@keyframes skeletonShimmer {
    100% {
        left: 100%;
    }
}

.skeleton-banner {
    height: 180px;
    background: rgba(255, 255, 255, 0.04);
}

.skeleton-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.skeleton-line {
    height: 14px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
}

.skeleton-title {
    width: 70%;
    height: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.skeleton-desc {
    width: 90%;
}

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

.skeleton-price {
    width: 80px;
    height: 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.skeleton-btn {
    width: 110px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

/* Disabled Background Glow Blobs */
.aurora-background {
    display: none !important;
}

.aurora-blob {
    display: none !important;
}

#particleCanvas {
    display: none !important;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.section-spacing {
    padding: 80px 0;
    position: relative;
}

#previewSection {
    padding-top: 0;
    padding-bottom: 0;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.6;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-red);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.text-accent {
    color: var(--accent-red);
}

.text-gold {
    color: var(--accent-gold);
}

.text-success {
    color: var(--accent-success);
}

/* Header Navigation Bar */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: none;
    z-index: 100;
}

.header-container {
    max-width: 100%;
    margin: 0;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

/* Account Menu & Popover Dropdown */
.account-menu-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.account-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    overflow: hidden;
    padding: 0;
}

.account-icon-btn:hover,
.account-icon-btn.active {
    border-color: var(--accent-red);
    box-shadow: 0 0 15px var(--accent-red-glow);
    background: rgba(255, 70, 85, 0.15);
}

.account-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.account-dropdown-card {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 240px;
    background: #0e0e14;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 70, 85, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.account-dropdown-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.account-dropdown-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.account-avatar-preview {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    overflow: hidden;
    flex-shrink: 0;
}

.account-user-details {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
}

.account-display-name {
    font-weight: 800;
    font-size: 0.92rem;
    color: #fff;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.account-email {
    font-size: 0.75rem;
    color: var(--text-secondary);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.account-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 8px 0 12px 0;
}

.account-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #ddd;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.account-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.account-dropdown-item.logout-item {
    color: var(--accent-red);
}

.account-dropdown-item.logout-item:hover {
    background: rgba(255, 70, 85, 0.15);
    color: #ff4655;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-badge {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-purple));
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    box-shadow: 0 0 15px var(--accent-red-glow);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 6px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.nav-item {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    transition: all 0.2s ease;
}

.nav-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-item.active {
    color: #fff;
    background: rgba(255, 70, 85, 0.18);
    border: 1px solid rgba(255, 70, 85, 0.4);
    font-weight: 700;
}

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

.btn-discord-nav {
    background: #5865F2;
    color: #fff;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.btn-discord-nav:hover {
    background: #4752C4;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
}

/* Mobile Hamburger Toggle */
.mobile-menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10001;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn:active {
    background: rgba(255, 70, 85, 0.2);
    border-color: var(--accent-red);
}

/* Mobile Drawer Backdrop Overlay */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: #0a0a10;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 10000;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.85);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-drawer.active {
    right: 0;
}

.mobile-drawer a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s ease;
}

.mobile-drawer a:active {
    color: var(--accent-red);
}

/* Hero Section (Landing Page Cover) */
.hero-wrapper {
    min-height: calc(85vh - 65px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 96px 0;
    text-align: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
    background: radial-gradient(circle at 50% 30%, rgba(255, 70, 85, 0.08) 0%, rgba(7, 8, 13, 0.95) 60%, #07080d 100%);
}

.setup-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 0 100px 0;
    text-align: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
    background: transparent;
}

.setup-hero::after {
    display: none;
}

.setup-hero-title {
    font-size: 3rem;
    margin: 0;
    letter-spacing: 1px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .setup-hero {
        min-height: auto;
        padding: 95px 0 40px 0;
    }

    .setup-hero-title {
        font-size: 1.75rem !important;
        letter-spacing: 0.5px;
    }

    .setup-hero .hero-content {
        margin-bottom: 24px !important;
    }
}

/* 25% Bottom Blend Gradient to Pure Dark */
.hero-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 35%, rgba(0, 0, 0, 0.8) 70%, #000000 100%);
    pointer-events: none;
    z-index: 2;
}

/* Horizontal Glowing Crimson Accent Line Divider */
.hero-bottom-divider {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 70, 85, 0.15) 15%, rgba(255, 70, 85, 0.95) 50%, rgba(255, 70, 85, 0.15) 85%, transparent 100%);
    box-shadow: 0 0 12px rgba(255, 70, 85, 0.8), 0 0 24px rgba(255, 70, 85, 0.35);
    z-index: 5;
}

.hero-particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.75;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 3;
    transition: transform 0.15s cubic-bezier(0.25, 1, 0.4, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

#heroSubtextRotator {
    display: inline-block;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

#heroSubtextRotator.is-swapping {
    opacity: 0;
    transform: translateY(-5px);
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 4px 18px 4px 5px;
    border-radius: 50px;
    margin-bottom: 28px;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    transition: all 0.25s ease;
}

.hero-pill:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.hero-pill-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-pill-text {
    font-weight: 500;
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 8px #2ecc71;
    display: inline-block;
    animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.4;
    }
}

.hero-main-title {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
}

.hero-title-brand {
    font-size: 5rem;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0.02em;
    display: inline-block;
    text-transform: uppercase;
}

.hero-title-sub {
    font-family: 'Rajdhani', var(--font-heading);
    font-size: 3.8rem;
    color: #E32636;
    /* Alizarin Crimson */
    font-weight: 800;
    letter-spacing: 0.12em;
    display: inline-block;
    margin-top: 4px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.18rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 0;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
    color: #fff;
    text-decoration: none;
    padding: 15px 34px;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 25px var(--accent-red-glow);
    transition: all 0.25s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(255, 70, 85, 0.6);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

/* VGC Emulator & HWID Evasion Workflow Widget - Highly Scannable Cards */
.emulator-workflow-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.emulator-step-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 32px 24px;
    text-align: left;
    transition: all 0.25s ease;
}

.emulator-step-card:hover {
    background: transparent;
    border: none;
    transform: translateY(-4px);
    box-shadow: none;
}

.emulator-num {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--accent-red);
    background: rgba(255, 70, 85, 0.12);
    border: 1px solid rgba(255, 70, 85, 0.3);
    width: 34px;
    height: 34px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.emulator-step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.emulator-step-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Interactive Feature Sandbox Visualizer */
.sandbox-box {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 320px 1fr;
    box-shadow: none;
}

.sandbox-controls {
    background: transparent;
    border-right: none;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sandbox-control-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sandbox-toggle-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: var(--border-subtle);
    color: var(--text-secondary);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.25s ease;
}

.sandbox-toggle-btn.active {
    background: rgba(255, 70, 85, 0.15);
    border-color: var(--accent-red);
    color: #fff;
}

.sandbox-screen-viewport {
    background: #040407;
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sandbox-canvas-mock {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Clean Image Gallery Showcase Block (index.html) */
.gallery-showcase-box {
    background: rgba(14, 14, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.gallery-featured-viewport {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #08080c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

/* Floating Prev/Next Gallery Navigation Buttons */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(14, 14, 20, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(10px);
    transition: all 0.25s cubic-bezier(0.25, 1, 0.4, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.gallery-nav-btn.nav-prev {
    left: 16px;
}

.gallery-nav-btn.nav-next {
    right: 16px;
}

.gallery-nav-btn:hover {
    background: rgba(255, 70, 85, 0.25);
    border-color: rgba(255, 70, 85, 0.6);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 16px rgba(255, 70, 85, 0.35);
}

.gallery-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-main-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: opacity;
    transition: opacity 0.45s cubic-bezier(0.25, 1, 0.4, 1);
}

.gallery-main-img.layer-active {
    opacity: 1;
    z-index: 2;
}

.gallery-main-img.layer-next {
    opacity: 0;
    z-index: 1;
}

/* Progressive Blur-Up Image Loading Architecture */
.progressive-img {
    transition: filter 0.4s cubic-bezier(0.25, 1, 0.4, 1), transform 0.4s cubic-bezier(0.25, 1, 0.4, 1), opacity 0.3s ease;
    will-change: filter, transform, opacity;
}

.progressive-img.is-blur {
    filter: blur(14px);
    transform: scale(1.04);
    opacity: 0.85;
}

.progressive-img.is-loaded {
    filter: blur(0px);
    transform: scale(1);
    opacity: 1;
}

.gallery-tabs-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.gallery-tab-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding: 12px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.gallery-tab-item * {
    pointer-events: none;
}

.gallery-tab-item:hover,
.gallery-tab-item.active {
    background: rgba(255, 70, 85, 0.12);
    border-color: var(--accent-red);
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 70, 85, 0.25);
}

.mock-agent-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 70, 85, 0.6));
    mix-blend-mode: screen;
}

.mock-esp-box {
    width: 150px;
    height: 250px;
    border: 1.5px solid var(--accent-red);
    border-radius: 0;
    position: relative;
    box-shadow: 0 0 25px var(--accent-red-glow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    opacity: 0.2;
    transition: opacity 0.35s ease;
    z-index: 2;
}

.mock-esp-box.active {
    opacity: 1;
}

.mock-target-distance {
    position: absolute;
    top: -28px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    background: rgba(255, 70, 85, 0.25);
    border: 1px solid var(--accent-red);
    color: #fff;
    padding: 2px 8px;
    border-radius: 2px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.mock-health-bar-wrapper {
    position: absolute;
    left: -10px;
    top: 0;
    width: 5px;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.mock-health-bar-fill {
    width: 100%;
    background: #2ecc71;
    box-shadow: 0 0 8px #2ecc71;
    transition: height 0.3s ease;
}

.mock-skeleton-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    filter: drop-shadow(0 0 6px var(--accent-red));
}

.mock-crosshair {
    position: absolute;
    top: 25px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #2ecc71;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 3;
}

.mock-gun-tag {
    position: absolute;
    bottom: -28px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    background: rgba(15, 16, 23, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-secondary);
    padding: 2px 10px;
    border-radius: 2px;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Store Tiers Grid (store.html) - Extremely Scannable Pricing Cards */
.pricing-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.plan-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 36px 24px 30px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.plan-card:hover {
    background: transparent;
    border: none;
    transform: translateY(-6px);
    box-shadow: none;
}

.plan-card.popular-tier {
    background: transparent;
    border: none;
    box-shadow: none;
}

.plan-card.lifetime-tier {
    background: transparent;
    border: none;
    box-shadow: none;
}

.card-top-tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.tag-red {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
    color: #fff;
    box-shadow: 0 0 15px var(--accent-red-glow);
}

.tag-gold {
    background: linear-gradient(135deg, var(--accent-gold), #e67e22);
    color: #000;
}

.plan-lbl {
    font-size: 0.72rem;
    font-weight: 900;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 8px;
    color: #fff;
}

.plan-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    min-height: 40px;
    line-height: 1.5;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
    padding-bottom: 0;
    border-bottom: none;
}

.price-display .sym {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-secondary);
}

.price-display .val {
    font-family: var(--font-mono);
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
}

.price-display .dur {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.plan-spec-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.plan-spec-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-spec-list li strong {
    color: #fff;
}

.btn-buy-plan {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: var(--border-subtle);
    color: #fff;
    font-weight: 800;
    font-size: 0.88rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s ease;
}

.btn-buy-plan:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-gold-plan {
    background: linear-gradient(135deg, var(--accent-gold), #e67e22);
    color: #000;
    border: none;
}

.btn-gold-plan:hover {
    box-shadow: 0 0 25px rgba(255, 183, 3, 0.4);
    transform: translateY(-2px);
}

/* Crypto Payment Gateway Badges Strip */
.payment-methods-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: none;
    flex-wrap: wrap;
}

.pay-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 4px 0;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Status Table (status.html) */
.status-matrix-box {
    background: #0e0e14;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(46, 204, 113, 0.05);
}

.status-matrix-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
    gap: 16px;
}

.status-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.status-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.status-table th {
    text-align: left;
    padding: 14px 18px;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.status-table td {
    padding: 18px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
}

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

.status-table tr:last-child td {
    border-bottom: none;
}

.status-pill-ok {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
    font-weight: 800;
    font-size: 0.78rem;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
}

/* FAQ Accordion (support.html) */
.faq-stack {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: none;
}

.faq-card:hover {
    border-color: transparent;
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
    font-size: 0.98rem;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: color 0.25s ease;
}

.faq-card:hover .faq-btn,
.faq-card.active .faq-btn {
    color: #ffffff;
}

.faq-btn i {
    color: var(--accent-red);
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.faq-card.active .faq-btn i {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

.faq-card.active .faq-body {
    max-height: 320px;
    padding: 0 24px 22px 24px;
}

/* Footer (Clean Crisp Grey Line Divider) */
.site-footer {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding: 80px 0 40px 0;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 14px;
    max-width: 380px;
    line-height: 1.6;
}

.footer-nav-cols {
    display: flex;
    gap: 80px;
    justify-content: flex-end;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--accent-red);
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Modal Overlay & Crypto Checkout */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 4, 8, 0.85);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: #0d0d14;
    border: none;
    border-radius: 0;
    max-width: 480px;
    width: 100%;
    padding: 36px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: var(--border-subtle);
    color: var(--text-secondary);
    width: 32px;
    height: 32px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close-icon:hover {
    background: rgba(255, 70, 85, 0.2);
    color: #fff;
}

/* ==========================================================================
   Single Product Card (Astrion-inspired Store Layout)
   ========================================================================== */
.single-product-container {
    max-width: 620px;
    margin: 0 auto;
}

.product-card-single {
    background: rgba(14, 14, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card-single:hover {
    border-color: rgba(255, 70, 85, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.product-banner-wrap {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.product-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card-body {
    padding: 32px;
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.badge-status-green {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
    font-weight: 800;
    font-size: 0.78rem;
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.duration-selector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 28px;
}

.duration-opt-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding: 10px 8px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.duration-opt-btn:hover,
.duration-opt-btn.active {
    background: rgba(255, 70, 85, 0.15);
    border-color: var(--accent-red);
    color: #fff;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-price-label {
    display: flex;
    flex-direction: column;
}

.product-price-label .from {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.product-price-label .amount {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
}

.btn-buy-now {
    background: #ffffff;
    color: #000000;
    font-weight: 800;
    font-size: 0.92rem;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.btn-buy-now:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Enterprise High-Trust Checkout Modal (Sellix / Coinbase Commerce style)
   ========================================================================== */
.checkout-modal-card {
    background: #0f1017;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.85);
    overflow: hidden;
    animation: modalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-header-bar {
    background: #151722;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-product-summary {
    display: flex;
    align-items: center;
    gap: 14px;
}

.checkout-product-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 70, 85, 0.12);
    border: 1px solid rgba(255, 70, 85, 0.3);
    color: var(--accent-red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.checkout-product-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.checkout-product-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    display: block;
    margin-top: 2px;
}

.checkout-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkout-field-label {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-ssl-pill {
    font-size: 0.72rem;
    color: #2ecc71;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Radio Cards Stack */
.currency-radio-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.currency-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
}

.currency-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
}

.currency-card.active {
    background: rgba(255, 70, 85, 0.08);
    border-color: var(--accent-red);
}

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

.custom-radio-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.currency-card.active .custom-radio-circle {
    border-color: var(--accent-red);
}

.radio-inner {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-red);
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.currency-card.active .radio-inner {
    opacity: 1;
    transform: scale(1);
}

.crypto-icon {
    font-size: 1.15rem;
    width: 24px;
    text-align: center;
}

.ltc-icon {
    color: #345d9d;
}

.btc-icon {
    color: #f7931a;
}

.usdt-icon {
    color: #26a17b;
}

.sol-icon {
    color: #9945ff;
}

.crypto-meta {
    display: flex;
    flex-direction: column;
}

.crypto-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
}

.crypto-ticker {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
}

.currency-badge-pill {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
}

.badge-fast {
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.12);
}

.checkout-help-notice {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 14px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.45;
}

.checkout-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.checkout-input {
    width: 100%;
    background: #151722;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 12px 14px 12px 40px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    outline: none;
    transition: all 0.2s ease;
}

.checkout-input:focus {
    border-color: var(--accent-red);
    box-shadow: 0 0 12px rgba(255, 70, 85, 0.25);
}

.checkout-field-hint {
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.checkout-summary-box {
    background: #151722;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.summary-row.total-row {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 8px;
    margin-top: 4px;
    font-weight: 800;
    color: #fff;
}

.summary-val-highlight {
    font-family: var(--font-mono);
    font-size: 1.15rem;
    color: var(--accent-red);
}

.btn-checkout-submit {
    background: linear-gradient(135deg, var(--accent-red), #d63031);
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 14px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(255, 70, 85, 0.3);
}

.btn-checkout-submit:hover {
    opacity: 0.95;
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(255, 70, 85, 0.45);
}

.checkout-trust-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.74rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-top: 4px;
}

/* Invoice Verification Modal Styling */
.invoice-status-banner {
    padding: 14px;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.invoice-status-banner.status-pending {
    background: rgba(255, 183, 3, 0.1);
    border: 1px solid rgba(255, 183, 3, 0.3);
    color: var(--accent-gold);
}

.invoice-details-box {
    background: #151722;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.deposit-address-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #0b0c10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 10px 12px;
}

.deposit-code {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: #fff;
    word-break: break-all;
}

.btn-copy-address {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.76rem;
    font-weight: 800;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.btn-copy-address:hover {
    background: rgba(255, 255, 255, 0.2);
}

.security-dispatch-notice {
    background: rgba(255, 70, 85, 0.06);
    border: 1px solid rgba(255, 70, 85, 0.2);
    border-radius: 8px;
    padding: 14px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.55;
}



/* 3-Step Wizard Modal Styling */
.compact-wizard {
    max-width: 460px;
}

.wizard-progress-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: #0b0c10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wizard-step {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--text-muted);
}

.wizard-step.active {
    color: #fff;
}

.wizard-step.completed {
    color: #2ecc71;
}

.wizard-step .step-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.wizard-step.active .step-num {
    background: var(--accent-red);
    color: #fff;
}

.wizard-step.completed .step-num {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.wizard-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 10px;
}

.wizard-line.active {
    background: #2ecc71;
}

.btn-wizard-back {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-wizard-back:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Live Support Badge in Header */
.live-support-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
    font-size: 0.76rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
}

.status-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 10px #2ecc71;
    animation: pulseGlow 1.8s infinite ease-in-out;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.5;
    }
}

/* QR Code & 30-Minute Timer in Checkout Step 3 */
.qr-code-wrapper {
    text-align: center;
    background: #0b0c10;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
}

.qr-code-img {
    width: 140px;
    height: 140px;
    border-radius: 8px;
    background: #fff;
    padding: 8px;
    display: block;
    margin: 0 auto;
}

.timer-box {
    background: rgba(255, 70, 85, 0.1);
    border: 1px solid rgba(255, 70, 85, 0.25);
    color: var(--accent-red);
    font-family: var(--font-mono);
    font-weight: 800;
    font-size: 0.82rem;
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
}

/* ==========================================================================
   Multi-Game Catalog & Astrion Product Detail Layout
   ========================================================================== */
.game-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.game-card-item {
    background: rgba(14, 14, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-card-item:hover {
    border-color: var(--accent-red);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 70, 85, 0.25);
}

.game-card-banner {
    position: relative;
    width: 100%;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.placeholder-banner {
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.12), rgba(15, 16, 25, 0.95));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-placeholder-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.banner-placeholder-text i {
    font-size: 2.2rem;
    color: var(--accent-red);
    opacity: 0.6;
}

.placeholder-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

/* Coming Soon Game Card Styling */
.game-card-item.coming-soon {
    cursor: default;
    opacity: 0.88;
}

.game-card-item.coming-soon:hover {
    border-color: rgba(255, 170, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 170, 0, 0.12);
}

.coming-soon-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 170, 0, 0.18);
    border: 1px solid rgba(255, 170, 0, 0.45);
    color: #ffaa00;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(8px);
    z-index: 2;
}

.btn-coming-soon {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: not-allowed;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.game-card-content {
    padding: 20px;
    background: rgba(10, 10, 15, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.game-card-title {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 900;
    line-height: 1.3;
    min-height: 3.1rem;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-card-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.45;
    min-height: 2.5rem;
    margin-bottom: 16px;
    flex: 1;
}

.game-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: auto;
}

.game-card-price {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.game-card-price strong {
    color: #fff;
    font-size: 1.1rem;
}

.btn-view-product {
    background: rgba(255, 70, 85, 0.15);
    border: 1px solid var(--accent-red);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.game-card-item:hover .btn-view-product {
    background: var(--accent-red);
}

/* Product Detail Layout (Astrion Exact Match) */
.product-detail-layout {
    display: none;
}

.detail-back-bar {
    margin-bottom: 24px;
}

.btn-back-catalog {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-back-catalog:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    background: rgba(14, 14, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.detail-left-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-banner-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-main-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-thumbnails-row {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.detail-thumb {
    width: 82px;
    height: 54px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    opacity: 0.55;
    transition: all 0.2s ease;
    flex-shrink: 0;
    background: none;
    padding: 0;
}

.detail-thumb.active,
.detail-thumb:hover {
    border-color: var(--accent-red);
    opacity: 1;
    box-shadow: 0 4px 14px rgba(255, 70, 85, 0.3);
}

.detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.detail-right-col {
    display: flex;
    flex-direction: column;
}

.detail-title-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.detail-product-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #fff;
    margin: 0;
}

.detail-price-qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.detail-main-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
}

.qty-counter-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.qty-val {
    width: 32px;
    text-align: center;
    font-weight: 800;
    font-size: 0.95rem;
}

.choose-duration-heading {
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.duration-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.duration-card-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.duration-card-item:hover,
.duration-card-item.active {
    background: linear-gradient(180deg, rgba(255, 70, 85, 0.15), rgba(255, 70, 85, 0.02));
    border-color: var(--accent-red);
    box-shadow: 0 0 20px rgba(255, 70, 85, 0.2);
}

.duration-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.duration-radio {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    position: relative;
}

.duration-card-item.active .duration-radio {
    border-color: var(--accent-red);
}

.duration-card-item.active .duration-radio::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-red);
}

.duration-name {
    font-weight: 900;
    font-size: 1.05rem;
    color: #fff;
}

.duration-sub {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.stock-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 12px;
    width: max-content;
}

.stock-badge-pill.stock-in {
    background: rgba(46, 204, 113, 0.12);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.stock-badge-pill.stock-limited {
    background: rgba(255, 183, 3, 0.12);
    color: var(--accent-gold);
    border: 1px solid rgba(255, 183, 3, 0.3);
}

.lifetime-discord-notice {
    font-size: 0.7rem;
    color: var(--text-secondary);
    background: rgba(88, 101, 242, 0.12);
    border: 1px solid rgba(88, 101, 242, 0.3);
    padding: 6px 8px;
    border-radius: 6px;
    margin-top: 8px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.35;
}

.lifetime-discord-notice i {
    color: #5865F2;
    font-size: 0.8rem;
    margin-top: 1px;
}

.duration-card-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    margin-top: auto;
}

.btn-purchase-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 0 25px var(--accent-red-glow);
    margin-bottom: 20px;
    transition: all 0.25s ease;
}

.btn-purchase-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(255, 70, 85, 0.6);
}

.detail-trust-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 700;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .emulator-workflow-container {
        grid-template-columns: 1fr;
    }

    .sandbox-box {
        grid-template-columns: 1fr;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }

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

@media (max-width: 768px) {
    .header-container {
        padding: 14px 20px;
    }

    .hero-main-title {
        line-height: 1.15;
    }

    .hero-title-brand {
        font-size: 2.8rem;
    }

    .hero-title-sub {
        font-size: 1.35rem;
    }

    .hero-description {
        font-size: 0.98rem;
        padding: 0 10px;
    }

    .hero-pill {
        flex-direction: column;
        gap: 6px;
        padding: 10px 16px;
        border-radius: 20px;
        font-size: 0.78rem;
        max-width: 90%;
        margin: 0 auto 24px auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-buttons .btn-cta-primary,
    .hero-buttons .btn-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
        border-radius: 10px;
        font-size: 0.88rem;
        box-sizing: border-box;
        white-space: nowrap;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .pricing-grid-4 {
        grid-template-columns: 1fr;
    }

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

    .footer-nav-cols {
        justify-content: flex-start;
        gap: 40px;
    }

    /* Product Detail Mobile Pixel-Perfect Alignment */
    .product-detail-layout {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .product-detail-grid {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px 16px !important;
        gap: 20px !important;
        border-radius: 16px !important;
        box-sizing: border-box !important;
        background: rgba(14, 14, 20, 0.95) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .detail-left-col,
    .detail-right-col {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .detail-banner-wrap {
        width: 100% !important;
        height: 210px !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        background: #08080c !important;
    }

    .detail-main-banner {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    .detail-thumbnails-row {
        display: grid !important;
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 6px !important;
        width: 100% !important;
        margin-top: 10px !important;
        padding-bottom: 0 !important;
        overflow-x: visible !important;
        box-sizing: border-box !important;
    }

    .detail-thumb {
        width: 100% !important;
        height: 44px !important;
        border-radius: 6px !important;
        overflow: hidden !important;
        border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
        box-sizing: border-box !important;
        background: none !important;
        padding: 0 !important;
    }

    .detail-thumb img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .detail-title-wrap {
        width: 100% !important;
        margin-bottom: 10px !important;
    }

    .detail-product-title {
        font-size: 1.45rem !important;
        font-weight: 900 !important;
        line-height: 1.25 !important;
        word-break: break-word !important;
    }

    .detail-price-qty-row {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        margin-bottom: 16px !important;
        padding-bottom: 14px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    }

    .detail-main-price {
        font-size: 1.9rem !important;
        line-height: 1 !important;
        margin: 0 !important;
    }

    .qty-counter-box {
        height: 36px !important;
    }

    .choose-duration-heading {
        font-size: 0.8rem !important;
        font-weight: 800 !important;
        color: var(--text-muted) !important;
        letter-spacing: 0.6px !important;
        margin-bottom: 10px !important;
        text-transform: uppercase !important;
    }

    .duration-cards-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        width: 100% !important;
        margin-bottom: 18px !important;
        box-sizing: border-box !important;
    }

    .duration-card-item {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        padding: 12px 10px !important;
        border-radius: 10px !important;
        min-height: 108px !important;
        box-sizing: border-box !important;
    }

    .duration-card-top {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        margin-bottom: 4px !important;
    }

    .duration-name {
        font-size: 0.92rem !important;
        font-weight: 900 !important;
    }

    .duration-sub {
        font-size: 0.6rem !important;
        margin-bottom: 6px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .stock-badge-pill {
        font-size: 0.6rem !important;
        padding: 2px 6px !important;
        margin-bottom: 6px !important;
        width: fit-content !important;
    }

    .duration-card-price {
        font-size: 1.25rem !important;
        font-weight: 900 !important;
        margin-top: auto !important;
    }

    .btn-purchase-submit {
        width: 100% !important;
        padding: 14px !important;
        font-size: 0.95rem !important;
        border-radius: 10px !important;
        margin-bottom: 16px !important;
        box-sizing: border-box !important;
    }

    .detail-trust-row {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
        padding-top: 14px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
        font-size: 0.78rem !important;
        color: var(--text-secondary) !important;
        box-sizing: border-box !important;
    }

    .gallery-tabs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .gallery-tab-item {
        padding: 10px 6px;
        font-size: 0.78rem;
    }

    .gallery-featured-viewport {
        height: auto;
        min-height: 220px;
        max-height: 380px;
        background: #08080d;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gallery-main-img {
        max-height: 380px;
        object-fit: contain;
    }
}

/* System Prerequisites Spec Cards Grid (setup/index.html) */
.prereq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 36px;
}

@media (max-width: 768px) {
    .prereq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.prereq-card {
    background: rgba(14, 14, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 104px;
    box-sizing: border-box;
    text-align: left;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}

.prereq-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.prereq-card.border-success {
    border-color: rgba(46, 204, 113, 0.28);
    background: radial-gradient(circle at 90% 10%, rgba(46, 204, 113, 0.08) 0%, rgba(14, 14, 20, 0.75) 75%);
    box-shadow: 0 0 16px rgba(46, 204, 113, 0.06);
}

.prereq-card.border-success:hover {
    border-color: rgba(46, 204, 113, 0.5);
    background: radial-gradient(circle at 90% 10%, rgba(46, 204, 113, 0.13) 0%, rgba(14, 14, 20, 0.8) 75%);
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.12);
}

.prereq-card.border-warning {
    border-color: rgba(243, 156, 18, 0.28);
    box-shadow: 0 0 16px rgba(243, 156, 18, 0.06);
}

.prereq-card.border-warning:hover {
    border-color: rgba(243, 156, 18, 0.5);
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.12);
}

.prereq-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.prereq-card-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.prereq-card-left i {
    font-size: 1.35rem;
}

.prereq-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
}

.prereq-tag {
    font-size: 0.74rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
    white-space: nowrap;
    margin-left: auto;
}

.prereq-tag.tag-success {
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.12);
    border-color: rgba(46, 204, 113, 0.3);
}

.prereq-tag.tag-warning {
    color: #f39c12;
    background: rgba(243, 156, 18, 0.12);
    border-color: rgba(243, 156, 18, 0.3);
}

.prereq-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.45;
    margin-top: 0;
}

/* Vertical Expandable Accordion Stepper */
.guide-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.accordion-item:hover,
.accordion-item.active {
    border-color: rgba(255, 70, 85, 0.4);
    background: rgba(255, 70, 85, 0.03);
    box-shadow: 0 0 20px rgba(255, 70, 85, 0.08);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: #fff;
}

.accordion-header-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.accordion-num {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent-red);
    background: rgba(255, 70, 85, 0.12);
    border: 1px solid rgba(255, 70, 85, 0.3);
    padding: 4px 10px;
    border-radius: 6px;
}

.accordion-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.accordion-icon {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--accent-red);
}

.accordion-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.accordion-item.active .accordion-content {
    opacity: 1;
    padding: 0 24px 20px 24px;
}

/* Promo Code Responsive Button & Shake Feedback */
@keyframes shakePromoError {

    0%,
    100% {
        transform: translateX(0);
    }

    20%,
    60% {
        transform: translateX(-5px);
    }

    40%,
    80% {
        transform: translateX(5px);
    }
}

.promo-shake {
    animation: shakePromoError 0.4s ease-in-out;
}

/* Compact CTA Portal Banner */
.cta-portal-section {
    padding: 80px 0;
}

.cta-portal-card {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
}

.cta-portal-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.cta-portal-desc {
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto 18px auto;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cta-portal-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-portal-section {
        padding: 16px 0 12px 0;
    }

    .cta-portal-card {
        padding: 18px 14px;
    }

    .cta-portal-title {
        font-size: 1.25rem;
        margin-bottom: 6px;
    }

    .cta-portal-desc {
        font-size: 0.85rem;
        margin-bottom: 14px;
        padding: 0 4px;
    }

    .cta-portal-buttons {
        gap: 8px;
    }

    .cta-portal-buttons .btn-cta-primary,
    .cta-portal-buttons .btn-cta-secondary {
        padding: 10px 18px;
        font-size: 0.82rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Customer Dashboard Grid & Mobile Layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

#keysContainer {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

#keysContainer table {
    width: 100%;
    border-collapse: collapse;
}

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

@media (max-width: 768px) {
    #keysContainer table {
        min-width: 480px;
    }

    /* Non-Hero Section Titles & Subtexts Scaling for Mobile Phones (Ultra-Compact) */
    .section-title,
    .products-section-title {
        font-size: 0.92rem !important;
        line-height: 1.2 !important;
        letter-spacing: 0.04em !important;
        margin-bottom: 2px !important;
    }

    .section-desc,
    .products-section-sub {
        font-size: 0.70rem !important;
        line-height: 1.3 !important;
    }

    .products-section-header {
        padding: 0 12px;
        margin-bottom: 12px;
    }

    /* Our Products Compact 140px Mobile Cards with Desktop-Grade Details Loading */
    .products-three-slot-viewport {
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
        padding: 8px 0 !important;
    }

    .products-three-slot-track {
        gap: 8px !important;
        padding: 0 calc(50vw - 70px) !important; /* Aligns 140px active card dead-center on mobile */
    }

    .product-banner-card {
        width: 140px !important;
        max-width: 140px !important;
        height: 180px !important;
        min-height: 180px !important;
        padding: 10px 8px !important;
        border-radius: 10px !important;
        flex-shrink: 0 !important;
        opacity: 0.45 !important;
        transform: scale(0.85) !important;
        pointer-events: none !important;
        cursor: default !important;
        transition: opacity 0.35s ease, transform 0.35s ease, background 0.35s ease !important;
    }

    .product-banner-card.is-centered {
        pointer-events: auto !important;
        cursor: pointer !important;
    }

    /* Suppress card scaling animations during infinite loop teleportation */
    .products-three-slot-track.no-card-anim .product-banner-card,
    .products-three-slot-track.no-card-anim .card-top-header,
    .products-three-slot-track.no-card-anim .card-footer-row {
        transition: none !important;
    }

    /* Hide details on non-focused mobile cards */
    .product-banner-card .card-top-header,
    .product-banner-card .card-footer-row {
        opacity: 0 !important;
        transform: translateY(6px) !important;
        transition: opacity 0.35s ease, transform 0.35s ease !important;
    }

    /* Active Focused Center Card (Details Fade-In & Theme Glow Enabled) */
    .product-banner-card.is-centered {
        opacity: 1 !important;
        transform: scale(1) !important;
        pointer-events: auto !important; /* Only the centered card is clickable */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
    }

    .product-banner-card.is-centered .card-top-header,
    .product-banner-card.is-centered .card-footer-row {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .product-banner-card.is-centered.card-theme-valorant {
        background: radial-gradient(circle at 90% 10%, rgba(255, 70, 85, 0.22) 0%, rgba(255, 70, 85, 0.03) 55%, #090a10 100%) !important;
        border-color: rgba(255, 70, 85, 0.4) !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6) !important;
    }

    .product-banner-card.is-centered.card-theme-cs2 {
        background: radial-gradient(circle at 90% 10%, rgba(243, 156, 18, 0.20) 0%, rgba(243, 156, 18, 0.03) 55%, #090a10 100%) !important;
        border-color: rgba(243, 156, 18, 0.4) !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6) !important;
    }

    .product-banner-card.is-centered.card-theme-roblox {
        background: radial-gradient(circle at 90% 10%, rgba(155, 89, 182, 0.20) 0%, rgba(155, 89, 182, 0.03) 55%, #090a10 100%) !important;
        border-color: rgba(155, 89, 182, 0.4) !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6) !important;
    }

    .product-banner-card.is-centered.card-theme-minecraft {
        background: radial-gradient(circle at 90% 10%, rgba(46, 204, 113, 0.20) 0%, rgba(46, 204, 113, 0.03) 55%, #090a10 100%) !important;
        border-color: rgba(46, 204, 113, 0.4) !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6) !important;
    }

    .product-banner-card.is-centered.card-theme-amongus {
        background: radial-gradient(circle at 90% 10%, rgba(0, 242, 254, 0.20) 0%, rgba(0, 242, 254, 0.03) 55%, #090a10 100%) !important;
        border-color: rgba(0, 242, 254, 0.4) !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6) !important;
    }

    .product-banner-card.is-centered.card-theme-meccha {
        background: radial-gradient(circle at 90% 10%, rgba(230, 126, 34, 0.20) 0%, rgba(230, 126, 34, 0.03) 55%, #090a10 100%) !important;
        border-color: rgba(230, 126, 34, 0.4) !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6) !important;
    }

    .product-card-title {
        font-size: 0.72rem !important;
        line-height: 1.15 !important;
        font-weight: 800 !important;
        margin: auto 0 !important;
        text-align: left !important;
        width: 100% !important;
    }

    /* Mobile Card Inner Elements Left-Aligned Vertical Stack Layout */
    .product-banner-card .card-top-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 3px !important;
        margin-bottom: 4px !important;
        width: 100% !important;
    }

    .product-banner-card .card-footer-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 3px !important;
        width: 100% !important;
    }

    .card-category-tag {
        font-size: 0.52rem !important;
        letter-spacing: 0.4px !important;
        text-align: left !important;
        margin-left: 5px !important; /* Aligns category text perfectly with text/icon inside status badge box */
    }

    .card-status-badge {
        font-size: 0.50rem !important;
        padding: 1px 5px !important;
        border-radius: 4px !important;
        margin-left: 0 !important;
    }

    .card-cta-text {
        font-size: 0.58rem !important;
        gap: 3px !important;
        justify-content: flex-start !important;
        width: 100% !important;
    }

    .products-nav-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.9rem !important;
        z-index: 30 !important; /* Floats above the 120px dark feather overlay (z-index: 10) */
        background: rgba(18, 18, 26, 0.92) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        color: #ffffff !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.7) !important;
    }

    .products-nav-btn.nav-prev { left: 12px !important; }
    .products-nav-btn.nav-next { right: 12px !important; }
}

/* Our Products 3-Slot Shifting Carousel */
.products-carousel-section {
    padding: 80px 0;
    text-align: center;
    width: 100%;
}

.products-carousel-section .container {
    max-width: 1380px;
}

.products-section-header {
    margin-bottom: 20px;
}

.products-section-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.products-section-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.products-three-slot-viewport {
    width: 84vw;
    margin-left: calc(-42vw + 50%);
    margin-right: calc(-42vw + 50%);
    padding: 20px 0;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}

/* Permanent Feather Gradient Overlays */
.products-three-slot-viewport::before,
.products-three-slot-viewport::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 10;
    pointer-events: none;
    opacity: 1;
}

.products-three-slot-viewport::before {
    left: 0;
    background: linear-gradient(to right, #000000 0%, rgba(0, 0, 0, 0.88) 45%, transparent 100%);
}

.products-three-slot-viewport::after {
    right: 0;
    background: linear-gradient(to left, #000000 0%, rgba(0, 0, 0, 0.88) 45%, transparent 100%);
}

/* Product Carousel Floating Nav Buttons */
.products-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(14, 14, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    backdrop-filter: blur(10px);
    transition: all 0.25s cubic-bezier(0.25, 1, 0.4, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.products-nav-btn.nav-prev {
    left: 20px;
}

.products-nav-btn.nav-next {
    right: 20px;
}

.products-nav-btn:hover {
    background: rgba(255, 70, 85, 0.25);
    border-color: rgba(255, 70, 85, 0.6);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 16px rgba(255, 70, 85, 0.35);
}

.products-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.products-three-slot-track {
    display: flex;
    gap: 24px;
    width: 100%;
    transition: transform 0.85s cubic-bezier(0.25, 1, 0.4, 1);
    will-change: transform;
    padding: 0 calc((84vw - 1200px) / 2);
}

.product-banner-card {
    position: relative;
    flex: 0 0 calc((1200px - 48px) / 3);
    height: 185px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px 18px;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.4, 1);
    cursor: pointer;
    background: #090a10;
    box-sizing: border-box;
}

.product-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.6) contrast(1.1);
    z-index: 1;
}

.product-banner-card:hover .product-card-bg {
    filter: brightness(0.85) contrast(1.2);
    transform: scale(1.08);
}

.product-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(9, 10, 16, 0.4) 0%, rgba(9, 10, 16, 0.85) 100%);
    z-index: 2;
}

.product-card-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
}

.card-top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.35s cubic-bezier(0.25, 1, 0.4, 1), transform 0.35s cubic-bezier(0.25, 1, 0.4, 1);
}

.product-banner-card:hover .card-top-header {
    opacity: 1;
    transform: translateY(0);
}

.card-category-tag {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-status-badge {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.4px;
}

.card-status-badge.status-active {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.card-status-badge.status-active i {
    font-size: 0.45rem;
}

.card-status-badge.status-dev {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.2px;
    margin: auto 0;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease, color 0.35s ease;
}

.card-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s cubic-bezier(0.25, 1, 0.4, 1), transform 0.35s cubic-bezier(0.25, 1, 0.4, 1);
}

.product-banner-card:hover .card-footer-row {
    opacity: 1;
    transform: translateY(0);
}

.card-cta-text {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--accent-red);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.25s ease, color 0.25s ease;
}

.product-banner-card:hover .card-cta-text {
    transform: translateX(4px);
    color: #ffffff;
}

/* Centered Focused Card Base Subtle Glow (40% Color Intensity) */
.product-banner-card.is-centered.card-theme-valorant {
    background: radial-gradient(circle at 90% 10%, rgba(255, 70, 85, 0.15) 0%, rgba(255, 70, 85, 0.02) 55%, #090a10 100%);
    border-color: rgba(255, 70, 85, 0.25);
    box-shadow: 0 4px 16px rgba(255, 70, 85, 0.1);
}

.product-banner-card.is-centered.card-theme-cs2 {
    background: radial-gradient(circle at 90% 10%, rgba(243, 156, 18, 0.14) 0%, rgba(243, 156, 18, 0.02) 55%, #090a10 100%);
    border-color: rgba(243, 156, 18, 0.25);
    box-shadow: 0 4px 16px rgba(243, 156, 18, 0.1);
}

.product-banner-card.is-centered.card-theme-roblox {
    background: radial-gradient(circle at 90% 10%, rgba(155, 89, 182, 0.14) 0%, rgba(155, 89, 182, 0.02) 55%, #090a10 100%);
    border-color: rgba(155, 89, 182, 0.25);
    box-shadow: 0 4px 16px rgba(155, 89, 182, 0.1);
}

.product-banner-card.is-centered.card-theme-minecraft {
    background: radial-gradient(circle at 90% 10%, rgba(46, 204, 113, 0.14) 0%, rgba(46, 204, 113, 0.02) 55%, #090a10 100%);
    border-color: rgba(46, 204, 113, 0.25);
    box-shadow: 0 4px 16px rgba(46, 204, 113, 0.1);
}

.product-banner-card.is-centered.card-theme-amongus {
    background: radial-gradient(circle at 90% 10%, rgba(0, 242, 254, 0.14) 0%, rgba(0, 242, 254, 0.02) 55%, #090a10 100%);
    border-color: rgba(0, 242, 254, 0.25);
    box-shadow: 0 4px 16px rgba(0, 242, 254, 0.1);
}

.product-banner-card.is-centered.card-theme-meccha {
    background: radial-gradient(circle at 90% 10%, rgba(230, 126, 34, 0.14) 0%, rgba(230, 126, 34, 0.02) 55%, #090a10 100%);
    border-color: rgba(230, 126, 34, 0.25);
    box-shadow: 0 4px 16px rgba(230, 126, 34, 0.1);
}

.product-banner-card.is-centered .product-card-bg {
    filter: brightness(0.75) contrast(1.12);
}

.product-banner-card.is-centered .card-top-header,
.product-banner-card.is-centered .card-footer-row {
    opacity: 0.65;
    transform: translateY(0);
}

/* Full 100% Color Intensity on Hover for Centered Card */
.product-banner-card.is-centered:hover.card-theme-valorant {
    background: radial-gradient(circle at 90% 10%, rgba(255, 70, 85, 0.38) 0%, rgba(255, 70, 85, 0.06) 55%, #090a10 100%);
    border-color: rgba(255, 70, 85, 0.6);
    box-shadow: 0 10px 30px rgba(255, 70, 85, 0.25);
}

.product-banner-card.is-centered:hover.card-theme-cs2 {
    background: radial-gradient(circle at 90% 10%, rgba(243, 156, 18, 0.35) 0%, rgba(243, 156, 18, 0.05) 55%, #090a10 100%);
    border-color: rgba(243, 156, 18, 0.6);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.25);
}

.product-banner-card.is-centered:hover.card-theme-roblox {
    background: radial-gradient(circle at 90% 10%, rgba(155, 89, 182, 0.35) 0%, rgba(155, 89, 182, 0.05) 55%, #090a10 100%);
    border-color: rgba(155, 89, 182, 0.6);
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.25);
}

.product-banner-card.is-centered:hover.card-theme-minecraft {
    background: radial-gradient(circle at 90% 10%, rgba(46, 204, 113, 0.35) 0%, rgba(46, 204, 113, 0.05) 55%, #090a10 100%);
    border-color: rgba(46, 204, 113, 0.6);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.25);
}

.product-banner-card.is-centered:hover.card-theme-amongus {
    background: radial-gradient(circle at 90% 10%, rgba(0, 242, 254, 0.35) 0%, rgba(0, 242, 254, 0.05) 55%, #090a10 100%);
    border-color: rgba(0, 242, 254, 0.6);
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.25);
}

.product-banner-card.is-centered:hover.card-theme-meccha {
    background: radial-gradient(circle at 90% 10%, rgba(230, 126, 34, 0.35) 0%, rgba(230, 126, 34, 0.05) 55%, #090a10 100%);
    border-color: rgba(230, 126, 34, 0.6);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.25);
}

.product-banner-card.is-centered:hover .product-card-bg {
    filter: brightness(0.85) contrast(1.2);
    transform: scale(1.08);
}

.product-banner-card.is-centered:hover .card-top-header,
.product-banner-card.is-centered:hover .card-footer-row {
    opacity: 1;
}

/* Professional Colorist Themes (Obsidian Glass + Fade-In Radial Accent Lighting) */
.card-theme-valorant {
    background: #090a10;
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.35s ease, box-shadow 0.4s ease;
}

.card-theme-valorant:hover {
    background: radial-gradient(circle at 90% 10%, rgba(255, 70, 85, 0.38) 0%, rgba(255, 70, 85, 0.06) 55%, #090a10 100%);
    border-color: rgba(255, 70, 85, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 70, 85, 0.25);
}

.card-theme-cs2 {
    background: #090a10;
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.35s ease, box-shadow 0.4s ease;
}

.card-theme-cs2:hover {
    background: radial-gradient(circle at 90% 10%, rgba(243, 156, 18, 0.35) 0%, rgba(243, 156, 18, 0.05) 55%, #090a10 100%);
    border-color: rgba(243, 156, 18, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.25);
}

.card-theme-roblox {
    background: #090a10;
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.35s ease, box-shadow 0.4s ease;
}

.card-theme-roblox:hover {
    background: radial-gradient(circle at 90% 10%, rgba(155, 89, 182, 0.35) 0%, rgba(155, 89, 182, 0.05) 55%, #090a10 100%);
    border-color: rgba(155, 89, 182, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.25);
}

.card-theme-minecraft {
    background: #090a10;
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.35s ease, box-shadow 0.4s ease;
}

.card-theme-minecraft:hover {
    background: radial-gradient(circle at 90% 10%, rgba(46, 204, 113, 0.35) 0%, rgba(46, 204, 113, 0.05) 55%, #090a10 100%);
    border-color: rgba(46, 204, 113, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.25);
}

.card-theme-amongus {
    background: #090a10;
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.35s ease, box-shadow 0.4s ease;
}

.card-theme-amongus:hover {
    background: radial-gradient(circle at 90% 10%, rgba(0, 242, 254, 0.35) 0%, rgba(0, 242, 254, 0.05) 55%, #090a10 100%);
    border-color: rgba(0, 242, 254, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.25);
}

.card-theme-meccha {
    background: #090a10;
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.35s ease, box-shadow 0.4s ease;
}

.card-theme-meccha:hover {
    background: radial-gradient(circle at 90% 10%, rgba(230, 126, 34, 0.35) 0%, rgba(230, 126, 34, 0.05) 55%, #090a10 100%);
    border-color: rgba(230, 126, 34, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.25);
}

/* Mobile Touch Device Fallback: Ensure details are visible on touch screens */
@media (hover: none) {

    .card-top-header,
    .card-footer-row {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

@media (max-width: 992px) {
    .product-banner-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }
}

@media (max-width: 600px) {
    .product-banner-card {
        flex: 0 0 100%;
    }
}

/* ==========================================================================
   Scroll Reveal 1.4-Second Fade-In System
   ========================================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Support Page Feature Cards & Compact Mobile Scaling */
.support-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.support-feature-card {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.support-feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.support-feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.feature-card-gold {
    background: radial-gradient(circle at 10% 10%, rgba(255, 183, 3, 0.08) 0%, rgba(9, 10, 16, 0.95) 75%) !important;
    border: 1px solid rgba(255, 183, 3, 0.25) !important;
}

.feature-card-discord {
    background: radial-gradient(circle at 10% 10%, rgba(138, 43, 226, 0.08) 0%, rgba(9, 10, 16, 0.95) 75%) !important;
    border: 1px solid rgba(138, 43, 226, 0.25) !important;
}

.feature-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.support-steps-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.support-step-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #ffffff;
}

.support-step-item .step-num {
    background: var(--accent-gold);
    color: #000;
    font-weight: 900;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.60rem;
}

.support-step-arrow {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .support-features-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        margin-top: 36px !important;
    }

    .support-feature-card {
        padding: 20px 20px !important;
        border-radius: 12px !important;
    }

    .support-feature-card h3 {
        font-size: 0.98rem !important;
        margin-bottom: 12px !important;
        gap: 8px !important;
    }

    .support-feature-card p {
        font-size: 0.78rem !important;
        line-height: 1.5 !important;
        margin-bottom: 14px !important;
    }

    .status-matrix-box {
        padding: 14px 16px !important;
        margin-top: 20px !important;
    }

    .status-matrix-header h3 {
        font-size: 0.98rem !important;
    }

    .status-table th,
    .status-table td {
        padding: 9px 12px !important;
        font-size: 0.74rem !important;
    }

    .faq-stack {
        gap: 12px !important;
        margin-bottom: 36px !important;
    }

    .faq-btn {
        font-size: 0.84rem !important;
        padding: 14px 16px !important;
    }

    .faq-body p {
        font-size: 0.76rem !important;
        padding: 12px 16px !important;
    }
}