/* ===========================================================================
   FABZ — ENTERPRISE AUTOMATED DIGITAL SERVICES
   Obsidian, Graphite, Silver & Monochrome Luxury Palette
   =========================================================================== */

:root {
    --bg-main: #070709;
    --bg-stage: #0c0c0f;
    --bg-card: #121217;
    --bg-card-banner: #16161d;
    --bg-surface: #1a1a23;
    
    --border-subtle: rgba(255, 255, 255, 0.07);
    --border-glass: rgba(255, 255, 255, 0.14);
    --border-card-hover: rgba(255, 255, 255, 0.35);
    --border-active: #ffffff;

    --purple-neon: #a855f7;
    --purple-deep: #9333ea;
    --purple-light: #c084fc;
    --purple-glow: rgba(168, 85, 247, 0.28);
    --purple-glow-soft: rgba(168, 85, 247, 0.08);

    --gradient-brand: linear-gradient(135deg, #ffffff 0%, #e2e8f0 40%, #94a3b8 80%, #64748b 100%);
    --gradient-silver-btn: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    --gradient-purple-btn: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%);
    --gradient-dark-card: linear-gradient(145deg, #15151c 0%, #0c0c10 100%);
    --gradient-silver: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #94a3b8 100%);

    --text-pure: #ffffff;
    --text-sub: #cbd5e1;
    --text-muted: #828292;
    --text-silver: #e2e8f0;
    --color-green: #10b981;
    --color-red: #ef4444;
    --color-amber: #f59e0b;

    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

body.fabz-theme {
    background-color: var(--bg-main);
    color: var(--text-pure);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Ambient Radial Glow Lighting (Silver / Purple Ambient) */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
}
.glow-top-left {
    top: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(0,0,0,0) 70%);
}
.glow-top-right {
    top: -100px;
    right: -100px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, rgba(0,0,0,0) 70%);
}
.glow-center {
    top: 45%;
    left: 30%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(0,0,0,0) 70%);
}

/* Canvas for GPU-Accelerated Floating Particles */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
}

/* Global Interactive Mouse Light Reflection */
.cursor-light-beam {
    position: fixed;
    top: 0;
    left: 0;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
    pointer-events: none;
    z-index: 1;
    transition: transform 0.08s ease-out;
}

/* 3D Interactive Parallax Tilt Card */
.interactive-tilt-card {
    transition: transform 0.15s ease-out, border-color 0.25s, box-shadow 0.25s;
    transform-style: preserve-3d;
    cursor: pointer;
}
.card-glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

/* ===========================================================================
   NAVIGATION BAR
   =========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 7, 9, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(7, 7, 9, 0.95);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}
.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}
.brand-orb {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffffff, #94a3b8);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.3);
}
.brand-text-col {
    display: flex;
    flex-direction: column;
}
.brand-text {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.brand-sub {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.18em;
    font-family: var(--font-mono);
}

.nav-menu {
    display: flex;
    gap: 28px;
    align-items: center;
}
.nav-link {
    color: var(--text-sub);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.2s, transform 0.2s;
    cursor: pointer;
    position: relative;
    padding: 6px 0;
}
.nav-link:hover, .nav-link.active {
    color: #ffffff;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
}
.discord-link {
    color: var(--purple-light) !important;
}

.nav-auth-group {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-btn-discord {
    background: #5865F2;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.nav-btn-discord:hover {
    background: #4752c4;
    transform: translateY(-1px);
}
.nav-btn-link {
    background: transparent;
    border: 1px solid var(--border-glass);
    color: #ffffff;
    border-radius: 10px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.nav-btn-link:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}
.nav-btn-cart {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: #ffffff;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}
.nav-btn-cart:hover {
    border-color: #ffffff;
}
.cart-badge {
    background: #ffffff;
    color: #000000;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 12px;
}
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===========================================================================
   MAIN CONTAINER & DEDICATED APP VIEWS
   =========================================================================== */
