/* =========================================
   LUCENT CHEATS - PREMIUM DESIGN SYSTEM
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors */
    --bg-body: #050505;
    --bg-surface: #0a0a0a;
    --primary: #00C4FF;
    /* Bright Cyan Blue */
    --primary-glow: rgba(0, 196, 255, 0.5);
    --primary-gold: #00E5FF;
    /* Lighter Cyan accent */
    --text-main: #ffffff;
    --text-muted: #a3a3a3;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.15);

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;

    /* Effects */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Hide default cursor */
}

/* Custom Selection Color */
::selection {
    background: var(--primary);
    color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    position: relative;
    /* Body Font */
}

h1,
h2,
h3,
h4,
.logo,
.btn,
.nav-links a,
.section-tag {
    font-family: 'Space Grotesk', sans-serif;
    /* Heading Font */
}

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

ul {
    list-style: none;
}

/* Canvas Background */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
}

/* Enhanced honeycomb effect on hero section */
.hero #bg-canvas {
    opacity: 0.6;
    z-index: 0;
}

/* Custom Cursor */
#cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 100001;
}

#cursor-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: rgba(0, 196, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 196, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 100000;
    transition: width 0.2s, height 0.2s;
}

body:hover #cursor-blur {
    opacity: 1;
}

/* Cursor Expansion Targets */
a:hover~#cursor-blur,
button:hover~#cursor-blur,
.faq-question:hover~#cursor-blur,
.bento-item:hover~#cursor-blur,
.product-card:hover~#cursor-blur,
.review-card:hover~#cursor-blur,
.icon-btn:hover~#cursor-blur,
.faq-item:hover~#cursor-blur {
    width: 70px;
    height: 70px;
    background: rgba(0, 196, 255, 0.15);
}

html {
    scroll-behavior: auto;
}

/* =========================================
   UTILITIES
   ========================================= */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient-chrome {
    background: linear-gradient(to right, #ffffff 20%, #00C4FF 50%, #00E5FF 80%);
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    cursor: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 15px var(--primary-glow);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px var(--primary-glow), 0 0 10px white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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


/* =========================================
   ANNOUNCEMENT BAR
   ========================================= */

/* =========================================
   NAVBAR
   ========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
    padding: 20px 40px;
    transition: padding 0.6s ease-out,
                background 0.6s ease-out,
                backdrop-filter 0.6s ease-out,
                -webkit-backdrop-filter 0.6s ease-out,
                box-shadow 0.6s ease-out;
}

/* Desktop floating navbar */
@media (min-width: 769px) {
    header {
        padding: 20px 40px;
    }
}

header .navbar.glass-panel {
    background: rgba(20, 20, 24, 0.45);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.04) inset,
                inset 0 1px 0 rgba(255, 255, 255, 0.06);
    max-width: 1400px;
    margin: 0 auto;
    transition: background 0.6s ease-out,
                backdrop-filter 0.6s ease-out,
                -webkit-backdrop-filter 0.6s ease-out,
                border-color 0.6s ease-out,
                box-shadow 0.6s ease-out,
                border-radius 0.6s ease-out;
}

/* Desktop-only floating navbar */
@media (min-width: 769px) {
    header .navbar.glass-panel {
        border-radius: 50px;
    }
}

header.scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 20px 40px;
    box-shadow: none;
}

header.scrolled .navbar.glass-panel {
    background: rgba(15, 15, 18, 0.55);
    backdrop-filter: blur(28px) saturate(1.5);
    -webkit-backdrop-filter: blur(28px) saturate(1.5);
    border-color: rgba(0, 196, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(0, 196, 255, 0.08) inset,
                inset 0 1px 0 rgba(255, 255, 255, 0.05),
                0 0 20px rgba(0, 196, 255, 0.08);
    transform: translateY(0);
}

.navbar {
    width: 100%;
    height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    transition: var(--transition-fast);
}

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.logo-image {
    height: 40px;
    width: auto;
    transition: var(--transition-fast);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 12px rgba(0, 196, 255, 0.3));
}

.logo:hover .logo-image {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.logo:hover {
    opacity: 0.9;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a i {
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.nav-links a:hover i,
.nav-links a.active i {
    color: var(--primary-gold);
    transform: scale(1.1);
}

.nav-icons {
    display: flex;
    gap: 15px;
}

.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-fast);
    text-decoration: none;
    cursor: pointer;
}

.icon-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--primary-glow);
}

.hamburger-menu {
    display: none !important;
    border: none;
    outline: none;
}

.mobile-menu {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block !important;
    }
    
    .logo-image {
        height: 35px;
    }
}

/* =========================================
   HERO - CLEAN MINIMAL DESIGN
   ========================================= */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 140px;
    padding-bottom: 100px;
    overflow: hidden;
    background: var(--bg-body);
}

.hero #bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 196, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.06) 0%, transparent 50%);
    z-index: 0;
}

/* Keep full height on mobile */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding-top: 120px;
        padding-bottom: 60px;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(0, 196, 255, 0.08);
    border: 1px solid rgba(0, 196, 255, 0.2);
    border-radius: 30px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-family: 'Space Grotesk', sans-serif;
    animation: fadeInUp 0.8s ease-out, pulseGlow 3s ease-in-out infinite 1s;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(0, 196, 255, 0);
        border-color: rgba(0, 196, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 196, 255, 0.3);
        border-color: rgba(0, 196, 255, 0.4);
    }
}

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

.hero h1 {
    font-size: 5.5rem;
    line-height: 1.1;
    margin: 0;
    font-weight: 800;
    letter-spacing: -4px;
    color: #ffffff;
    text-transform: none;
    animation: fadeInUp 1s ease-out 0.2s both, textShimmer 4s ease-in-out infinite 1.5s;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.2rem;
        letter-spacing: -2px;
    }
}

@keyframes textShimmer {
    0%, 100% {
        text-shadow: 0 0 0 rgba(0, 196, 255, 0);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 196, 255, 0.3),
                     0 0 60px rgba(0, 196, 255, 0.2);
    }
}

.hero-highlight {
    color: var(--primary);
    font-weight: 900;
    display: inline-block;
    position: relative;
    animation: highlightPulse 2s ease-in-out infinite 2s;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--primary), var(--primary-gold));
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
    animation: underlineGlow 2s ease-in-out infinite 2s;
}

@keyframes highlightPulse {
    0%, 100% {
        color: var(--primary);
        transform: scale(1);
    }
    50% {
        color: var(--primary-gold);
        transform: scale(1.02);
    }
}

@keyframes underlineGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.6;
        transform: scaleX(1.05);
    }
}

.hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin: 0;
    max-width: 700px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both, textFadeInOut 6s ease-in-out infinite 2s;
    font-weight: 400;
}

@keyframes textFadeInOut {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero p {
        font-size: 1rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 0;
    animation: fadeInUp 1s ease-out 0.6s both;
    justify-content: center;
}

.hero-buttons .btn {
    animation: buttonFloat 3s ease-in-out infinite;
}

.hero-buttons .btn:nth-child(2) {
    animation-delay: 0.5s;
}

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

.hero-buttons .btn {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.hero-buttons .btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 196, 255, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 196, 255, 0.5);
    background: var(--primary-gold);
}

.hero-buttons .btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.hero-video-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 8px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 10, 0.5);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(0, 196, 255, 0.06) inset;
}

.hero-video-inner {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
    overflow: hidden;
    border-radius: 20px;
    transform: translateZ(0);
}

/* Strong zoom from upper-mid crops title / Watch later / Share (YouTube draws them inside the frame) */
#hero-youtube-player {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -53%) scale(1.22);
    transform-origin: 50% 34%;
}

.hero-video-inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
}

.hero-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
    pointer-events: none;
}

.hero-video-ctrl-btn {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    cursor: pointer;
    transition: var(--transition-fast, 0.2s ease);
    font-size: 1rem;
}

.hero-video-ctrl-btn:hover {
    background: rgba(0, 196, 255, 0.25);
    border-color: rgba(0, 196, 255, 0.5);
    color: var(--primary);
}

.hero-video-ctrl-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .hero-video-wrap {
        border-radius: 16px;
    }

    .hero-video-inner {
        border-radius: 16px;
    }

    .hero-video-ctrl-btn {
        width: 42px;
        height: 42px;
    }
}

.hero-content-right {
    display: none;
}

.hero-image-container {
    display: none;
}

/* =========================================
   HERO STATISTICS BAR - MODERN REDESIGN
   ========================================= */
.hero-stats-bar {
    background: transparent;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-gold), var(--primary), transparent);
    opacity: 0.5;
}

.hero-stats-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-gold), var(--primary), transparent);
    opacity: 0.5;
}

.hero-stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    gap: 40px;
}

.hero-stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.hero-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(0, 196, 255, 0.3), transparent);
}

.hero-stat-item:hover {
    transform: translateY(-5px);
}

.hero-stat-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.hero-stat-item:hover .hero-stat-icon {
    opacity: 1;
    transform: scale(1.1);
    color: var(--primary-gold);
}

.hero-stat-value {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 8px;
    line-height: 1;
    transition: all 0.3s ease;
    display: block;
    letter-spacing: -2px;
}

