/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00C075;
    --primary-dark: #00a060;
    --primary-light: #00e88a;
    --primary-glow: rgba(0, 192, 117, 0.3);
    --primary-glow-strong: rgba(0, 192, 117, 0.5);
    --bg: #080910;
    --bg-card: rgba(14, 15, 22, 0.80);
    --bg-card-solid: #0e0f16;
    --bg-card-hover: #161720;
    --text: #f0f0f2;
    --text-muted: #9a9aa8;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(0, 192, 117, 0.3);
    --radius: 16px;
    --radius-sm: 10px;
    --season: #a855f7;
    --season-glow: rgba(168, 85, 247, 0.15);
    --discord: #5865F2;
    --discord-dark: #4752c4;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== Animated Background + Noise + Grid ===== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 600px 400px at 15% 20%, rgba(0, 192, 117, 0.1) 0%, transparent 100%),
        radial-gradient(ellipse 500px 500px at 85% 60%, rgba(88, 101, 242, 0.07) 0%, transparent 100%),
        radial-gradient(ellipse 400px 300px at 50% 90%, rgba(0, 192, 117, 0.07) 0%, transparent 100%),
        radial-gradient(ellipse 300px 300px at 70% 10%, rgba(168, 85, 247, 0.06) 0%, transparent 100%);
}

/* Noise texture overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* Animated grid background */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(0, 192, 117, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 192, 117, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 100%);
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 100%);
    animation: grid-pulse 8s ease-in-out infinite;
}

@keyframes grid-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

.accent {
    color: var(--primary);
}

/* ===== Floating Dots (green luminous) ===== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 6px var(--primary-glow-strong), 0 0 12px var(--primary-glow);
    opacity: 0;
    animation: float-dot linear infinite;
}

@keyframes float-dot {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.5);
    }
    15% {
        opacity: 0.7;
    }
    85% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translate(var(--drift-x), var(--drift-y)) scale(0.2);
    }
}

/* ===== Glass Card ===== */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.card-shine {
    display: none;
}

/* Glassmorphism light reflex */
.glass-reflex {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.04) 0%,
        transparent 40%,
        transparent 60%,
        rgba(255, 255, 255, 0.02) 100%
    );
    opacity: 0;
    transition: opacity 0.4s;
}

.glass-card:hover .glass-reflex {
    opacity: 1;
}

/* ===== Cursor Dot Grid Effect ===== */
.cursor-glow {
    position: relative;
    overflow: hidden;
}

.cursor-glow .dot-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
    background-image: radial-gradient(circle, rgba(0, 192, 117, 0.3) 1px, transparent 1px);
    background-size: 20px 20px;
    -webkit-mask-image: radial-gradient(circle 120px at var(--glow-x, -200px) var(--glow-y, -200px), black 0%, transparent 100%);
    mask-image: radial-gradient(circle 120px at var(--glow-x, -200px) var(--glow-y, -200px), black 0%, transparent 100%);
}

.cursor-glow:hover .dot-grid {
    opacity: 1;
}

/* ===== Glow Text ===== */
.glow-text {
    text-shadow: 0 0 20px var(--primary-glow), 0 0 40px rgba(0, 192, 117, 0.15);
}

/* ===== Animated Border Gradient ===== */
.gradient-border {
    position: relative;
}

.gradient-border::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        var(--border-angle, 0deg),
        var(--primary),
        transparent 40%,
        var(--primary-dark) 60%,
        transparent
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    animation: rotate-border-angle 4s linear infinite;
}

.gradient-border:hover::after {
    opacity: 1;
}

@keyframes rotate-border-angle {
    to { --border-angle: 360deg; }
}

@property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

/* ===== Marquee Banner ===== */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 2;
}

.marquee-track {
    display: inline-flex;
    animation: marquee-scroll 25s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.marquee-item .marquee-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary-glow);
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Stat Counters ===== */
.stats-bar {
    padding: 60px 20px;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== Page Transition ===== */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

/* ===== Image Tilt ===== */
.tilt-image {
    transition: transform 0.2s ease-out;
    will-change: transform;
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 192, 117, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 192, 117, 0.15);
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
}