.main-stage-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 24px 60px;
    position: relative;
    z-index: 2;
}
.app-view {
    display: none;
    animation: fadeInView 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.app-view.active {
    display: block;
}
@keyframes fadeInView {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Showcase */
.hero-showcase {
    padding: 40px 0 20px;
}
.hero-grid-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}
.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-silver);
    font-family: var(--font-mono);
    letter-spacing: 0.1em;
    margin-bottom: 22px;
}
.hero-headline {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 20px;
}
.gradient-silver-text {
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtext {
    font-size: 1.1rem;
    color: var(--text-sub);
    line-height: 1.65;
    max-width: 580px;
    margin-bottom: 32px;
}
.hero-cta-row {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

/* Primary & Secondary Buttons */
.btn-primary-gradient {
    background: var(--gradient-silver-btn);
    color: #000000;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
}
.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}
.btn-secondary-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: #ffffff;
    border-radius: 12px;
    padding: 14px 26px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.btn-secondary-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
}
.btn-back-link {
    background: none;
    border: none;
    color: var(--text-sub);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
    transition: color 0.2s;
}
.btn-back-link:hover {
    color: #ffffff;
}

/* Trust Bar Grid */
.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 16px 18px;
    transition: border-color 0.2s, transform 0.2s;
}
.trust-item:hover {
    border-color: var(--border-glass);
    transform: translateY(-2px);
}
.trust-icon {
    font-size: 1.3rem;
}
.trust-item strong {
    display: block;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
}
.trust-item span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Hero Showcase Banner Card */
.hero-visual-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    background: var(--bg-card);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 255, 255, 0.05);
}
.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.hero-visual-card:hover .hero-banner-img {
    transform: scale(1.02);
}

/* Section Header Block */
.section-header-block {
    text-align: center;
    margin-bottom: 44px;
}
.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.section-subtext {
    font-size: 1rem;
    color: var(--text-sub);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Products Grid */
.products-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}
.product-card {
    background: var(--gradient-dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #94a3b8);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-card-hover);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 24px rgba(255, 255, 255, 0.08);
}
.product-card:hover::before {
    opacity: 1;
}
.product-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.product-icon-orb {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.product-badge-stock {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-green);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}
.product-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}
.product-desc {
    font-size: 0.88rem;
    color: var(--text-sub);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.product-feature-list {
    list-style: none;
    margin-bottom: 24px;
}
.product-feature-list li {
    font-size: 0.84rem;
    color: var(--text-sub);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.product-feature-list li span {
    color: #ffffff;
    font-weight: 800;
}
.product-price-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}
.price-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-mono);
}
.price-min-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-silver);
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
}
.product-card-actions {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 10px;
}

/* Workflow Steps Grid (How It Works) */
.workflow-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 28px 22px;
    position: relative;
    transition: transform 0.2s, border-color 0.2s;
}
.step-card:hover {
    transform: translateY(-4px);
    border-color: #ffffff;
}
.step-num-badge {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}
.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}
.step-desc {
    font-size: 0.85rem;
    color: var(--text-sub);
    line-height: 1.6;
}

/* Why FABZ Grid */
.why-fabz-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.why-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: border-color 0.2s;
}
.why-card:hover {
    border-color: var(--border-glass);
}
.why-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.why-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}
.why-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Games Coverage Grid */
.games-coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    padding: 24px;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    position: relative;
}
.game-card:hover {
    transform: translateY(-4px);
    border-color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 18px rgba(255, 255, 255, 0.08);
}
.game-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.game-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}
.game-desc {
    font-size: 0.82rem;
    color: var(--text-sub);
    line-height: 1.6;
    margin-bottom: 14px;
}
.game-tag {
    display: inline-block;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--color-green);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* ===========================================================================
   PRODUCT DETAILS & CONFIGURATOR
   =========================================================================== */