.hero-stat-item:hover .hero-stat-value {
    color: var(--primary-gold);
    transform: scale(1.05);
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: color 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-stat-item:hover .hero-stat-label {
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile Hero Stats */
@media (max-width: 768px) {
    .hero-stats-bar {
        padding: 40px 0;
    }

    .hero-stats-grid {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .hero-stat-item:not(:last-child)::after {
        display: none;
    }

    .hero-stat-item:not(:last-child) {
        border-bottom: 1px solid rgba(0, 196, 255, 0.2);
        padding-bottom: 30px;
        width: 100%;
    }

    .hero-stat-value {
        font-size: 3rem;
    }

    .hero-stat-icon {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .hero-stat-label {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }
}

/* =========================================
   FEATURES SECTION (REDESIGNED)
   ========================================= */
.features-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 196, 255, 0.06) 0%, transparent 60%);
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-gold), var(--primary), transparent);
    opacity: 0.5;
}

.features-section-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.features-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--text-main);
}

.features-section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

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

.feature-card {
    padding: 32px 28px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: rgba(12, 12, 14, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary), var(--primary-gold));
    border-radius: 0 4px 4px 0;
    transition: height 0.4s ease;
}

.feature-card:hover {
    border-color: rgba(0, 196, 255, 0.35);
    background: rgba(18, 18, 22, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 196, 255, 0.15);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0, 196, 255, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.feature-card-icon .material-symbols-outlined {
    font-size: 1.75rem;
    width: auto;
    height: auto;
}

.feature-card:hover .feature-card-icon {
    background: rgba(0, 196, 255, 0.25);
    color: var(--primary-gold);
    box-shadow: 0 0 24px rgba(0, 196, 255, 0.25);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

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

/* Legacy bento (keep for any other use) */
.span-2 {
    grid-column: span 2;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-rows: 250px;
}

.bento-item {
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
}

/* =========================================
   SPLIT BANNER SECTION
   ========================================= */
.split-banner {
    padding: 70px 0 0;
    margin-top: 0;
    background: rgba(5, 5, 5, 0.5);
    position: relative;
    overflow: hidden;
}

.split-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-gold), var(--primary), transparent);
    opacity: 0.5;
}

.split-banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.split-banner-image-wrapper {
    position: relative;
    height: 400px;
}

.split-banner-content {
    z-index: 2;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
}

.split-banner-headline {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.1;
    letter-spacing: -2px;
    font-family: 'Space Grotesk', sans-serif;
}

.split-banner-slogan {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -2px;
    font-family: 'Space Grotesk', sans-serif;
}

.split-banner-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 550px;
}

.split-banner-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.split-banner-buttons .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.split-banner-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 400px;
    width: 50vw;
    min-width: 300px;
    max-width: 700px;
    overflow: hidden;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.banner-img {
    width: 110%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    min-width: 100%;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.3) 0%, transparent 50%, rgba(5, 5, 5, 0.1) 100%);
    pointer-events: none;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

/* Products Page: Hero */
.products-hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.products-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 196, 255, 0.12) 0%, transparent 60%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.95) 0%, var(--bg-body) 100%);
    pointer-events: none;
}

.products-hero .container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
}

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

.products-hero-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(0, 196, 255, 0.15);
    border: 1px solid rgba(0, 196, 255, 0.35);
    border-radius: 30px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.products-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -1px;
    font-family: 'Space Grotesk', sans-serif;
}

.products-hero-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 32px;
}

.products-hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.products-hero-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.products-hero-visual {
    max-width: 320px;
    margin: 0 auto 16px;
}

.products-hero-img {
    width: 100%;
    height: auto;
    opacity: 0.9;
    filter: drop-shadow(0 20px 40px rgba(0, 196, 255, 0.15));
}

@media (max-width: 768px) {
    .products-hero {
        padding: 110px 0 56px;
    }

    .products-hero-title {
        font-size: 2.2rem;
    }

    .products-hero-subtitle {
        font-size: 1rem;
    }

    .products-hero-actions {
        flex-direction: column;
    }

    .products-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .products-hero-visual {
        max-width: 220px;
        margin-bottom: 12px;
    }
}


/* =========================================
   VIDEO SHOWCASE
   ========================================= */
.video-showcase {
    padding: 100px 0;
    background: rgba(5, 5, 5, 0.5);
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: #000;
    transition: var(--transition-smooth);
}

.video-wrapper:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 196, 255, 0.3);
    transform: translateY(-5px);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* =========================================
   HOW IT WORKS (REDESIGNED)
   ========================================= */
.text-primary {
    color: var(--primary);
}

.how-it-works-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: rgba(8, 8, 10, 0.5);
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--text-main);
}

.how-it-works-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.steps-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    padding: 32px 24px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: rgba(12, 12, 14, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-gold));
    border-radius: 4px 4px 0 0;
    transition: width 0.4s ease;
}

.step-item:hover {
    border-color: rgba(0, 196, 255, 0.35);
    background: rgba(18, 18, 22, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 196, 255, 0.15);
}

.step-item:hover::before {
    width: 80%;
}

.step-item-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 196, 255, 0.2);
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.step-item:hover .step-item-badge {
    background: var(--primary);
    color: #050505;
    box-shadow: 0 0 20px rgba(0, 196, 255, 0.5);
}

.step-item-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0, 196, 255, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition-fast);
}

.step-item-icon .material-symbols-outlined {
    font-size: 1.75rem;
    width: auto;
    height: auto;
}

.step-item:hover .step-item-icon {
    background: rgba(0, 196, 255, 0.25);
    color: var(--primary-gold);
    box-shadow: 0 0 24px rgba(0, 196, 255, 0.25);
}

.step-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.step-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

.step-connector {
    width: 24px;
    min-width: 24px;
    align-self: center;
    height: 2px;
    background: linear-gradient(90deg, var(--glass-border), rgba(0, 196, 255, 0.4));
    border-radius: 2px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .steps-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .step-item {
        flex: 1 1 calc(50% - 20px);
        min-width: 0;
        max-width: none;
    }

    .step-connector {
        display: none;
    }
}

@media (max-width: 600px) {
    .steps-row {
        flex-direction: column;
        gap: 20px;
    }

    .step-item {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .step-connector {
        display: block;
        width: 2px;
        min-width: 2px;
        height: 12px;
        background: linear-gradient(180deg, var(--glass-border), rgba(0, 196, 255, 0.4));
    }
}

/* =========================================
   PRODUCTS
   ========================================= */
.products {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.products::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-gold), var(--primary), transparent);
    opacity: 0.5;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-product-card {
    display: block;
    text-decoration: none;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
    background: rgba(12, 12, 12, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.featured-product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.featured-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 196, 255, 0.15), 0 0 0 1px rgba(0, 196, 255, 0.3);
    border-color: rgba(0, 196, 255, 0.4);
}

.featured-product-image {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Responsive: On tablets, show 2 columns */
@media (max-width: 1024px) {
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Responsive: On mobile, show 1 column */
@media (max-width: 768px) {
    .featured-products-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

.product-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
}

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

.product-img-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.product-img {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--primary);
    transition: var(--transition-fast);
}

.product-img-link:hover .product-img {
    border-bottom-color: var(--primary-gold);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #22c55e;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-header {
    margin-bottom: 15px;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.product-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    background: var(--primary-gold);
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.product-price {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.buy-btn {
    padding: 10px 24px;
    background: var(--primary);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    font-family: 'Space Grotesk', sans-serif;
}

.buy-btn:hover {
    background: var(--primary-gold);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
    transform: translateY(-2px);
}


/* =========================================
   PRODUCTS PAGE
   ========================================= */
.products-page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.95));
}

.page-header-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -2px;
    font-family: 'Space Grotesk', sans-serif;
}

.page-header-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.product-filters-container {
    max-width: 1200px;
    margin: 0 auto;
}

.filter-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-align: center;
}

.product-filters {
    padding: 48px 24px;
    background: linear-gradient(180deg, rgba(0, 196, 255, 0.03) 0%, transparent 100%);
    border-bottom: 1px solid rgba(0, 196, 255, 0.08);
}

.filter-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.filter-all-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.filter-games-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 900px;
}

.filter-btn {
    padding: 14px 26px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    cursor: none;
    transition: var(--transition-fast);
    font-family: 'Space Grotesk', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn i {
    font-size: 0.85rem;
    opacity: 0.8;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, rgba(0, 196, 255, 0.25), rgba(0, 229, 255, 0.15));
    border-color: rgba(0, 196, 255, 0.5);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 196, 255, 0.25);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .product-filters {
        padding: 32px 16px;
    }

    .filter-games-wrapper {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 8px;
        gap: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .filter-games-wrapper::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex-shrink: 0;
        padding: 12px 20px;
        font-size: 0.82rem;
    }

    .products-section,
    .products-page {
        padding: 48px 0 60px;
    }

    .products-section-title {
        font-size: 1.9rem;
    }

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

    .product-card-page .product-img-page {
        height: 260px;
    }

    .product-info-page {
        padding: 18px 20px;
    }

    .product-title-page {
        font-size: 1.2rem;
    }

    .product-meta-page {
        flex-wrap: wrap;
    }

    .buy-btn-page {
        width: 100%;
        text-align: center;
    }
}