/* ===== Navbar ===== */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(8, 9, 16, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
    background: rgba(8, 9, 16, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-brand .space {
    display: none;
}

.nav-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* ===== Nav Cart ===== */
.nav-cart {
    position: relative;
    display: flex;
    align-items: center;
    padding: 4px;
    color: var(--text);
}

.nav-cart::after {
    display: none !important;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--primary);
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0 4px;
}

.cart-badge.has-items {
    display: flex;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
    border-radius: 1px;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* ===== Discord Buttons ===== */
.btn-discord {
    background: var(--discord);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-discord::after {
    display: none;
}

.btn-discord:hover {
    background: var(--discord-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.btn-discord svg {
    flex-shrink: 0;
}

.discord-icon {
    display: inline-flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
}

.btn-primary {
    background: var(--primary);
    color: #000;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-glow {
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-glow:hover {
    box-shadow: 0 0 30px var(--primary-glow-strong), 0 8px 25px var(--primary-glow);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-discord-lg {
    background: var(--discord);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.btn-discord-lg:hover {
    background: var(--discord-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.35);
    color: #fff;
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    width: 100%;
}

.hero-text {
    flex: 1;
    min-width: 380px;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 192, 117, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 192, 117, 0.15);
    animation: fadeInUp 0.6s ease forwards;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.1;
    opacity: 0;
}

.hero-text h1 .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(15px);
    animation: letterReveal 0.4s ease forwards;
}

@keyframes letterReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.hero-image {
    flex: 0 1 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: heroFloat 0.8s ease 0.3s forwards, float 6s ease-in-out 1.1s infinite;
    opacity: 0;
}

.hero-image img {
    max-width: 100%;
    max-height: 650px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px var(--primary-glow)) drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

@keyframes heroFloat {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px var(--primary-glow)) drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: 30%;
    left: 20%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

.hero-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.15) 0%, transparent 70%);
    bottom: 10%;
    right: 10%;
    z-index: 1;
    animation: pulse 5s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ===== About / Features ===== */
.about {
    padding: 100px 20px;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--primary-glow);
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 192, 117, 0.1);
    border-radius: 14px;
    color: var(--primary);
    transition: transform 0.3s, background 0.3s;
}

.feature-card:hover .feature-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(0, 192, 117, 0.2);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== Showcase Section ===== */
.showcase {
    padding: 100px 20px;
}

.showcase-switcher {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 4px;
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-tab {
    flex: 1;
    padding: 10px 20px;
    background: none;
    border: none;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
}

.showcase-tab:hover {
    color: var(--text);
}

.showcase-tab.active {
    background: var(--primary);
    color: #000;
    box-shadow: 0 2px 10px var(--primary-glow);
}

.showcase-display {
    position: relative;
}

.showcase-panel {
    display: none;
}

.showcase-panel.active {
    display: block;
    animation: prodSlideIn 0.4s ease;
}

.showcase-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
    align-items: start;
}

.showcase-video .video-embed {
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.showcase-info {
    padding: 28px 24px;
    border-radius: var(--radius);
}

.showcase-info .product-badge-inline {
    margin-bottom: 10px;
}

.showcase-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.showcase-info > p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.showcase-features {
    margin-bottom: 20px;
}

.showcase-features li {
    padding: 5px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.showcase-features li::before {
    content: "\2713";
    color: var(--primary);
    font-weight: 700;
    margin-right: 8px;
}

.showcase-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.showcase-info .btn {
    width: 100%;
}

/* ===== Page Header ===== */
.page-header {
    text-align: center;
    padding: 150px 20px 60px;
    position: relative;
}

.page-header-glow {
    position: absolute;
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse, var(--primary-glow) 0%, transparent 70%);
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.page-header .section-tag {
    position: relative;
    z-index: 1;
}

/* ===== Products Preview (Home) ===== */
.products-preview {
    padding: 100px 20px;
    position: relative;
}

.product-card-mini {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    padding: 0;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s, box-shadow 0.3s;
}

.product-card-mini:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px var(--primary-glow);
}

.product-card-mini-img {
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}

.product-card-mini-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-mini:hover .product-card-mini-img img {
    transform: scale(1.08);
}

.product-card-mini h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    font-weight: 700;
    padding: 16px 16px 0;
}

.product-card-mini .price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0 16px 16px;
}

/* ===== Products Grid ===== */
.products {
    padding: 20px 20px 80px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.product-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    padding: 0;
    text-align: center;
    position: relative;
    overflow: visible;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px var(--primary-glow);
}

.product-card.featured {
    border-color: rgba(0, 192, 117, 0.25);
    box-shadow: 0 0 35px var(--primary-glow);
    transform: scale(1.03);
}

.product-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px var(--primary-glow-strong);
}

.product-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px var(--primary-glow);
    white-space: nowrap;
    z-index: 5;
}

.product-img {
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}

.product-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

/* GIF hover swap */
.product-img-gif {
    position: relative;
}

.product-img-gif .product-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-img-gif .product-img-hover {
    opacity: 1;
}

.product-card:hover .product-img-gif .product-img-static {
    opacity: 0;
}

.product-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 700;
    padding: 20px 16px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card > p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 16px;
    line-height: 1.5;
    padding: 0 20px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    padding: 0 20px;
}

.product-card .btn {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
}

/* ===== Product Detail Page ===== */
.product-detail {
    padding: 120px 20px 80px;
    position: relative;
    z-index: 2;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
    transition: color 0.2s, transform 0.2s;
}

.back-link:hover {
    color: var(--primary);
    transform: translateX(-4px);
}

.product-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1240px;
    margin: 0 auto;
}

.product-detail-hero {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ===== Media Gallery ===== */
.media-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.media-main {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #000;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.media-main .media-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.media-main .media-slide.active {
    opacity: 1;
    pointer-events: all;
}

.media-main iframe,
.media-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    display: block;
}

/* ===== Lazy YouTube Lite ===== */
.yt-lite {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
}

/* Cinematic gradient overlay — top + bottom vignette */
.yt-lite::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.08) 40%, transparent 65%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.28) 0%, transparent 28%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.4s;
}

.yt-lite:hover::before {
    opacity: 0.5;
}

/* Desaturate thumbnail — remove the gaming-YT oversaturation */
.yt-lite img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.4s ease;
    filter: brightness(0.78) saturate(0.55) contrast(1.08);
}

.yt-lite:hover img {
    transform: scale(1.02);
    filter: brightness(0.92) saturate(0.72) contrast(1.04);
}

/* Play button — minimal, above overlay */
.yt-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px) saturate(0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.yt-lite:hover .yt-play-btn {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
    box-shadow: 0 0 24px var(--primary-glow-strong);
    transform: translate(-50%, -50%) scale(1.08);
}

.yt-play-btn svg {
    width: 24px;
    height: 24px;
    margin-left: 3px;
}

.media-thumbs {
    display: flex;
    gap: 10px;
}

.media-thumb {
    flex: 0 0 90px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--border);
    background: #000;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s;
    padding: 0;
}

.media-thumb:hover {
    border-color: rgba(0, 192, 117, 0.3);
}

.media-thumb.active {
    border-color: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
}

.media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75) saturate(0.55);
    transition: filter 0.2s;
}

.media-thumb:hover img,
.media-thumb.active img {
    filter: brightness(0.88) saturate(0.7);
}

.media-thumb-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,192,117,0.15));
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-detail-image {
    position: relative;
}

.product-detail-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    z-index: 2;
    transition: transform 0.4s;
}