.product-detail-container {
    max-width: 1100px;
    margin: 0 auto;
}
.product-detail-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
}
.detail-main-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 36px;
}
.detail-tag-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.detail-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
}
.detail-description {
    font-size: 0.95rem;
    color: var(--text-sub);
    line-height: 1.7;
    margin-bottom: 28px;
}
.detail-section-subtitle {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin: 24px 0 14px;
}
.feature-box-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}
.feature-mini-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 14px;
}
.feature-mini-box strong {
    display: block;
    color: #ffffff;
    font-size: 0.85rem;
    margin-bottom: 4px;
}
.feature-mini-box span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.detail-config-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}
.config-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-subtle);
}
.token-stepper-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 24px;
}
.stepper-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.stepper-header label {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
}
.stepper-header span {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}
.stepper-control-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.step-btn {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-glass);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.step-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
}
.stepper-input {
    flex-grow: 1;
    height: 44px;
    background: var(--bg-main);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 800;
    text-align: center;
    font-family: var(--font-mono);
}
.calc-price-display {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.calc-label {
    font-size: 0.85rem;
    color: var(--text-sub);
    display: block;
}
.calc-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-mono);
}
.config-btn-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ===========================================================================
   CHECKOUT & PAYMENT VIEW
   =========================================================================== */
.checkout-container {
    max-width: 1050px;
    margin: 0 auto;
}
.checkout-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 36px;
}
.checkout-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 18px;
    padding: 28px;
    margin-bottom: 24px;
}
.checkout-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-subtle);
}
.checkout-step-num {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
}
.checkout-card-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
}

.crypto-selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.crypto-badge-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}
.crypto-badge-card:hover, .crypto-badge-card.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.15);
}
.crypto-icon {
    font-size: 1.4rem;
    margin-bottom: 6px;
}
.crypto-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
}

.deposit-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 20px;
}
.copy-row {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}
.copy-input {
    flex-grow: 1;
    background: var(--bg-main);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: #ffffff;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    padding: 10px 14px;
}
.btn-copy {
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 8px;
    padding: 0 16px;
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-copy:hover {
    background: #e2e8f0;
}
.verification-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 10px;
}
.spinner-ring {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-glass);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Order Confirmation & Progress Tracker */
.confirmation-container {
    max-width: 680px;
    margin: 40px auto;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 44px 36px;
    text-align: center;
}
.confirm-check-orb {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    border: 2px solid var(--color-green);
    color: var(--color-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 20px;
}
.confirm-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
}
.confirm-sub {
    font-size: 0.92rem;
    color: var(--text-sub);
    margin: 8px 0 28px;
}
.order-progress-tracker {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 12px;
}
.track-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.track-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-green);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
}
.track-step span {
    font-size: 0.72rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
}
.track-line {
    width: 40px;
    height: 2px;
    background: var(--color-green);
    margin-bottom: 18px;
}
.confirm-key-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 24px;
}
.confirm-key-code {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin: 10px 0 14px;
    letter-spacing: 0.06em;
}

/* ===========================================================================
   USER DASHBOARD VIEW
   =========================================================================== */
.dashboard-shell-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    min-height: 500px;
}
.dashboard-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 24px 18px;
}
.sidebar-brand {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sidebar-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-sub);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.88rem;
    text-align: left;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}
.sidebar-btn:hover, .sidebar-btn.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    color: #ffffff;
}

.dashboard-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}
.dashboard-metric-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}
.metric-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 20px;
}
.metric-card span {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 6px;
}
.metric-card strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-mono);
}

.table-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
}
.dash-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.dash-table th {
    background: rgba(255, 255, 255, 0.03);
    padding: 14px 18px;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-subtle);
}
.dash-table td {
    padding: 16px 18px;
    font-size: 0.88rem;
    color: var(--text-sub);
    border-bottom: 1px solid var(--border-subtle);
}
.dash-table tr:last-child td {
    border-bottom: none;
}
.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}
.status-completed {
    background: rgba(34, 197, 94, 0.12);
    color: var(--color-green);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* ===========================================================================
   REVIEWS & FEED
   =========================================================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s, border-color 0.2s;
}
.review-card:hover {
    transform: translateY(-4px);
    border-color: #ffffff;
}
.review-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.review-user-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}
.review-stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 2px;
}
.review-body {
    font-size: 0.88rem;
    color: var(--text-sub);
    line-height: 1.6;
    margin-bottom: 18px;
}
.review-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
}