/* Products Section Layout */
.products-section {
    padding: 80px 0;
    position: relative;
}

.products-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.products-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.5px;
}

.products-section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

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

.products-page {
    padding: 60px 0 100px;
}

.products-page .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.product-card-page {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(12px);
}

.product-card-page:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 196, 255, 0.3);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 196, 255, 0.1);
}

.product-img-page-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

.product-img-page {
    height: 280px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.product-img-page::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    pointer-events: none;
}

.product-image-page {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-img-page-link:hover .product-image-page,
.product-card-page:hover .product-image-page {
    transform: scale(1.08);
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    z-index: 2;
}

.badge-product {
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
}

.badge-product.badge-new {
    background: rgba(0, 196, 255, 0.25);
    border-color: rgba(0, 196, 255, 0.5);
    color: var(--primary-gold);
}

.badge-product.badge-sale {
    background: linear-gradient(135deg, #00E5FF, #00C4FF);
    border-color: transparent;
    color: #000;
    font-weight: 700;
}

.product-info-page {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.product-title-page {
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
}

.product-description-page {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 16px;
    flex-grow: 1;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.stars-rating {
    display: flex;
    gap: 2px;
}

.star {
    color: var(--primary-gold);
    font-size: 0.95rem;
}

.star.filled {
    color: var(--primary-gold);
}

.star.half {
    opacity: 0.5;
}

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

.product-meta-page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    gap: 16px;
}

.product-price-page {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-main {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.price-old {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: line-through;
}

.buy-btn-page {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary), rgba(0, 229, 255, 0.9));
    border-radius: 10px;
    color: #000;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    font-family: 'Space Grotesk', sans-serif;
    white-space: nowrap;
}

.buy-btn-page:hover {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary));
    color: #000;
    box-shadow: 0 4px 24px rgba(0, 229, 255, 0.4);
    transform: translateY(-2px);
}

/* =========================================
   SUPPORT PAGE
   ========================================= */
.support-hero-new {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.support-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 196, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.support-hero-new .container {
    position: relative;
    z-index: 1;
}

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

.support-hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 196, 255, 0.12);
    border: 1px solid rgba(0, 196, 255, 0.35);
    border-radius: 30px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.support-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.support-hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.support-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.support-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support-stat-indicator {
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
    animation: pulse-online 2s ease-in-out infinite;
    margin-bottom: 6px;
}

@keyframes pulse-online {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.support-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
}

.support-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.support-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
}

.support-hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.support-hero-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Support Features Section */
.support-section-new {
    padding: 80px 0 100px;
    background: rgba(5, 5, 5, 0.3);
}

.support-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.support-section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

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

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

.support-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-gold));
    opacity: 0;
    transition: var(--transition-fast);
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 196, 255, 0.15);
    background: rgba(0, 196, 255, 0.04);
}

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

.support-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 196, 255, 0.1);
    border: 1px solid rgba(0, 196, 255, 0.25);
    border-radius: 16px;
}

.support-card-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.support-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

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

.support-cta-wrapper {
    margin-top: 50px;
}

@media (max-width: 768px) {
    .support-hero-new {
        padding: 100px 0 60px;
    }

    .support-hero-title {
        font-size: 2.25rem;
    }

    .support-hero-stats {
        flex-direction: column;
        gap: 20px;
    }

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

    .support-hero-actions {
        flex-direction: column;
    }

    .support-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .support-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   REVIEWS PAGE
   ========================================= */
.reviews-hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.reviews-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 196, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.reviews-hero .container {
    position: relative;
    z-index: 1;
}

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

.reviews-hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 196, 255, 0.12);
    border: 1px solid rgba(0, 196, 255, 0.35);
    border-radius: 30px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.reviews-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.reviews-hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.reviews-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.reviews-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
}

.reviews-stat-stars {
    color: var(--primary-gold);
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-top: 2px;
}

.reviews-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.reviews-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.reviews-hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.reviews-hero-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0 100px;
    background: rgba(5, 5, 5, 0.3);
}

.reviews-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.reviews-section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

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

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

.review-card-new,
.review-card-large {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.review-card-new::before,
.review-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-gold));
    opacity: 0;
    transition: var(--transition-fast);
}

.review-card-new:hover,
.review-card-large:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 196, 255, 0.2);
    background: rgba(0, 196, 255, 0.05);
}

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

.review-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 196, 255, 0.3), rgba(0, 229, 255, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 196, 255, 0.5);
    flex-shrink: 0;
}

.reviewer-avatar i {
    font-size: 18px;
    color: var(--primary);
}

.reviewer-info h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
    font-family: 'Space Grotesk', sans-serif;
}

.reviewer-info .stars {
    color: var(--primary-gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.review-text-large {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.98rem;
    margin-bottom: 18px;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.82rem;
}

.review-date {
    color: var(--text-muted);
}

.review-product {
    color: var(--primary);
    font-weight: 500;
    background: rgba(0, 196, 255, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 196, 255, 0.2);
}

/* More Reviews Compact */
.reviews-more-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.reviews-more-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 32px;
    font-family: 'Space Grotesk', sans-serif;
}

.reviews-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.review-compact {
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: var(--transition-fast);
}

.review-compact:hover {
    border-color: rgba(0, 196, 255, 0.25);
    background: rgba(0, 196, 255, 0.04);
}

.review-compact .stars {
    color: var(--primary-gold);
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.review-compact p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
}

.review-compact span {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .reviews-hero {
        padding: 100px 0 60px;
    }

    .reviews-hero-title {
        font-size: 2.25rem;
    }

    .reviews-hero-stats {
        flex-direction: column;
        gap: 20px;
    }

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

    .reviews-hero-actions {
        flex-direction: column;
    }

    .reviews-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

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

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

/* =========================================
   STATUS PAGE
   ========================================= */
.status-hero {
    padding: 140px 0 60px;
    background: rgba(5, 5, 5, 0.5);
}

/* Status Page - New Layout */
.status-hero-new {
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
}

.status-hero-new .status-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 196, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.status-hero-new .container {
    position: relative;
    z-index: 1;
}

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

.status-hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 255, 0, 0.15);
    border: 1px solid rgba(0, 255, 0, 0.4);
    border-radius: 30px;
    color: #00ff88;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.status-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.status-hero-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.status-hero-new .btn-refresh-status {
    margin: 0 auto;
}

.status-dashboard-new {
    padding: 60px 0;
}

.status-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

@media (max-width: 600px) {
    .status-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Status - Card Grid */
.product-status-new {
    padding: 80px 0 100px;
}

.product-status-header-new {
    text-align: center;
    margin-bottom: 48px;
}

.product-status-header-new h2 {
    font-size: 2.25rem;
    margin-bottom: 8px;
}

.product-status-header-new p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
}

.product-status-header-new .status-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.product-status-header-new .legend-item {
    font-size: 0.85rem;
}

.product-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-status-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
    position: relative;
}

.product-status-card:hover {
    border-color: rgba(0, 196, 255, 0.4);
    background: rgba(0, 196, 255, 0.06);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 196, 255, 0.15);
}

.product-status-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
}

.product-status-card-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0;
}

.product-status-card-body {
    flex: 1;
}

.product-status-card .product-status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.product-status-card .status-text {
    font-size: 0.85rem;
    color: #00ff88;
}

.product-status-meta {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.product-status-card-arrow {
    position: absolute;
    bottom: 16px;
    right: 16px;
    font-size: 0.85rem;
    color: var(--primary);
    opacity: 0;
    transition: var(--transition-fast);
}

.product-status-card:hover .product-status-card-arrow {
    opacity: 1;
}

.badge-spoofer {
    background: rgba(0, 196, 255, 0.2);
    border: 1px solid rgba(0, 196, 255, 0.4);
    color: var(--primary);
}

.badge-cheat {
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

/* Status Support CTA - New */
.status-support-cta-new {
    padding: 80px 0;
}

.status-support-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 48px;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(0, 196, 255, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(12px);
}

.status-support-cta-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.status-support-cta-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 196, 255, 0.2), rgba(0, 229, 255, 0.1));
    border: 1px solid rgba(0, 196, 255, 0.3);
    border-radius: 12px;
}

.status-support-cta-icon i {
    font-size: 1.25rem;
    color: var(--primary);
}

.status-support-cta-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.status-support-cta-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.status-support-cta-new .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .status-hero-new {
        padding: 100px 0 48px;
    }

    .status-hero-title {
        font-size: 2.2rem;
    }

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

    .status-support-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .status-support-cta-content {
        flex-direction: column;
        align-items: center;
    }
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.status-header-left {
    flex: 1;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

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

.back-link i {
    font-size: 0.85rem;
}

.status-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
}

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

.btn-refresh-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(0, 196, 255, 0.1);
    border: 1px solid var(--primary);
    border-radius: 12px;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.btn-refresh-status:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 196, 255, 0.3);
}

.btn-refresh-status i {
    transition: transform 0.3s ease;
}

.btn-refresh-status:hover i {
    transform: rotate(180deg);
}