.product-detail-image:hover img {
    transform: scale(1.02);
}

.product-image-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
}

.product-detail-header {
    display: flex;
    flex-direction: column;
}

/* ===== Product Bottom (Video + Features side by side) ===== */
.product-detail-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.product-video h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.video-embed iframe,
.video-embed .yt-lite {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.product-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    background: none;
    border: none;
    padding: 0;
}

.product-badge-inline .status-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary-glow);
    animation: blink 2s ease-in-out infinite;
    flex-shrink: 0;
}

.product-badge-inline.updating {
    color: #f59e0b;
}

.product-badge-inline .status-pulse.updating {
    background: #f59e0b;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}

.product-badge-inline.unavailable {
    color: #888;
}

.product-badge-inline .status-pulse.unavailable {
    background: #888;
    box-shadow: none;
    animation: none;
}

.product-badges-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.product-badges-row .product-badge-inline,
.product-badges-row .product-badge-delivery {
    margin-bottom: 0;
}

.product-badge-delivery {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 14px;
    background: none;
    border: none;
    padding: 0;
}

.product-badge-delivery svg {
    width: 13px;
    height: 13px;
    stroke: var(--primary);
    fill: none;
}

/* ===== Product Page Load Animation ===== */
.product-detail-image {
    animation: prodFadeIn 0.6s ease forwards;
}

.product-detail-header,
.product-detail-info {
    animation: prodSlideIn 0.6s ease 0.15s forwards;
    opacity: 0;
}

.product-detail-bottom {
    animation: prodSlideIn 0.6s ease 0.3s forwards;
    opacity: 0;
}

@keyframes prodFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes prodSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Page Load Animations (all pages) ===== */
.page-header h1 {
    animation: prodSlideIn 0.5s ease forwards;
    opacity: 0;
}

.page-header p {
    animation: prodSlideIn 0.5s ease 0.1s forwards;
    opacity: 0;
}

.page-header .section-tag {
    animation: prodSlideIn 0.5s ease forwards;
    opacity: 0;
}

.products .products-grid {
    animation: prodSlideIn 0.6s ease 0.2s forwards;
    opacity: 0;
}

.status-section .status-overall {
    animation: prodSlideIn 0.5s ease 0.1s forwards;
    opacity: 0;
}

.status-section .status-list {
    animation: prodSlideIn 0.6s ease 0.2s forwards;
    opacity: 0;
}

.status-section .status-legend {
    animation: prodSlideIn 0.6s ease 0.3s forwards;
    opacity: 0;
}

.tos-content {
    animation: prodSlideIn 0.6s ease 0.2s forwards;
    opacity: 0;
}

.cart-section {
    animation: prodSlideIn 0.6s ease 0.15s forwards;
    opacity: 0;
}

.error-code {
    animation: prodFadeIn 0.6s ease forwards;
}

.error-page h1 {
    animation: prodSlideIn 0.5s ease 0.15s forwards;
    opacity: 0;
}

.error-page p {
    animation: prodSlideIn 0.5s ease 0.25s forwards;
    opacity: 0;
}

.error-buttons {
    animation: prodSlideIn 0.5s ease 0.35s forwards;
    opacity: 0;
}

.platform-select {
    animation: prodSlideIn 0.6s ease 0.2s forwards;
    opacity: 0;
}

.product-badge-inline.season {
    background: var(--season-glow);
    color: var(--season);
    border-color: rgba(168, 85, 247, 0.2);
}

.product-detail-info h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.product-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-quote {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--primary);
    padding: 14px 18px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== Platform Select Page ===== */
.platform-select {
    padding: 20px 20px 80px;
}

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

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 28px 32px;
    border-radius: var(--radius);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s, box-shadow 0.3s;
}

.platform-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 25px var(--primary-glow);
}

.platform-card-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--primary);
}

.platform-svg {
    opacity: 0.8;
}

.platform-card:hover .platform-svg {
    opacity: 1;
}

.platform-card h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.platform-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.platform-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.platform-card .btn {
    width: 100%;
}

/* ===== Product Platform Icons ===== */
.product-platforms {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    padding-top: 16px;
}

.product-platforms img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    opacity: 0.4;
    transition: opacity 0.2s;
    filter: invert(1);
}

.product-card:hover .product-platforms img,
.product-card-mini:hover .product-platforms img {
    opacity: 0.7;
}

/* ===== XIM Platform Popup ===== */
.xim-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 6, 9, 0.8);
    backdrop-filter: blur(12px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.xim-popup-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.xim-popup {
    background: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.xim-popup-overlay.open .xim-popup {
    transform: scale(1);
}

.xim-popup h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.xim-popup p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.xim-popup-buttons {
    display: flex;
    gap: 12px;
}

.xim-popup-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
}

.xim-popup-btn:hover {
    border-color: var(--primary);
    background: rgba(0, 192, 117, 0.06);
    box-shadow: 0 0 20px var(--primary-glow);
}

.xim-popup-btn span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

.xim-popup-btn img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: invert(1);
    opacity: 0.8;
}

.xim-popup-icons {
    display: flex;
    gap: 8px;
}

.xim-popup-icons img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: invert(1);
    opacity: 0.8;
}

/* ===== Platform Tabs ===== */
.platform-tabs {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 4px;
    margin-bottom: 20px;
}

.platform-tab {
    flex: 1;
    padding: 10px 16px;
    background: none;
    border: none;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
}

.platform-tab:hover {
    color: var(--text);
}