/* ===========================================================================
   FAQ ACCORDION
   =========================================================================== */
.faq-accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-accordion-item.active {
    border-color: #ffffff;
}
.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: #ffffff;
    font-size: 0.98rem;
}
.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-sub);
    font-size: 0.88rem;
    line-height: 1.65;
    display: none;
}
.faq-accordion-item.active .faq-answer {
    display: block;
}

/* Forms & Modals */
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}
.form-control-input {
    width: 100%;
    background: var(--bg-main);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.9rem;
    padding: 12px 16px;
    transition: border-color 0.2s;
}
.form-control-input:focus {
    outline: none;
    border-color: #ffffff;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-backdrop.active {
    display: flex;
}
.modal-dialog {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 18px;
    max-width: 460px;
    width: 100%;
    padding: 32px;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}
.modal-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
}

/* Footer */
.footer-simple {
    background: var(--bg-main);
    border-top: 1px solid var(--border-subtle);
    padding: 50px 24px 30px;
}
.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
.footer-left p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 6px;
    max-width: 400px;
}
.footer-links {
    display: flex;
    gap: 24px;
}
.footer-links a {
    color: var(--text-sub);
    text-decoration: none;
    font-size: 0.88rem;
    cursor: pointer;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid-layout { grid-template-columns: 1fr; gap: 40px; }
    .products-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
    .product-detail-grid { grid-template-columns: 1fr; }
    .checkout-grid { grid-template-columns: 1fr; }
    .dashboard-shell-layout { grid-template-columns: 1fr; }
    .workflow-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .why-fabz-grid { grid-template-columns: repeat(2, 1fr); }
    .games-coverage-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .nav-hamburger { display: block; }
    .products-grid-3 { grid-template-columns: 1fr; }
    .trust-bar-grid { grid-template-columns: 1fr; }
    .hero-headline { font-size: 2.4rem; }
    .feature-box-grid { grid-template-columns: 1fr; }
    .crypto-selection-grid { grid-template-columns: repeat(2, 1fr); }
    .workflow-steps-grid { grid-template-columns: 1fr; }
    .why-fabz-grid { grid-template-columns: 1fr; }
    .games-coverage-grid { grid-template-columns: 1fr; }
}

/* ========================================================================== */
/* LOGIN PAGE & DISCORD OAUTH2 STYLING                                        */
/* ========================================================================== */
.login-page-card {
    max-width: 480px;
    margin: 80px auto;
    background: rgba(18, 18, 26, 0.85);
    border: 1px solid rgba(168, 85, 247, 0.25);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px 36px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(168, 85, 247, 0.15);
    position: relative;
    overflow: hidden;
}

.login-page-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #A855F7, #5865F2, #00FFAA);
}

.brand-orb {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #A855F7, #5865F2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.5);
}

.login-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-top: 14px;
    margin-bottom: 6px;
}

.login-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.btn-discord-large {
    width: 100%;
    background: #5865F2;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.35);
}

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

.btn-discord-large:active {
    transform: translateY(0);
}

.btn-discord-large svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Dashboard Shell & Layout */
.dashboard-shell-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 20px;
}

.dashboard-sidebar {
    background: rgba(18, 18, 26, 0.7);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 28px 20px;
    height: fit-content;
}

.sidebar-brand {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.sidebar-brand .brand-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
}

.sidebar-brand .brand-sub {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--purple-light);
    letter-spacing: 1px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-sub);
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.sidebar-btn.active {
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.2), rgba(88, 101, 242, 0.2));
    border-color: rgba(168, 85, 247, 0.4);
    color: #ffffff;
}

.dashboard-main-content {
    background: rgba(18, 18, 26, 0.7);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 36px;
}