.status-dashboard {
    padding: 60px 0;
    background: rgba(10, 10, 10, 0.3);
}

.status-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.status-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-gold));
    opacity: 0;
    transition: var(--transition-fast);
}

.status-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 196, 255, 0.2);
    background: rgba(0, 196, 255, 0.05);
}

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

.status-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.status-card-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 196, 255, 0.2), rgba(0, 229, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 196, 255, 0.3);
}

.status-card-icon i {
    font-size: 20px;
    color: var(--primary);
}

.status-card-header h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Space Grotesk', sans-serif;
}

.status-card-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

.status-card-value.status-undetected {
    font-size: 1.8rem;
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.status-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.status-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-gold));
    border-radius: 10px;
    transition: width 1s ease;
    box-shadow: 0 0 10px rgba(0, 196, 255, 0.5);
}

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

.detection-risk {
    margin: 15px 0;
}

.risk-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.risk-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00ff00;
    box-shadow: 0 0 10px #00ff00;
    animation: pulse-online 2s ease-in-out infinite;
}

.product-status-section {
    padding: 80px 0;
    background: rgba(5, 5, 5, 0.3);
}

.product-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.product-status-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
}

.status-legend {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

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

.legend-online {
    background: #00ff00;
    box-shadow: 0 0 10px #00ff00;
}

.legend-updating {
    background: #ffaa00;
    box-shadow: 0 0 10px #ffaa00;
}

.legend-offline {
    background: #ff3333;
    box-shadow: 0 0 10px #ff3333;
}

.product-status-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-status-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px 30px;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.product-status-item:hover {
    transform: translateX(5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 196, 255, 0.15);
    background: rgba(0, 196, 255, 0.05);
}

.product-status-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product-status-info {
    flex: 1;
    min-width: 300px;
}

.product-status-title-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.product-status-title-row h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
}

.product-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-spoofer {
    background: rgba(0, 196, 255, 0.2);
    color: var(--primary);
    border: 1px solid rgba(0, 196, 255, 0.3);
}

.badge-cheat {
    background: rgba(0, 229, 255, 0.2);
    color: var(--primary-gold);
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.product-status-details {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.product-detail-separator {
    color: rgba(255, 255, 255, 0.2);
}

.product-status-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.product-status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.status-online {
    background: #00ff00;
    box-shadow: 0 0 15px #00ff00;
    animation: pulse-online 2s ease-in-out infinite;
}

.status-text {
    font-weight: 600;
    color: #00ff00;
    font-size: 0.95rem;
}

.btn-view-product {
    padding: 10px 20px;
    background: rgba(0, 196, 255, 0.1);
    border: 1px solid var(--primary);
    border-radius: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.btn-view-product:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 196, 255, 0.3);
}

.status-support-cta {
    padding: 60px 0;
    background: rgba(10, 10, 10, 0.5);
    border-top: 1px solid rgba(0, 196, 255, 0.1);
}

.status-support-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.status-support-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

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

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .status-header h1 {
        font-size: 2.5rem;
    }

    .status-cards-grid {
        grid-template-columns: 1fr;
    }

    .product-status-main {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-status-right {
        width: 100%;
        justify-content: space-between;
    }

    .status-support-content {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================
   PRODUCT DETAIL PAGE
   ========================================= */
.product-detail-page {
    padding: 140px 0 100px;
    background: rgba(5, 5, 5, 0.3);
    min-height: 100vh;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 80px;
}

.product-detail-image-section {
    position: sticky;
    top: 140px;
    height: fit-content;
}

.product-image-main {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.product-main-media {
    position: relative;
    width: 100%;
}

.product-main-image {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.product-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.product-video-container .product-youtube-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* YouTube iframe API cannot hide the title strip; cover it so only playback chrome shows */
.youtube-embed-chrome-mask--top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: clamp(44px, 9%, 64px);
    background: #000;
    z-index: 2;
    pointer-events: none;
}

.image-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.image-nav-prev {
    left: 15px;
}

.image-nav-next {
    right: 15px;
}

.image-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.product-image-thumbnails {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    background: rgba(10, 10, 10, 0.6);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail.active {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 196, 255, 0.3);
}

.thumbnail:hover {
    border-color: var(--primary-gold);
    transform: scale(1.05);
}

.product-detail-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-detail-header {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-detail-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -2px;
}

.product-detail-slogan {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-compatibility {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 196, 255, 0.1);
    border: 1px solid rgba(0, 196, 255, 0.2);
    border-radius: 12px;
}

.compatibility-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 0.95rem;
}

.compatibility-item i {
    color: var(--primary-gold);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.product-rating-large {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stars-rating {
    display: flex;
    gap: 4px;
}

.star {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.star.filled {
    color: var(--primary-gold);
}

.rating-text-large {
    color: var(--text-muted);
    font-size: 1rem;
}

.product-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.price-display {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

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

.price-main-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Space Grotesk', sans-serif;
}

.quantity-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.quantity-selector label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 5px;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.quantity-btn:active {
    transform: scale(0.95);
}

#quantity {
    width: 50px;
    text-align: center;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    pointer-events: none;
}

.product-variants-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.variants-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Space Grotesk', sans-serif;
}

.variants-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.variant-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.variant-card:hover {
    border-color: var(--primary);
    background: rgba(0, 196, 255, 0.05);
    transform: translateY(-2px);
}

.variant-card.active {
    border-color: var(--primary);
    background: rgba(0, 196, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 196, 255, 0.2);
}

.variant-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.variant-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Space Grotesk', sans-serif;
}

.variant-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.variant-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Space Grotesk', sans-serif;
    margin-top: 5px;
}

.product-total-section {
    padding: 30px;
    background: rgba(0, 196, 255, 0.1);
    border: 2px solid var(--primary);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.total-display {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

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

.total-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Space Grotesk', sans-serif;
}

.btn-purchase-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.btn-purchase-large i {
    font-size: 1.2rem;
}

.product-description-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Product Tabs: Description & Reviews */
.product-tabs-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-tabs-nav {
    display: flex;
    gap: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
}

.product-tab {
    padding: 0 0 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    cursor: none;
    position: relative;
    transition: var(--transition-fast);
    font-family: 'Space Grotesk', sans-serif;
}

.product-tab:hover {
    color: white;
}

.product-tab.active {
    color: white;
}

.product-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.product-tab-panel {
    display: none;
}

.product-tab-panel.active {
    display: block;
}

.product-description-benefits {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.product-benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.product-benefit-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 196, 255, 0.1);
    border: 1px solid rgba(0, 196, 255, 0.3);
    border-radius: 12px;
}

.product-benefit-icon i {
    font-size: 1.25rem;
    color: var(--primary);
}

.product-benefit-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
    font-family: 'Space Grotesk', sans-serif;
}

.product-benefit-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.product-reviews-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-review-card {
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.product-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.product-review-stars {
    color: var(--primary-gold);
    font-size: 0.95rem;
}

.product-review-author {
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

.product-review-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-reviews-empty {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .product-tabs-nav {
        gap: 24px;
        margin-bottom: 28px;
    }

    .product-tab {
        font-size: 0.9rem;
    }

    .product-benefit-item {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .product-benefit-icon {
        margin: 0 auto;
    }
}

.description-content {
    margin-bottom: 60px;
}

.description-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.description-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 900px;
}

.product-features-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.feature-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.feature-category:hover {
    border-color: rgba(0, 196, 255, 0.3);
    background: rgba(0, 196, 255, 0.05);
    transform: translateY(-2px);
}

.feature-category-large {
    grid-column: 1 / -1;
}

.feature-category-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.feature-category-title i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.feature-list li:hover {
    color: white;
    transform: translateX(5px);
}

.feature-list li i {
    color: var(--primary-gold);
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
}

.product-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-column {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.info-column-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
}

.info-column-title i {
    color: var(--primary);
    font-size: 1.2rem;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

.info-list li i {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.info-list li span {
    flex: 1;
}

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

    .product-detail-image-section {
        position: relative;
        top: 0;
    }

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

    .product-features-detailed {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .product-detail-page {
        padding: 90px 0 40px;
    }

    .product-detail-container {
        padding: 20px 15px 0;
        gap: 30px;
    }

    .product-detail-image-section {
        position: relative;
        top: 0;
        margin-bottom: 0;
        margin-top: 0;
    }

    .product-image-main {
        min-height: auto;
        padding: 0;
        margin-bottom: 15px;
    }

    .product-main-image {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .product-image-thumbnails {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }

    .product-detail-title {
        font-size: 2rem;
        letter-spacing: -1px;
        margin-bottom: 8px;
    }

    .product-detail-slogan {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .product-compatibility {
        padding: 15px;
        gap: 10px;
        margin-bottom: 20px;
    }

    .compatibility-item {
        font-size: 0.85rem;
    }

    .product-rating-large {
        margin-top: 15px;
    }

    .product-price-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 12px;
    }

    .quantity-selector {
        align-items: flex-start;
        width: 100%;
    }

    .quantity-controls {
        width: 100%;
        max-width: 200px;
    }

    .variants-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .variant-card {
        padding: 15px;
    }

    .variant-name {
        font-size: 1rem;
    }

    .variant-desc {
        font-size: 0.85rem;
    }

    .variant-price {
        font-size: 1.2rem;
    }

    .product-total-section {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 20px;
    }

    .btn-purchase-large {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
    }

    .price-main-large {
        font-size: 1.8rem;
    }

    .total-price {
        font-size: 2rem;
    }

    .product-description-section {
        margin-top: 40px;
        padding-top: 40px;
    }

    .description-content {
        margin-bottom: 40px;
    }

    .description-content h2 {
        font-size: 2rem;
    }

    .description-text {
        font-size: 1rem;
    }

    .product-features-detailed {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-category {
        padding: 20px;
    }

    .feature-category-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .feature-list li {
        font-size: 0.9rem;
    }

    .product-info-grid {
        gap: 20px;
    }

    .info-column {
        padding: 20px;
    }

    .image-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .image-nav-prev {
        left: 10px;
    }

    .image-nav-next {
        right: 10px;
    }

    .product-image-thumbnails {
        padding: 0 15px;
    }
}

/* =========================================
   SUPPORT CTA SECTION
   ========================================= */
.support-cta {
    padding: 100px 0;
    background: rgba(10, 10, 10, 0.5);
    border-top: 1px solid rgba(0, 196, 255, 0.1);
}

.support-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.support-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.support-cta-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Products Page: Support CTA Layout */
.support-cta-products {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 196, 255, 0.04) 50%, transparent 100%);
}

.support-cta-products-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 48px 40px;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(0, 196, 255, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(12px);
}

.support-cta-products-content {
    flex: 1;
}

.support-cta-products-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 196, 255, 0.2), rgba(0, 229, 255, 0.1));
    border: 1px solid rgba(0, 196, 255, 0.3);
    border-radius: 12px;
    margin-bottom: 20px;
}

.support-cta-products-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.support-cta-products-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
}

.support-cta-products-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.support-cta-products-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.support-cta-products-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .split-banner-products .split-banner-container {
        grid-template-columns: 1fr;
        padding: 24px 16px 40px;
    }

    .split-banner-products .split-banner-content {
        min-height: auto;
    }

    .split-banner-products .split-banner-headline {
        font-size: 2rem;
    }

    .split-banner-products .split-banner-slogan {
        font-size: 1.6rem;
    }

    .split-banner-products .split-banner-image {
        height: 220px;
        order: -1;
    }

    .support-cta-products-inner {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 28px;
    }

    .support-cta-products-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .support-cta-products-content h2 {
        font-size: 1.4rem;
    }

    .support-cta-products-actions {
        flex-direction: column;
        width: 100%;
    }

    .support-cta-products-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   TESTIMONIALS SECTION (REDESIGNED)
   ========================================= */
.testimonials-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: rgba(5, 5, 5, 0.5);
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-gold), var(--primary), transparent);
    opacity: 0.5;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--text-main);
}