.platform-tab.active {
    background: var(--primary);
    color: #000;
    box-shadow: 0 2px 10px var(--primary-glow);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.product-highlight {
    background: rgba(0, 192, 117, 0.08);
    border-left: 3px solid var(--primary);
    padding: 12px 16px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-weight: 600;
    color: var(--primary) !important;
    font-size: 0.92rem;
}

/* ===== Product Info Below (Features & Requirements) ===== */
.product-info-below {
    max-width: 100%;
    margin: 48px auto 0;
}

.feature-categories {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.feature-category {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 22px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
    animation: featureFloatIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.feature-category:nth-child(1) { animation-delay: 0.05s; }
.feature-category:nth-child(2) { animation-delay: 0.15s; }
.feature-category:nth-child(3) { animation-delay: 0.25s; }
.feature-category:nth-child(4) { animation-delay: 0.35s; }

.feature-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transition: left 0.55s ease;
    z-index: 1;
}

.feature-category::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%) scale(0.6);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 192, 117, 0.10) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.feature-category:hover::before {
    left: 100%;
}

.feature-category:hover::after {
    opacity: 0.7;
    transform: translateX(-50%) scale(1);
}

.feature-category:hover {
    border-color: rgba(0, 192, 117, 0.28);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25), 0 0 18px var(--primary-glow);
}

.feature-category:hover .feature-category-icon {
    transform: scale(1.08) rotate(-4deg);
    background: rgba(0, 192, 117, 0.18);
}

.feature-category-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s, box-shadow 0.3s;
}

.feature-category ul li {
    transition: color 0.2s, transform 0.2s;
}

.feature-category:hover ul li {
    color: var(--text);
}

.feature-category:hover ul li::before {
    animation: checkPop 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes checkPop {
    0% { transform: scale(0.7); opacity: 0.5; }
    60% { transform: scale(1.3); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes featureFloatIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.requirements-block {
    animation: featureFloatIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.45s both;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
}

.requirements-block:hover {
    border-color: rgba(0, 192, 117, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 25px var(--primary-glow);
    transform: translateY(-4px);
}

.requirements-block li {
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.requirements-block li:hover {
    color: var(--text);
    border-color: var(--primary);
    background: rgba(0, 192, 117, 0.08);
}

/* ===== Supported Platforms Block ===== */
.supported-platforms {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.supported-platforms-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.supported-platforms-label svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.supported-platforms-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.supported-platforms-icons img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: invert(1);
    opacity: 0.75;
    transition: opacity 0.2s, transform 0.2s;
}

.supported-platforms-icons img:hover {
    opacity: 1;
    transform: scale(1.15);
}

.feature-category-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.feature-category-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 192, 117, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-category-icon svg {
    width: 18px;
    height: 18px;
}

.feature-category-title {
    font-size: 0.95rem;
    font-weight: 700;
}

.feature-category ul li {
    list-style: none;
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    white-space: nowrap;
}

.feature-category ul li::before {
    content: "\2713";
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

.requirements-block {
    max-width: 560px;
    margin: 28px auto 0;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 24px;
    text-align: center;
}

.requirements-block h4 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text);
}

.requirements-block h4 svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.requirements-block ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.requirements-block li {
    font-size: 0.82rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: 20px;
}

/* ===== Category Filter (Products Page) ===== */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.category-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn:hover {
    color: var(--text);
    border-color: rgba(0, 192, 117, 0.3);
}

.category-btn.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    box-shadow: 0 2px 12px var(--primary-glow);
}

.product-card.hidden {
    display: none;
}

/* ===== Product Dropdowns ===== */
.product-dropdown {
    margin-bottom: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.product-dropdown-toggle {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
}

.product-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.04);
}

.dropdown-icon {
    font-size: 0.8rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.product-dropdown.open .dropdown-icon {
    transform: rotate(180deg);
}

.product-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-dropdown.open .product-dropdown-content {
    max-height: 600px;
}

.product-dropdown-content .product-features-list {
    padding: 4px 18px 14px;
    margin-bottom: 0;
}

.product-features-list {
    margin-bottom: 32px;
}

.product-features-list li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    transition: color 0.2s, padding-left 0.2s;
}

.product-features-list li:last-child {
    border-bottom: none;
}

.product-features-list li:hover {
    color: var(--text);
    padding-left: 4px;
}

.product-features-list li::before {
    content: "\2713";
    color: var(--primary);
    font-weight: 700;
    margin-right: 10px;
}

/* ===== Variant Toggle (Controller / M&K) ===== */
.variant-toggle {
    display: inline-flex;
    position: relative;
    background: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 4px;
    margin-bottom: 18px;
    width: 100%;
    max-width: 320px;
}

.variant-toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50px;
    box-shadow: 0 0 18px var(--primary-glow);
    transition: transform 0.4s cubic-bezier(0.68, -0.3, 0.3, 1.3);
    z-index: 1;
    pointer-events: none;
}

.variant-toggle[data-position="1"] .variant-toggle-slider {
    transform: translateX(100%);
}

.variant-toggle-opt {
    flex: 1;
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: color 0.3s;
    border-radius: 50px;
    white-space: nowrap;
}

.variant-toggle-opt svg {
    width: 20px;
    height: 20px;
    transition: color 0.3s;
}

.variant-toggle-opt.active {
    color: #000;
}

.variant-content {
    display: none;
    animation: featureFloatIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.variant-content.active {
    display: block;
}

/* Hardware requirement callout */
.hardware-requirement {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.02));
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.hardware-req-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hardware-req-icon svg {
    width: 22px;
    height: 22px;
}

.hardware-req-text {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.4;
}

.hardware-req-text strong {
    color: #f59e0b;
    font-weight: 700;
}

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

.hardware-req-text {
    flex: 1;
}

.hardware-req-info {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.hardware-req-info svg {
    width: 16px;
    height: 16px;
}

.hardware-req-info:hover {
    background: rgba(245, 158, 11, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.3);
}

/* ===== Hardware Popup ===== */
.hw-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 6, 9, 0.8);
    backdrop-filter: blur(12px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.hw-popup-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.hw-popup {
    background: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hw-popup-overlay.open .hw-popup {
    transform: scale(1);
}

.hw-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    color: var(--text);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    line-height: 1;
    transition: background 0.2s;
}

.hw-popup-close:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hw-popup-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, rgba(0,192,117,0.05), rgba(245,158,11,0.05));
    border-radius: var(--radius) var(--radius) 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hw-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
}