.testimonials-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

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

.testimonial-card {
    padding: 28px 26px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: rgba(12, 12, 14, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary), var(--primary-gold));
    border-radius: 0 4px 4px 0;
    transition: height 0.4s ease;
}

.testimonial-card:hover {
    border-color: rgba(0, 196, 255, 0.35);
    background: rgba(18, 18, 22, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 196, 255, 0.15);
}

.testimonial-card:hover::before {
    height: 100%;
}

.testimonial-stars {
    color: var(--primary);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 20px 0;
    font-style: normal;
}

.testimonial-meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.testimonial-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.testimonial-product {
    font-size: 0.75rem;
    color: var(--primary);
    background: rgba(0, 196, 255, 0.12);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }
}

/* Legacy reviews (for reviews page) */
.marquee-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    overflow: visible;
}

.marquee-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.reviews {
    padding: 100px 0;
    background-color: #000;
}

.review-card.mini {
    padding: 25px;
    border-radius: 16px;
    background: #0e0e0e;
    border: 1px solid #1f1f1f;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-card.mini.alt-bg {
    background: rgba(20, 20, 20, 0.4);
}

.review-card.mini:hover {
    border-color: var(--primary);
}

.stars {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-style: italic;
}

.reviewer {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: white;
}

/* =========================================
   SUPPORT & FAQ (REDESIGNED)
   ========================================= */
.support-section {
    padding: 100px 0;
}

.support-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.support-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--text-main);
}

.support-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.support-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-wrapper {
    width: 100%;
}

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

/* FAQ Item (Card Style) */
.faq-item {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    transition: var(--transition-fast);
    overflow: hidden;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 196, 255, 0.1);
    background: #0a0a0a;
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: none;
}

.faq-question-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Red Icon Box */
.faq-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.faq-question {
    font-weight: 600;
    color: white;
    font-size: 1rem;
}

.toggle-icon {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
    /* Turns + into x */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding-left: 55px;
    /* Align with text */
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 15px;
    opacity: 1;
}

/* Need Help CTA (below FAQ) */
.need-help-card {
    border: 1px solid var(--glass-border);
    background: rgba(12, 12, 14, 0.8);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.need-help-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(0, 196, 255, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.need-help-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
}

.need-help-text {
    flex: 1;
    min-width: 0;
}

.need-help-inner h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--text-main);
}

.need-help-inner p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.need-help-inner .btn-support {
    flex-shrink: 0;
}

.help-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* Support Buttons (Darker, Pill style) - Matches Image */
.btn-support {
    background: rgba(255, 255, 255, 0.08);
    /* Darker */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50px;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-fast);
}

.btn-support:hover {
    background: #1a1a1a;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* =========================================
   FOOTER (REDESIGNED)
   ========================================= */
.footer {
    padding: 0;
    background: rgba(8, 8, 10, 0.98);
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--glass-border);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-gold), var(--primary), transparent);
    opacity: 0.6;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1fr;
    gap: 48px 32px;
    padding: 64px 0 48px;
}

.footer-column h4 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(0, 196, 255, 0.4));
}

.footer-brand h3 {
    color: var(--primary);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition-fast);
    text-decoration: none;
}

.social-link:hover {
    background: rgba(0, 196, 255, 0.12);
    border-color: rgba(0, 196, 255, 0.4);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 196, 255, 0.2);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.25);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-content p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer .badge {
    padding: 6px 14px;
    background: rgba(0, 196, 255, 0.08);
    border: 1px solid rgba(0, 196, 255, 0.2);
    border-radius: 24px;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition-fast);
}

.footer .badge:hover {
    background: rgba(0, 196, 255, 0.15);
    border-color: rgba(0, 196, 255, 0.35);
}

/* =========================================
   RESPONSIVENESS
   ========================================= */

/* Tablet */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }

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

/* Mobile */
@media (max-width: 768px) {
    /* Hide custom cursor on mobile and restore default cursor */
    * {
        cursor: auto !important;
    }
    
    #cursor,
    #cursor-blur {
        display: none !important;
    }
    
    .container {
        padding: 0 15px;
    }

    .announcement-bar {
        position: relative;
        top: 0;
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 0;
        margin-top: 0;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 196, 255, 0.2);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    }

    header .navbar.glass-panel {
        border-radius: 0;
        max-width: 100%;
        margin: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        box-shadow: none;
    }

    /* Keep navbar consistent on scroll – no shrink/change on mobile */
    header.scrolled {
        background: rgba(5, 5, 5, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-bottom: 1px solid rgba(0, 196, 255, 0.2) !important;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5) !important;
        padding: 0 !important;
    }

    header.scrolled .navbar.glass-panel {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
    }

    .navbar {
        padding: 0 20px;
        position: relative;
        width: 100%;
        max-width: 100%;
        height: 70px;
    }

    .hero {
        padding-top: 70px;
        margin-top: 0;
        min-height: 100vh;
    }
    
    .hero::before {
        top: 0;
        height: 100%;
    }
    
    .hero-content {
        padding-top: 60px;
    }

    .hero h1 {
        font-size: 3rem;
        letter-spacing: -1px;
        margin-bottom: 20px;
        margin-top: 0;
        text-align: center;
    }

    .hero-tagline {
        font-size: 0.75rem;
        padding: 6px 16px;
        margin-bottom: 20px;
        text-align: center;
        display: inline-block;
    }

    .hero p {
        font-size: 0.95rem;
        text-align: center;
        padding: 0 20px;
        margin-bottom: 25px;
        line-height: 1.7;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        padding: 0 20px;
    }

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

    /* Section Headers */
    .section-header {
        margin-bottom: 40px !important;
        padding: 0 10px;
    }

    .section-tag {
        font-size: 0.7rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 10px !important;
    }

    .section-header h2 {
        font-size: 2rem !important;
        margin-bottom: 15px !important;
        line-height: 1.2;
    }

    .section-header p {
        font-size: 0.9rem !important;
        line-height: 1.6;
        padding: 0 10px;
    }

    /* Features Section */
    .features-section {
        padding: 60px 0 !important;
    }

    .features-section-header {
        margin-bottom: 40px !important;
    }

    .features-section-header h2 {
        font-size: 2rem !important;
    }

    .features-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px !important;
    }

    .feature-card {
        padding: 24px 20px !important;
    }

    .feature-card h3 {
        font-size: 1.1rem !important;
    }

    .feature-card p {
        font-size: 0.85rem !important;
    }

    /* How It Works Section */
    .how-it-works-section {
        padding: 60px 0 !important;
    }

    .how-it-works-header h2 {
        font-size: 2rem !important;
    }

    .steps-row {
        flex-direction: column;
        align-items: center;
        gap: 20px !important;
    }

    .step-item {
        max-width: 100%;
        min-width: 0;
        width: 100%;
        padding: 28px 24px !important;
    }

    .step-connector {
        width: 2px;
        min-width: 2px;
        height: 16px;
        background: linear-gradient(180deg, var(--glass-border), rgba(0, 196, 255, 0.4));
    }

    .step-item h3 {
        font-size: 1.1rem !important;
    }

    .step-item p {
        font-size: 0.85rem !important;
    }

    /* Products Section */
    .products {
        padding: 60px 0 !important;
    }

    .products-grid {
        gap: 20px !important;
    }

    .product-card {
        padding: 20px !important;
    }

    .product-title {
        font-size: 1.1rem !important;
    }

    .product-description {
        font-size: 0.85rem !important;
    }

    /* Video Section */
    .video-showcase {
        padding: 60px 0 !important;
    }

    .video-showcase .section-header h2 {
        font-size: 2rem !important;
    }

    .video-container {
        padding: 0 10px;
    }

    .video-wrapper {
        height: 250px !important;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 60px 0 !important;
    }

    .testimonials-header h2 {
        font-size: 2rem !important;
    }

    .testimonial-card {
        padding: 24px 20px !important;
    }

    .testimonial-quote {
        font-size: 0.9rem !important;
    }

    /* Legacy reviews */
    .reviews {
        padding: 60px 0 !important;
    }

    .reviews .section-header h2 {
        font-size: 2rem !important;
    }

    .review-card.mini {
        padding: 20px !important;
        min-width: 280px !important;
    }

    .review-text {
        font-size: 0.85rem !important;
    }

    .reviewer {
        font-size: 0.8rem !important;
    }

    /* Support & FAQ Section */
    .support-section {
        padding: 60px 0 !important;
    }

    .support-container {
        max-width: 100%;
        padding: 0 16px;
    }

    .faq-item {
        padding: 18px !important;
    }

    .faq-question {
        font-size: 0.95rem !important;
    }

    .faq-answer {
        font-size: 0.85rem !important;
    }

    .need-help-card {
        padding: 24px 20px;
    }

    .need-help-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .need-help-inner .btn-support {
        justify-content: center;
    }

    /* Split Banner */
    .split-banner {
        padding: 60px 0 0 !important;
    }

    .split-banner-headline {
        font-size: 2rem !important;
    }

    .split-banner-slogan {
        font-size: 1.5rem !important;
    }

    .split-banner-text {
        font-size: 0.9rem !important;
    }

    /* Footer */
    .footer {
        padding: 0 !important;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
        padding: 48px 0 40px !important;
    }

    .footer-column h4 {
        font-size: 0.8rem !important;
        margin-bottom: 14px !important;
    }

    .footer-links li {
        margin-bottom: 8px !important;
    }

    .footer-links a {
        font-size: 0.88rem !important;
    }

    .nav-links {
        display: none;
    }

    .hamburger-menu {
        display: flex !important;
        flex-direction: column;
        gap: 4px;
        padding: 8px;
        justify-content: center;
        align-items: center;
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        outline: none !important;
        box-shadow: none !important;
        position: relative;
        z-index: 10001;
        cursor: pointer;
        pointer-events: auto;
        -webkit-tap-highlight-color: transparent;
    }

    .hamburger-menu:hover {
        background: var(--primary) !important;
        border-color: var(--primary) !important;
    }

    .hamburger-menu.active {
        background: var(--primary) !important;
        border-color: var(--primary) !important;
    }

    .hamburger-line {
        width: 20px;
        height: 2px;
        background: white;
        border-radius: 2px;
        transition: var(--transition-fast);
        display: block;
        position: relative;
    }

    .hamburger-menu.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger-menu.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .mobile-menu {
        display: block !important;
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: calc(100vh - 70px) !important;
        background: rgba(5, 5, 5, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        z-index: 99999 !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease !important;
        overflow-y: auto !important;
        pointer-events: none !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-menu.active {
        pointer-events: auto !important;
        transform: translateX(0) !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-menu-content {
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .mobile-menu-link {
        padding: 18px 20px;
        color: var(--text-muted);
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: var(--transition-fast);
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .mobile-menu-link i {
        font-size: 1.1rem;
        width: 20px;
        text-align: center;
        transition: var(--transition-fast);
    }
    
    .mobile-menu-link:hover i,
    .mobile-menu-link.active i {
        color: var(--primary-gold);
        transform: scale(1.1);
    }

    .mobile-menu-link:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-menu-link:hover,
    .mobile-menu-link.active {
        color: white;
        background: rgba(0, 196, 255, 0.1);
        padding-left: 30px;
    }

    .mobile-menu-discord {
        margin-top: 20px;
        background: rgba(0, 196, 255, 0.1);
        border-radius: 12px;
        border: 1px solid rgba(0, 196, 255, 0.3);
        justify-content: center;
    }

    .mobile-menu-discord:hover {
        background: var(--primary);
        color: white;
    }

    .mobile-menu-discord i {
        font-size: 1.2rem;
    }

    .features-cards {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding: 0 16px !important;
    }

    .feature-card {
        padding: 22px 20px !important;
    }

    .bento-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto !important;
        margin: 0 20px !important;
        gap: 15px !important;
        padding: 0 !important;
    }

    .bento-item {
        margin: 0 !important;
        width: 100% !important;
    }

    .span-2,
    .row-span-2 {
        grid-column: auto;
        grid-row: auto;
    }

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

    .featured-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


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

    .steps-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px !important;
    }

    .step-item {
        flex: 1 1 calc(50% - 20px);
        min-width: 0;
        max-width: none;
    }

    .step-connector {
        display: none;
    }

    .support-container {
        gap: 32px;
    }

    .steps-row {
        flex-direction: column;
        gap: 20px !important;
    }

    .step-item {
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
    }

    .step-connector {
        width: 2px;
        min-width: 2px;
        height: 12px;
        background: linear-gradient(180deg, var(--glass-border), rgba(0, 196, 255, 0.4));
    }

    .split-banner-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-banner {
        padding: 70px 0 0 !important;
        margin-top: 0 !important;
        overflow: hidden;
    }

    .split-banner-container {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .split-banner-image {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .split-banner-container {
        padding: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .split-banner-headline {
        font-size: 2rem !important;
        margin-bottom: 8px !important;
        line-height: 1.2;
        padding: 0 20px;
    }

    .split-banner-slogan {
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
        line-height: 1.2;
        padding: 0 20px;
    }

    .split-banner-text {
        font-size: 0.9rem !important;
        padding: 0 20px !important;
        margin-bottom: 20px !important;
        line-height: 1.6;
    }

    .split-banner-image {
        height: 250px !important;
        order: -1;
        width: 100vw !important;
        position: relative !important;
        clip-path: none !important;
        -webkit-clip-path: none !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        margin: 0 !important;
    }

    .banner-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
    }

    .split-banner-content {
        height: auto !important;
        padding: 10px 0 20px !important;
        padding-right: 0 !important;
    }

    .split-banner-headline {
        margin-top: -10px !important;
    }

    .split-banner-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px !important;
        width: 100%;
        align-items: center;
    }

    .split-banner-buttons .btn {
        width: auto !important;
        max-width: 220px !important;
        min-width: 180px !important;
        justify-content: center;
    }

    /* Reviews Page Section */
    .reviews-page-section {
        padding: 70px 0 60px !important;
    }

    /* Reviews Page Discord Button */
    .reviews-page-section .btn-discord-large,
    .reviews-page-section .btn-primary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 16px 24px !important;
        font-size: 1rem !important;
        justify-content: center !important;
        margin: 0 auto;
    }

    /* Support CTA Section */
    .support-cta {
        padding: 60px 20px !important;
    }

    .support-cta-content {
        padding: 0 10px !important;
    }

    .support-cta-content h2 {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
        line-height: 1.3;
        text-align: center;
    }

    .support-cta-content p {
        font-size: 0.9rem !important;
        margin-bottom: 30px !important;
        text-align: center;
        line-height: 1.6;
    }

    .support-cta-wrapper {
        display: flex;
        justify-content: center;
    }

    .support-cta-wrapper .btn {
        width: 100%;
        max-width: 280px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 0 32px !important;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        padding: 20px 0;
    }

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

    .footer-bottom-content p {
        font-size: 0.78rem;
    }

    .footer-badges {
        justify-content: center;
    }
}

/* =========================================
   CART SYSTEM STYLES
   ========================================= */

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: var(--bg-body);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
    pointer-events: none;
}

.cart-modal.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-modal.active .cart-overlay {
    opacity: 1;
}

.cart-content-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: var(--bg-surface);
    border-left: 1px solid var(--glass-border);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.cart-modal.active .cart-content-wrapper {
    transform: translateX(0);
}

.cart-header {
    padding: 25px 30px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-surface);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.cart-modal.active .cart-header {
    opacity: 1;
    transform: translateY(0);
}

.cart-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
}