.hw-popup-body {
    padding: 24px 28px 28px;
}

.hw-popup-body h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.hw-popup-body > p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hw-popup-buy-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.hw-popup-buy {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hw-shop-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s;
}

.hw-shop-link:hover {
    border-color: var(--primary);
    background: rgba(0, 192, 117, 0.05);
    transform: translateX(2px);
}

.hw-shop-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.hw-shop-sub {
    flex: 1;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.hw-shop-link svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ===== Bundle Hardware Note (MNK bundle variant) ===== */
.bundle-hardware-note {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    margin-top: 12px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.02));
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: var(--text-muted);
    animation: featureFloatIn 0.3s ease;
}

.bundle-hardware-note.show {
    display: flex;
}

.bundle-hardware-note svg {
    width: 18px;
    height: 18px;
    color: #f59e0b;
    flex-shrink: 0;
}

.bundle-hardware-note strong {
    color: #f59e0b;
    font-weight: 700;
}

.bundle-hardware-note span {
    flex: 1;
    line-height: 1.4;
}

.bundle-hardware-info {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.bundle-hardware-info svg {
    width: 14px;
    height: 14px;
    color: #f59e0b;
}

.bundle-hardware-info:hover {
    background: rgba(245, 158, 11, 0.2);
    transform: scale(1.1);
}

/* ===== Bundle Addon (MNK checkbox) ===== */
.bundle-addon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    margin-top: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color 0.3s, background 0.3s;
}

.bundle-addon.active {
    border-color: rgba(0, 192, 117, 0.4);
    background: rgba(0, 192, 117, 0.04);
}

.bundle-addon.disabled {
    opacity: 0.45;
    pointer-events: none;
}

.bundle-addon-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex: 1;
}

.bundle-addon-check {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 2px solid var(--border);
    background: transparent;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
}

.bundle-addon-label input[type="checkbox"] {
    display: none;
}

.bundle-addon-label input[type="checkbox"]:checked ~ .bundle-addon-check {
    border-color: var(--primary);
    background: var(--primary);
}

.bundle-addon-check svg {
    width: 13px;
    height: 13px;
    stroke: #000;
    opacity: 0;
    transition: opacity 0.15s;
}

.bundle-addon-label input[type="checkbox"]:checked ~ .bundle-addon-check svg {
    opacity: 1;
}

.bundle-addon-info {
    flex: 1;
}