.cart-close-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
}

.cart-content {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.cart-modal.active .cart-content {
    opacity: 1;
    transform: translateY(0);
}

.cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    text-align: center;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.cart-modal.active .cart-empty {
    opacity: 1;
    transform: scale(1);
}

.cart-empty .material-symbols-outlined {
    font-size: 80px;
    color: var(--text-muted);
    margin-bottom: 20px;
    opacity: 0.5;
}

.cart-empty p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.cart-items {
    padding: 20px 30px;
    flex: 1;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cartItemSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.cart-item:nth-child(1) { animation-delay: 0.05s; }
.cart-item:nth-child(2) { animation-delay: 0.1s; }
.cart-item:nth-child(3) { animation-delay: 0.15s; }
.cart-item:nth-child(4) { animation-delay: 0.2s; }
.cart-item:nth-child(5) { animation-delay: 0.25s; }
.cart-item:nth-child(n+6) { animation-delay: 0.3s; }

@keyframes cartItemSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-item:hover {
    border-color: var(--primary);
    background: rgba(0, 196, 255, 0.05);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart-item-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}

.cart-item-variant {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.cart-quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 5px;
}

.cart-quantity-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 18px;
    font-weight: 600;
}

.cart-quantity-btn:hover {
    background: var(--primary);
    color: var(--bg-body);
}

.cart-quantity {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--text-main);
}

.cart-remove-btn {
    background: transparent;
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff4444;
    padding: 6px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-remove-btn:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #ff4444;
}

.cart-item-total {
    grid-column: 1 / -1;
    text-align: right;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    padding-top: 10px;
    border-top: 1px solid var(--glass-border);
}

.cart-footer {
    padding: 25px 30px;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-surface);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.cart-modal.active .cart-footer {
    opacity: 1;
    transform: translateY(0);
}

.cart-coupon-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.coupon-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.coupon-input {
    flex: 1;
    padding: 12px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition-fast);
    cursor: text;
}

.coupon-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 196, 255, 0.05);
}

.coupon-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-coupon {
    padding: 12px 24px;
    font-size: 0.95rem;
    white-space: nowrap;
}

.coupon-message {
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 8px;
    transition: var(--transition-fast);
    min-height: 20px;
}

.coupon-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.coupon-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.cart-total-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.cart-subtotal,
.cart-discount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--glass-border);
}

.cart-total-label {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.cart-total-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
}

.cart-discount-amount {
    font-size: 1rem;
    font-weight: 600;
    color: #22c55e;
    font-family: 'Space Grotesk', sans-serif;
}

/* Checkout Form Modal */
.checkout-form-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.checkout-form-modal.active {
    opacity: 1;
    pointer-events: all;
}

.checkout-form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.checkout-form-content {
    position: relative;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    padding: 40px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.checkout-form-modal.active .checkout-form-content {
    transform: scale(1);
}

.checkout-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.checkout-form-header h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0;
}

.checkout-form-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.checkout-form-close:hover {
    color: var(--text-main);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-main);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition-fast);
    cursor: text !important;
}

/* Override global cursor: none for checkout form inputs and buttons */
.checkout-form-modal * {
    cursor: default !important;
}

.checkout-form-modal input,
.checkout-form-modal textarea,
.checkout-form-modal select {
    cursor: text !important;
}

.checkout-form-modal button,
.checkout-form-modal .btn,
.checkout-form-modal .checkout-form-close {
    cursor: pointer !important;
}

.checkout-form-modal label {
    cursor: default !important;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 196, 255, 0.05);
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.checkout-instructions {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.12) 0%, rgba(88, 101, 242, 0.05) 100%);
    border: 1px solid rgba(88, 101, 242, 0.25);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 20px;
}
.checkout-instructions i {
    color: #5865F2;
    margin-right: 8px;
}
.checkout-instructions p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0 0 10px 0;
}
.checkout-instructions a {
    font-size: 0.85rem;
    color: #5865F2;
    text-decoration: none;
    font-weight: 600;
}
.checkout-instructions a:hover {
    text-decoration: underline;
}
.checkout-form-modal .checkout-instructions a {
    cursor: pointer !important;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.form-actions .btn {
    flex: 1;
    justify-content: center;
}

/* Payment Method Selection */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.payment-method-option {
    display: block;
    cursor: pointer !important;
}

.payment-method-option input[type="radio"] {
    display: none;
}

.payment-method-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer !important;
}

.payment-method-card i {
    font-size: 1.8rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.payment-method-card span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    flex: 1;
}

.payment-method-option input[type="radio"]:checked + .payment-method-card {
    border-color: var(--primary);
    background: rgba(0, 196, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(0, 196, 255, 0.1);
}

.payment-method-option input[type="radio"]:checked + .payment-method-card i {
    color: var(--primary);
}

.payment-method-card:hover {
    border-color: var(--primary);
    background: rgba(0, 196, 255, 0.05);
}

/* Payment Instructions Modal */
.payment-instructions-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Override global cursor: none for payment instructions modal */
.payment-instructions-modal * {
    cursor: default !important;
}

.payment-instructions-modal button,
.payment-instructions-modal .btn,
.payment-instructions-modal .copy-btn,
.payment-instructions-modal .payment-instructions-close,
.payment-instructions-modal a {
    cursor: pointer !important;
}

.payment-instructions-modal code,
.payment-instructions-modal strong,
.payment-instructions-modal p,
.payment-instructions-modal h2,
.payment-instructions-modal h3,
.payment-instructions-modal li,
.payment-instructions-modal ol,
.payment-instructions-modal .payment-icon-large,
.payment-instructions-modal .payment-icon-large i {
    cursor: default !important;
}

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

.payment-instructions-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    cursor: pointer !important;
}

.payment-instructions-content {
    position: relative;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    z-index: 1;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.payment-instructions-modal.active .payment-instructions-content {
    transform: scale(1);
}

.payment-instructions-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.payment-icon-large {
    font-size: 4rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.payment-instructions-header h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0;
}

.payment-instructions-close {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer !important;
    padding: 5px;
    transition: color 0.3s ease;
}

.payment-instructions-close:hover {
    color: var(--text-main);
}

.payment-instructions-body {
    margin-bottom: 30px;
}

.order-id-display {
    background: rgba(0, 196, 255, 0.1);
    border: 1px solid rgba(0, 196, 255, 0.3);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    margin-bottom: 25px;
}

.order-id-display p {
    margin: 0;
    color: var(--text-main);
    font-size: 1rem;
}

.order-id-display strong {
    color: var(--primary);
    font-family: 'Space Grotesk', monospace;
    font-size: 1.1rem;
}

.payment-instruction-step {
    margin-bottom: 25px;
}

.payment-instruction-step h3 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-instruction-step h3 i {
    color: var(--primary);
}

.payment-info-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 10px;
}

.payment-info-box strong {
    color: var(--text-main);
    font-size: 1rem;
    flex: 1;
}

.payment-info-box code.crypto-address {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.9rem;
    color: var(--text-main);
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 12px;
    border-radius: 6px;
    word-break: break-all;
    flex: 1;
}

.payment-info-box small {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: block;
    margin-top: 5px;
}

.copy-btn {
    background: var(--primary);
    color: var(--bg-body);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.copy-btn i {
    cursor: pointer !important;
}

.copy-btn:hover {
    background: #ffa500;
    transform: translateY(-2px);
}

.payment-warning-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 15px;
}

.payment-warning-box p {
    margin: 8px 0;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
}

.payment-warning-box p:first-child {
    margin-top: 0;
}

.payment-warning-box p:last-child {
    margin-bottom: 0;
}

.payment-warning-box strong {
    color: #ef4444;
}

.payment-steps-list {
    margin: 15px 0;
    padding-left: 25px;
    color: var(--text-main);
}

.payment-steps-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.payment-steps-list li:last-child {
    margin-bottom: 0;
}

.payment-instructions-footer {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-instructions-footer .btn {
    flex: 1;
    min-width: 150px;
    justify-content: center;
    cursor: pointer !important;
    white-space: nowrap;
}

.payment-instructions-footer .btn i {
    cursor: pointer !important;
}

/* PayPal instructions modal */
.paypal-instructions-modal .paypal-instructions-content {
    max-width: 500px;
    padding: 40px 32px;
    text-align: center;
}

.paypal-instructions-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.paypal-logo-box {
    width: 80px;
    height: 80px;
    background: #003087;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paypal-logo-box i {
    font-size: 2.5rem;
    color: #fff;
}

.paypal-instructions-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
}

.paypal-instructions-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.paypal-total-box {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.paypal-total-box strong {
    color: #fff;
}

.paypal-join-btn {
    background: #e60023 !important;
    border-color: #e60023 !important;
    color: #fff !important;
    padding: 14px 32px;
    font-weight: 600;
}

.paypal-join-btn:hover {
    background: #cc0020 !important;
    border-color: #cc0020 !important;
}

/* =========================================
   PROMO POPUP
   ========================================= */
.promo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100003;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Override global cursor: none for promo popup */
.promo-popup * {
    cursor: default !important;
}

.promo-popup button,
.promo-popup input,
.promo-popup .promo-dismiss {
    cursor: pointer !important;
}

.promo-popup input {
    cursor: text !important;
}

.promo-popup.active {
    opacity: 1;
    visibility: visible;
}

.promo-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer !important;
}

.promo-popup-content {
    position: relative;
    max-width: 600px;
    width: 90%;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.promo-popup-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex: 1;
    min-height: 0;
}

.promo-popup.active .promo-popup-content {
    transform: scale(1) translateY(0);
}

.promo-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer !important;
    z-index: 10;
    transition: all 0.3s ease;
    color: #ffffff;
}

.promo-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.promo-popup-close .material-symbols-outlined {
    font-size: 18px;
}

.promo-popup-banner {
    width: 200px;
    min-width: 200px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: #0a0a0a;
    align-self: stretch;
    flex-shrink: 0;
}

.promo-banner-image {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    align-self: stretch;
}

.promo-popup-body {
    padding: 25px 30px 25px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-popup-headline {
    margin: 0 0 10px 0;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.1;
}

.promo-text-line {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.promo-text-exclusive {
    display: block;
    color: #00C4FF;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 4px 0;
    text-shadow: 0 0 15px rgba(0, 196, 255, 0.5);
}

.promo-popup-subtext {
    color: #ffffff;
    font-size: 0.85rem;
    margin: 0 0 20px 0;
    line-height: 1.4;
    opacity: 0.9;
}

.promo-popup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.promo-email-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    cursor: text !important;
}

.promo-email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.promo-email-input:focus {
    outline: none;
    border-color: #00C4FF;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 196, 255, 0.1);
}

.promo-unlock-btn {
    width: 100%;
    padding: 12px 20px;
    background: #00C4FF;
    border: none;
    border-radius: 8px;
    color: #000000;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer !important;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.promo-unlock-btn:hover {
    background: #00E5FF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 196, 255, 0.4);
}

.promo-unlock-btn:active {
    transform: translateY(0);
}

.promo-unlock-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed !important;
    transform: none;
}

.promo-dismiss {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    cursor: pointer !important;
    padding: 5px;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.promo-dismiss:hover {
    color: #ffffff;
}

/* Discount Code Success Screen */
.discount-code-success {
    text-align: center;
    padding: 20px 0;
}

.discount-success-icon {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 20px;
    animation: successIconPop 0.5s ease-out;
}

@keyframes successIconPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.discount-code-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.discount-code-display {
    background: rgba(0, 196, 255, 0.1);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.discount-code-text {
    font-family: 'Space Grotesk', monospace;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 196, 255, 0.5);
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 8px;
}

.discount-copy-btn {
    background: var(--primary);
    color: #000000;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.discount-copy-btn:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 196, 255, 0.4);
}

.discount-code-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Discount Reopen Button */
.discount-reopen-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #1a1a1a;
    border: none;
    border-top: 2px solid rgba(0, 196, 255, 0.3);
    border-right: 2px solid rgba(0, 196, 255, 0.3);
    border-top-right-radius: 12px;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer !important;
    z-index: 100002;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
}

.discount-reopen-btn:hover {
    background: rgba(0, 196, 255, 0.15);
    border-top-color: var(--primary);
    border-right-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 -6px 25px rgba(0, 196, 255, 0.4);
}

.discount-reopen-btn:active {
    transform: translateY(0);
}

/* Mobile Discount Button */
@media (max-width: 768px) {
    .discount-reopen-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
        border-top-right-radius: 10px;
    }

    .discount-code-text {
        font-size: 1.5rem;
    }
}

/* Mobile Promo Popup */
@media (max-width: 768px) {
    .promo-popup-content {
        max-width: 95%;
        width: 95%;
        display: flex !important;
        flex-direction: column !important;
    }

    .promo-popup-wrapper {
        flex-direction: row !important;
        display: flex !important;
        align-items: stretch !important;
        flex: 1 !important;
        min-height: 0 !important;
    }

    .promo-popup-banner {
        width: 150px !important;
        min-width: 150px !important;
        max-width: 150px !important;
        height: auto !important;
        align-self: stretch !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: stretch !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .promo-banner-image {
        width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        display: block !important;
        align-self: stretch !important;
    }

    .promo-popup-body {
        padding: 20px 15px 20px 15px !important;
        flex: 1 !important;
        min-width: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-self: stretch !important;
    }

    .promo-text-line {
        font-size: 0.9rem;
    }

    .promo-text-exclusive {
        font-size: 1.6rem;
    }

    .promo-popup-subtext {
        font-size: 0.8rem;
        margin-bottom: 18px;
    }
}

/* =========================================
   CHATBOT WIDGET STYLES
   ========================================= */

/* Chatbot Button */
#chatbot-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00C4FF 0%, #00E5FF 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 196, 255, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    overflow: hidden;
}

#chatbot-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 196, 255, 0.6);
}

#chatbot-button.active {
    background: rgba(0, 196, 255, 0.2);
    transform: scale(0.9);
}

#chatbot-button img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* Chatbot Widget */
#chatbot-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    height: 600px;
    max-height: calc(100vh - 140px);
    background: #1a1a1a;
    border: 1px solid rgba(0, 196, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

#chatbot-widget.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Chatbot Header */
#chatbot-header {
    background: linear-gradient(135deg, #00C4FF 0%, #00E5FF 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.chatbot-header-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.chatbot-header-text {
    display: flex;
    flex-direction: column;
}

.chatbot-header-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

.chatbot-header-subtitle {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
    line-height: 1.2;
}

#chatbot-close {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #000;
}

#chatbot-close:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: rotate(90deg);
}

#chatbot-close i {
    font-size: 14px;
}

/* Chatbot Messages */
#chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #1a1a1a;
}

#chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

#chatbot-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

#chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(0, 196, 255, 0.3);
    border-radius: 3px;
}

#chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 196, 255, 0.5);
}

.chatbot-message {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    animation: fadeInMessage 0.3s ease;
}

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

.chatbot-message.user {
    flex-direction: row-reverse;
}

.chatbot-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(0, 196, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chatbot-avatar img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.chatbot-message-content {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

.chatbot-message.user .chatbot-message-content {
    background: linear-gradient(135deg, #00C4FF 0%, #00E5FF 100%);
    color: #000;
    border-bottom-right-radius: 4px;
}

.chatbot-message.bot .chatbot-message-content {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(0, 196, 255, 0.2);
}

/* Typing Indicator */
.chatbot-message.typing .chatbot-message-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
}

.typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 196, 255, 0.6);
    animation: typingDot 1.4s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    30% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

/* Chatbot Input */
#chatbot-input-container {
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(0, 196, 255, 0.2);
    display: flex;
    gap: 10px;
    align-items: center;
}

#chatbot-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 196, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
}

#chatbot-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

#chatbot-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

#chatbot-send {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #00C4FF 0%, #00E5FF 100%);
    border: none;
    border-radius: 8px;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

#chatbot-send:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 196, 255, 0.4);
}

#chatbot-send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#chatbot-send i {
    font-size: 16px;
}

/* Mobile Chatbot */
@media (max-width: 768px) {
    #chatbot-button {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    #chatbot-button img {
        width: 30px;
        height: 30px;
    }

    #chatbot-widget {
        bottom: 86px;
        right: 20px;
        left: 20px;
        width: auto;
        height: 60vh;
        max-height: 60vh;
    }

    .chatbot-message-content {
        max-width: 85%;
    }
}

/* Ensure chatbot is above other elements */
#chatbot-button,
#chatbot-widget {
    cursor: default !important;
}

#chatbot-button *,
#chatbot-widget * {
    cursor: default !important;
}

#chatbot-button,
#chatbot-close,
#chatbot-send,
#chatbot-input {
    cursor: pointer !important;
}

#chatbot-input {
    cursor: text !important;
}

/* Mobile Payment Instructions */
@media (max-width: 768px) {
    .payment-instructions-content {
        padding: 25px 20px;
        width: 95%;
    }

    .payment-icon-large {
        font-size: 3rem;
    }

    .payment-instructions-header h2 {
        font-size: 1.5rem;
    }

    .payment-info-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .copy-btn {
        width: 100%;
        justify-content: center;
    }

    .payment-instructions-footer {
        flex-direction: column;
    }

    .payment-instructions-footer .btn {
        width: 100%;
    }
}

.btn-checkout {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 15px;
}

.cart-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: var(--bg-body);
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    z-index: 100001;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 196, 255, 0.3);
}

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

/* Mobile Cart Styles */
@media (max-width: 768px) {
    .cart-content-wrapper {
        max-width: 100%;
    }

    .cart-item {
        grid-template-columns: 60px 1fr;
        gap: 10px;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }

    .cart-item-controls {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
    }

    .cart-item-total {
        grid-column: 2;
        text-align: right;
        border-top: none;
        padding-top: 0;
    }
}

/* Discord Join Button */
.discord-join-btn {
    cursor: pointer !important;
}

.discord-join-btn:hover {
    background: #4752C4 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
}