.bundle-addon-name {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.bundle-addon-sub {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 1px;
}

.bundle-addon-price {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.bundle-total {
    margin-top: 6px;
    text-align: right;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.2px;
    opacity: 0.85;
}

.bundle-was {
    font-size: 0.78em;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 5px;
    opacity: 0.7;
}

/* ===== Plan Cards ===== */
.plan-cards {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.plan-card {
    flex: 1;
    min-width: 140px;
    background: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px 16px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.plan-card {
    cursor: pointer;
}

.plan-card:hover {
    border-color: rgba(0, 192, 117, 0.2);
}

.plan-card.selected,
.plan-card.bundle-selected {
    border-color: var(--primary);
    background: rgba(0, 192, 117, 0.06);
    box-shadow: 0 0 20px var(--primary-glow);
}

.plan-card.recommended:not(.selected) {
    border-color: rgba(0, 192, 117, 0.15);
}

.plan-card-tag {
    position: absolute;
    top: -9px;
    right: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.plan-card-header {
    margin-bottom: 14px;
}

.plan-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.plan-price {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

.plan-old-price {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
    margin-left: 6px;
}

.plan-card-note {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: -8px;
    font-weight: 500;
}

.predator-top10-note {
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.predator-top10-note strong {
    color: var(--text);
}

.plan-card-actions {
    display: none;
}

.plan-card-select {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.bundle-addon-link {
    color: var(--primary);
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.2s;
}

.bundle-addon-link:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.plan-card-select .btn {
    flex: 1;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 700;
}

/* ===== Variant Selector ===== */
.pricing-options h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.variant-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.variant-btn {
    flex: 1;
    min-width: 120px;
    background: var(--bg-card-solid);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    color: var(--text);
    font-family: inherit;
}

.variant-btn:hover {
    border-color: rgba(0, 192, 117, 0.3);
    background: rgba(0, 192, 117, 0.05);
}

.variant-btn.active {
    border-color: var(--primary);
    background: rgba(0, 192, 117, 0.08);
    box-shadow: 0 0 20px var(--primary-glow);
}

.variant-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-muted);
}

.variant-btn.active .variant-label {
    color: var(--text);
}

.variant-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.variant-old-price {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
    margin-top: 2px;
}

.inline-link {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.inline-link:hover {
    color: var(--primary-light);
}

.variant-tag {
    position: absolute;
    top: -9px;
    right: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ===== Product Actions (Buy Now / Add to Cart) ===== */
.product-actions {
    display: flex;
    gap: 12px;
}

.product-actions .btn {
    flex: 1;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 700;
}

/* ===== Cart Notification ===== */
.cart-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-card-solid);
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    padding: 16px 24px;
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px var(--primary-glow), 0 0 60px rgba(0, 192, 117, 0.1);
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
    backdrop-filter: blur(20px);
}

.cart-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.cart-notification .cart-icon {
    font-size: 1.3rem;
}

.cart-notification .cart-text {
    font-size: 0.9rem;
}

.cart-notification .cart-text strong {
    color: var(--primary);
}

/* ===== Status ===== */
.status-section {
    padding: 20px 20px 80px;
}

.status-overall {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 32px;
    font-size: 1.1rem;
    font-weight: 600;
}

.status-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

.status-dot.online {
    background: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow-strong);
}

.status-dot.degraded {
    background: #f59e0b;
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}

.status-dot.offline {
    background: #ef4444;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.4);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.status-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

a.status-item {
    text-decoration: none;
    color: inherit;
}

.status-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-radius: var(--radius);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.status-item:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.status-info h3 {
    font-size: 1rem;
    margin-bottom: 2px;
    font-weight: 700;
}

.status-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.status-badge {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.status-badge.online {
    background: rgba(0, 192, 117, 0.12);
    color: var(--primary);
    border: 1px solid rgba(0, 192, 117, 0.15);
}

.status-badge.soon {
    background: rgba(59, 130, 246, 0.12);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.status-badge.degraded {
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.status-badge.offline {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.status-badge.unavailable {
    background: rgba(150, 150, 150, 0.1);
    color: #888;
    border: 1px solid rgba(150, 150, 150, 0.12);
}

/* ===== Status Legend ===== */
.status-legend {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding: 20px 24px;
    border-radius: var(--radius);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.status-dot-small {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-dot-small.online { background: var(--primary); }
.status-dot-small.soon { background: #3b82f6; }
.status-dot-small.degraded { background: #f59e0b; }
.status-dot-small.offline { background: #ef4444; }
.status-dot-small.unavailable { background: #888; }

/* ===== CTA ===== */
.cta {
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 192, 117, 0.03), transparent);
    pointer-events: none;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    position: relative;
}

.cta p {
    color: var(--text-muted);
    margin-bottom: 28px;
    position: relative;
}

/* ===== Footer ===== */
footer {
    padding: 60px 20px 32px;
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.15);
}

footer .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.footer-col-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 360px;
}

.footer-brand {
    font-size: 1.4rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.footer-brand img {
    width: 28px;
    height: 28px;
}

.footer-brand .space {
    display: none;
}

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

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text);
    margin-bottom: 16px;
}

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

.footer-col li a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.footer-col li a:hover {
    color: var(--primary);
    padding-left: 3px;
}

.footer-discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--discord);
    color: #fff !important;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    width: fit-content;
}

.footer-discord-btn:hover {
    background: var(--discord-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.footer-discord-btn svg {
    width: 18px;
    height: 14px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

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

/* ===== Payment Icons (Real) ===== */
.footer-payments {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 4px 6px;
    transition: border-color 0.2s, transform 0.2s, opacity 0.2s;
    overflow: hidden;
}

.payment-icon:hover {
    border-color: rgba(0, 192, 117, 0.25);
    transform: translateY(-2px);
}

.payment-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: invert(1) grayscale(1) brightness(1.4);
    opacity: 0.55;
    transition: opacity 0.2s;
}

.payment-icon:hover img {
    opacity: 0.85;
}

/* Larger icons (visa, google pay) */
.payment-icon.larger img {
    transform: scale(1.4);
}

/* Crypto: a bit smaller than other larger icons */
.payment-icon[title="Crypto"] img {
    transform: scale(1.05);
}

/* Apple Pay: slightly larger */
.payment-icon[title="Apple Pay"] img {
    transform: scale(1.2);
}

/* ===== Discord Widget ===== */
.discord-section {
    padding: 100px 20px;
    position: relative;
}

.discord-widget-wrapper {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.discord-widget-text {
    flex: 1;
}

.discord-widget-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.discord-widget-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.discord-widget-frame {
    flex: 0 0 350px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.discord-widget-frame iframe {
    display: block;
    border: none;
}

/* ===== Reviews ===== */
.reviews {
    padding: 100px 20px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform 0.3s, border-color 0.3s;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.review-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review-card blockquote {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.review-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.review-author span {
    color: var(--text-muted);
    font-weight: 400;
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 20px;
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s;
}

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

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

/* ===== TOS ===== */
.tos-section {
    padding: 20px 20px 80px;
}

.legal-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.legal-nav-link {
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 24px;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.2s;
}

.legal-nav-link:hover {
    color: var(--text);
    border-color: rgba(0, 192, 117, 0.3);
}

.legal-nav-link.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    box-shadow: 0 2px 12px var(--primary-glow);
}

.legal-meta {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 28px !important;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.tos-content {
    border-radius: var(--radius);
    padding: 48px 40px;
}

.tos-block {
    margin-bottom: 36px;
}

.tos-block:last-child {
    margin-bottom: 0;
}

.tos-block h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.tos-block h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 20px 0 10px;
    color: var(--text);
}

.tos-block p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.tos-block ul {
    padding-left: 0;
    margin-bottom: 10px;
}

.tos-block li {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    padding: 4px 0 4px 20px;
    position: relative;
}

.tos-block li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.tos-block ul ul {
    margin-top: 6px;
    margin-left: 8px;
}

.tos-block ul ul li::before {
    background: var(--text-muted);
    opacity: 0.5;
}

/* ===== Reviews Marquee (scrolling carousel) ===== */
.reviews-marquee {
    overflow: hidden;
    padding: 10px 0;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.reviews-marquee + .reviews-marquee {
    margin-top: 4px;
}

.reviews-track {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
}

.reviews-track-left {
    animation: reviews-scroll-left 180s linear infinite;
}

.reviews-track-right {
    animation: reviews-scroll-right 180s linear infinite;
}

.reviews-marquee:hover .reviews-track {
    animation-play-state: paused;
}

@keyframes reviews-scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes reviews-scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.review-card {
    flex: 0 0 340px;
    padding: 18px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    transition: border-color 0.3s, transform 0.3s;
}

.review-card:hover {
    border-color: rgba(0, 192, 117, 0.3);
    transform: translateY(-3px);
}

.review-card .discord-msg-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.review-card .discord-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}

.review-card .discord-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card .discord-username {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
}

.review-card .discord-date {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.review-card .discord-msg-body {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-card .discord-msg-footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-card .discord-reaction {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-card .discord-channel {
    font-size: 0.72rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* ===== Discord-style Reviews ===== */
.section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 8px;
}

.discord-msg {
    text-align: left;
    padding: 20px 24px;
}

.discord-msg-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.discord-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}

.discord-username {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
}

.discord-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-left: 8px;
}

.discord-msg-body {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.discord-msg-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.discord-reaction {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.discord-channel {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* ===== Custom Order Page ===== */
.custom-order-section {
    padding: 20px 20px 80px;
}

.custom-order-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.custom-order-form {
    padding: 36px 32px;
    border-radius: var(--radius);
}

.custom-order-head {
    text-align: center;
    margin-bottom: 28px;
}

.custom-order-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 14px;
    background: rgba(0, 192, 117, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.custom-order-icon svg {
    width: 28px;
    height: 28px;
}

.custom-order-head h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.custom-order-head p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.5;
}

.custom-amount-wrap {
    position: relative;
    margin-bottom: 22px;
}

.custom-currency {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-muted);
    pointer-events: none;
    transition: color 0.2s;
}

.custom-amount-input {
    width: 100%;
    padding: 22px 22px 22px 50px;
    background: var(--bg-card-solid);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 2rem;
    font-weight: 800;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    -moz-appearance: textfield;
    appearance: textfield;
}

.custom-amount-input::-webkit-outer-spin-button,
.custom-amount-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.custom-amount-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.custom-amount-input:focus + .custom-currency,
.custom-amount-wrap:focus-within .custom-currency {
    color: var(--primary);
}

.custom-presets {
    margin-bottom: 22px;
}

.custom-presets-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.custom-presets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.custom-preset {
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.custom-preset:hover {
    color: var(--text);
    border-color: rgba(0, 192, 117, 0.3);
    background: rgba(0, 192, 117, 0.04);
}

.custom-preset.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.custom-note-wrap {
    margin-bottom: 22px;
}

.custom-note-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.custom-note-label span {
    color: var(--text-muted);
    font-weight: 400;
}

.custom-note-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.custom-note-input:focus {
    border-color: rgba(0, 192, 117, 0.5);
}

.custom-order-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: rgba(0, 192, 117, 0.05);
    border: 1px solid rgba(0, 192, 117, 0.2);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.custom-summary-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-summary-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.custom-order-form .product-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.custom-order-form .product-actions .btn {
    flex: 1;
    padding: 14px 24px;
    font-size: 1rem;
}

.custom-order-form .btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.custom-error {
    display: none;
    font-size: 0.85rem;
    color: #ef4444;
    text-align: center;
    margin: 0;
}

.custom-order-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.custom-info-card {
    padding: 20px 22px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-card);
    backdrop-filter: blur(20px);
}

.custom-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0, 192, 117, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 10px;
}

.custom-info-icon svg {
    width: 18px;
    height: 18px;
}

.custom-info-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.custom-info-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.custom-order-info .btn-discord-lg {
    justify-content: center;
    text-align: center;
}

/* ===== Cart Page ===== */
.cart-section {
    padding: 20px 20px 80px;
}

.cart-empty {
    text-align: center;
    padding: 80px 20px;
}

.cart-empty-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    opacity: 0.3;
}

.cart-empty h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.cart-empty p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: start;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    border-radius: var(--radius);
    gap: 16px;
}

.cart-item-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
    min-width: 70px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.cart-item-id {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    line-height: 1;
}

.cart-item-remove:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.cart-summary {
    padding: 28px 24px;
    border-radius: var(--radius);
    position: sticky;
    top: 100px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.cart-summary-row.cart-total {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    border-bottom: none;
    padding-bottom: 20px;
}

.cart-total span:last-child {
    color: var(--primary);
}

.cart-checkout-btn {
    width: 100%;
    margin-bottom: 10px;
}

.cart-clear-btn {
    width: 100%;
    font-size: 0.85rem;
    padding: 10px;
}

/* ===== 404 Page ===== */
.error-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
}

.error-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

.error-code {
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    letter-spacing: -4px;
    text-shadow: 0 0 40px var(--primary-glow);
}

.error-page h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.error-page p {
    color: var(--text-muted);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.error-buttons {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 1;
}

/* ===== Image Loading ===== */
img {
    background: linear-gradient(110deg, rgba(255,255,255,0.02) 30%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.02) 70%);
    background-size: 200% 100%;
    animation: img-shimmer 1.5s ease-in-out infinite;
}

img[src], img.loaded {
    animation: none;
    background: none;
}

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

/* ===== Scroll to Top ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s, border-color 0.3s;
    pointer-events: none;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.scroll-top:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* ===== Promo Banner ===== */
.promo-banner {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
    background-size: 200% 100%;
    animation: promo-shimmer 3s ease infinite;
    color: #000;
    text-align: center;
    padding: 10px 40px;
    font-size: 0.85rem;
    font-weight: 700;
    position: relative;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

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

.promo-banner code {
    background: rgba(0, 0, 0, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Inter', monospace;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.promo-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(0, 0, 0, 0.5);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.2s;
}

.promo-close:hover {
    color: #000;
}

.promo-banner + .navbar {
    top: 38px;
}

.promo-banner + .navbar.scrolled {
    top: 0;
}

body.promo-active .hero,
body.promo-active .page-header,
body.promo-active .product-detail,
body.promo-active .error-page {
    padding-top: 158px;
}

/* ===== Search Bar ===== */
.nav-search {
    position: relative;
}

.nav-search-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 6px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.nav-search-btn:hover {
    color: var(--primary);
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 6, 9, 0.85);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20vh;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.search-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.search-box {
    width: 100%;
    max-width: 560px;
    padding: 0 20px;
}

.search-input-wrap {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 18px 24px 18px 52px;
    background: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 1.1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.search-results {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
}

.search-result-item:hover {
    border-color: var(--primary);
    background: rgba(0, 192, 117, 0.05);
}

.search-result-item img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.search-result-item .result-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.search-result-item .result-price {
    font-size: 0.85rem;
    color: var(--primary);
}

.search-hint {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 16px;
}

.search-hint kbd {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.75rem;
    font-family: inherit;
}

/* ===== Plan Comparison Table ===== */
.plan-compare {
    margin-top: 32px;
    border-top: 1px solid var(--border);
    padding-top: 28px;
}

.plan-compare h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.88rem;
}

.compare-table thead th {
    padding: 12px 16px;
    text-align: center;
    font-weight: 700;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    background: rgba(0, 192, 117, 0.04);
}

.compare-table thead th:first-child {
    text-align: left;
    background: none;
    border-radius: var(--radius-sm) 0 0 0;
}

.compare-table thead th.popular-col {
    color: var(--primary);
    position: relative;
}

.compare-table tbody td {
    padding: 12px 16px;
    text-align: center;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.compare-table tbody td:first-child {
    text-align: left;
    color: var(--text);
    font-weight: 500;
}

.compare-check {
    color: var(--primary);
    font-weight: 700;
}

.compare-cross {
    color: var(--text-muted);
    opacity: 0.3;
}

/* ===== Payment Icons ===== */
.footer-payments {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    transition: border-color 0.2s;
}

.payment-icon:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

/* ===== Section Divider ===== */
.section-divider {
    position: relative;
    height: 1px;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

/* ===== Typewriter ===== */
.typewriter {
    overflow: hidden;
    border-right: 2px solid var(--primary);
    white-space: nowrap;
    width: 0;
    animation: typewriter-text 2.5s steps(60, end) 0.8s forwards, typewriter-blink 0.6s step-end infinite;
}

@keyframes typewriter-text {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes typewriter-blink {
    50% { border-color: transparent; }
}

.typewriter-wrap {
    display: inline-block;
    max-width: 100%;
}

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .navbar {
        padding: 14px 16px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(6, 6, 9, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 24px 0;
        gap: 0;
        border-radius: 0;
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
    }

    .nav-links.open {
        transform: translateX(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 18px 20px;
        font-size: 1.2rem;
    }

    .nav-links a::after {
        display: none;
    }

    .btn-discord {
        margin: 12px 40px;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    /* Hero */
    .hero {
        padding: 110px 16px 50px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-image {
        flex: 0 1 280px;
    }

    .hero-image img {
        max-height: 280px;
    }

    /* Stats */
    .stats-grid {
        flex-wrap: wrap;
        gap: 16px 32px;
        justify-content: center;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* About */
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .feature-card {
        padding: 20px 14px;
    }

    /* Products grid */
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    /* Showcase */
    .showcase-layout {
        grid-template-columns: 1fr;
    }

    .showcase-switcher {
        max-width: 100%;
    }

    .showcase-tab {
        font-size: 0.82rem;
        padding: 9px 14px;
    }

    /* Product detail */
    .product-detail-hero {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .media-main {
        max-height: 220px;
    }

    .media-thumbs {
        gap: 8px;
    }

    .media-thumb {
        width: 64px;
        height: 48px;
    }

    .product-badges-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    .supported-platforms {
        flex-wrap: wrap;
        gap: 8px;
    }

    .plan-cards {
        gap: 10px;
    }

    .plan-card {
        padding: 14px 12px;
    }

    .plan-price {
        font-size: 1.35rem;
    }

    .plan-card-select {
        flex-direction: column;
        gap: 10px;
    }

    .plan-card-select .btn {
        width: 100%;
        justify-content: center;
    }

    .variant-toggle {
        width: 100%;
    }

    .bundle-addon {
        flex-wrap: wrap;
        row-gap: 6px;
    }

    .bundle-addon-label {
        flex: 1 1 calc(100% - 80px);
        min-width: 0;
    }

    .bundle-total {
        width: 100%;
        text-align: right;
    }

    .hw-popup-body {
        padding: 16px 18px 20px;
    }

    .feature-categories {
        grid-auto-flow: row;
        grid-template-columns: 1fr;
    }

    .product-detail-bottom {
        grid-template-columns: 1fr;
    }

    .variant-selector {
        flex-direction: column;
    }

    .product-actions {
        flex-direction: column;
    }

    /* Footer */
    footer .container {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }

    .footer-col-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .section-header h2,
    .page-header h1 {
        font-size: 1.9rem;
    }

    .discord-widget-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .discord-widget-frame {
        flex: none;
        width: 100%;
        max-width: 350px;
    }

    .tos-content {
        padding: 24px 16px;
    }

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

    .cart-content {
        grid-template-columns: 1fr;
    }

    .error-code {
        font-size: 5rem;
    }

    .error-buttons {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

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

    .hero {
        padding: 100px 12px 44px;
    }

    .hero-text h1 {
        font-size: 1.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .section-header h2,
    .page-header h1 {
        font-size: 1.6rem;
    }

    .stats-grid {
        gap: 12px 24px;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .plan-cards {
        flex-direction: column;
    }

    .plan-card-select .btn {
        padding: 13px 20px;
        font-size: 0.9rem;
    }

    .media-main {
        max-height: 190px;
    }

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

    .marquee-item {
        font-size: 0.68rem;
        gap: 20px;
    }

    .showcase-tab {
        font-size: 0.78rem;
        padding: 8px 10px;
    }

    .hw-popup {
        margin: 0 4px;
    }

    .hw-popup-body {
        padding: 14px 14px 18px;
    }

    .bundle-addon {
        padding: 10px 12px;
    }

    .bundle-addon-name {
        font-size: 0.83rem;
    }

    .bundle-addon-sub {
        font-size: 0.72rem;
    }
}
