/* ========================================
   CodeWare - Premium Performance Tools
   Clean, Modern, Professional Design
======================================== */

/* === LOADING SCREEN === */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Page Load Animation - Top to Bottom with Scale & Blur */
header,
.hero-aware,
.trust-section,
.featured-section,
.how-it-works,
.testimonials-section,
.dominate-cta-section,
#support,
footer,
.status-page,
.products-page,
.product-detail-simple,
.refund-policy-page {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    filter: blur(10px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Prevent ALL interactive and child elements from inheriting page load styles */
body.page-loaded .tab-simple-content,
body.page-loaded .reviews-list,
body.page-loaded .features-simple-grid,
body.page-loaded .requirements-simple-list,
body.page-loaded .faq-simple-list,
body.page-loaded .features-detailed,
body.page-loaded .requirements-detailed,
body.page-loaded .feature-category,
body.page-loaded .product-simple-tabs,
body.page-loaded .tab-simple-btn,
body.page-loaded .review-item,
body.page-loaded .faq-simple-item,
body.page-loaded .key-features-simple,
body.page-loaded .price-options-simple,
body.page-loaded .price-simple-option,
body.page-loaded .crypto-buttons,
body.page-loaded .btn-crypto,
.dropdown-menu,
.dropdown-menu *,
.dropdown-item,
nav,
nav ul,
nav ul li,
.dropdown-trigger,
.search-bar,
.search-results,
.logo-link,
.brand-name,
.header-right,
.btn,
button,
a {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition-delay: 0s !important;
}

body.page-loaded header {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    transition-delay: 0s;
}

body.page-loaded .hero-aware {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    transition-delay: 0.08s;
}

body.page-loaded .trust-section {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    transition-delay: 0.16s;
}

body.page-loaded .featured-section {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    transition-delay: 0.24s;
}

body.page-loaded .how-it-works {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    transition-delay: 0.32s;
}

body.page-loaded .testimonials-section {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    transition-delay: 0.4s;
}

body.page-loaded .dominate-cta-section {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    transition-delay: 0.48s;
}

body.page-loaded #support {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    transition-delay: 0.56s;
}

body.page-loaded footer {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    transition-delay: 0.64s;
}

/* Other pages animations */
body.page-loaded .status-page,
body.page-loaded .products-page,
body.page-loaded .product-detail-simple,
body.page-loaded .refund-policy-page {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    transition-delay: 0.08s;
}

.loading-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.loading-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

.loading-logo {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    gap: 0;
    line-height: 1;
}

.loading-code {
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
}

.loading-ware {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
}

.loading-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.loading-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gradient-primary);
    animation: loadingDotPulse 1.6s ease-in-out infinite;
}

.loading-dot:nth-child(1) {
    animation-delay: 0s;
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.loading-dot:nth-child(2) {
    animation-delay: 0.16s;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
}

.loading-dot:nth-child(3) {
    animation-delay: 0.32s;
    background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
}

.loading-dot:nth-child(4) {
    animation-delay: 0.48s;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.loading-dot:nth-child(5) {
    animation-delay: 0.64s;
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
}

@keyframes loadingDotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.4);
        opacity: 1;
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.8), 0 0 40px rgba(6, 182, 212, 0.6);
    }
}

.loading-bar-container {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
}

.loading-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    animation: loadingBarProgress 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

@keyframes loadingBarProgress {
    0% {
        width: 0%;
        left: 0%;
    }
    40% {
        width: 50%;
        left: 10%;
    }
    70% {
        width: 75%;
        left: 15%;
    }
    100% {
        width: 100%;
        left: 0%;
    }
}

.loading-message {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.05em;
}

.loading-footer {
    position: absolute;
    bottom: var(--space-2xl);
    right: var(--space-2xl);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 400;
    z-index: 1;
}

@media (max-width: 768px) {
    .loading-logo {
        font-size: 2rem;
    }
    
    .loading-dot {
    width: 10px;
    height: 10px;
    }
    
    .loading-bar-container {
        width: 250px;
    }
    
    .loading-footer {
        bottom: var(--space-lg);
        right: var(--space-lg);
        font-size: 0.6875rem;
    }
}

:root {
    /* === Color System === */
    --cyber-purple: #a855f7;
    --cyber-purple-dark: #9333ea;
    --cyber-purple-light: #c084fc;
    --cyber-blue: #06b6d4;
    --cyber-blue-light: #22d3ee;
    --neon-pink: #ec4899;
    --electric-green: #10b981;
    
    /* Backgrounds */
    --bg-primary: #0a0a0f;
    --bg-secondary: #13131a;
    --bg-tertiary: #1a1a25;
    --bg-hover: #1f1f2e;
    --bg-elevated: #242432;
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #e4e4e7;
    --text-muted: #a1a1aa;
    --text-disabled: #71717a;
    
    /* Borders */
    --border-subtle: #27273f;
    --border-default: #3d3d5f;
    --border-bright: #52527a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #a855f7 0%, #06b6d4 100%);
    --gradient-secondary: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    --gradient-card: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    --gradient-hover: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.6);
    --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.7);
    
    /* Glows */
    --glow-purple: 0 0 30px rgba(168, 85, 247, 0.4);
    --glow-cyan: 0 0 30px rgba(6, 182, 212, 0.4);
    --glow-pink: 0 0 30px rgba(236, 72, 153, 0.4);
    --glow-green: 0 0 30px rgba(16, 185, 129, 0.4);
    --glow-strong: 0 0 50px rgba(168, 85, 247, 0.6);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Text Selection */
::selection {
    background: rgba(168, 85, 247, 0.3);
    color: white;
}

::-moz-selection {
    background: rgba(168, 85, 247, 0.3);
    color: white;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--cyber-purple), var(--cyber-blue));
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--cyber-purple-light), var(--cyber-blue-light));
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(168, 85, 247, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.08) 0%, transparent 60%);
    background-attachment: fixed;
    pointer-events: none;
    z-index: 0;
    animation: backgroundPulse 20s ease-in-out infinite;
}

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

/* Grid Pattern Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

/* === HEADER / NAVIGATION === */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-base);
}

header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom-color: var(--border-bright);
}

header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    position: relative;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    transition: var(--transition-base);
    position: absolute;
    left: 0;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 0;
}

.brand-code {
    color: var(--text-primary);
}

.brand-ware {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.75rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover,
nav a.active {
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

nav a:hover::after,
nav a.active::after {
    left: 0;
    right: 0;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    position: relative;
}

.dropdown-trigger i {
    font-size: 0.625rem;
    opacity: 0.6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(0deg);
}

.nav-dropdown:hover .dropdown-trigger {
    color: var(--text-primary);
}

.nav-dropdown:hover .dropdown-trigger i {
    transform: rotate(90deg);
    opacity: 1;
    color: var(--cyber-purple-light);
}

.nav-dropdown.open .dropdown-trigger i {
    transform: rotate(90deg);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 220px;
    background: rgba(28, 25, 35, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.375rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 
                0 2px 8px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    z-index: 1000;
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 1.5rem;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid rgba(28, 25, 35, 0.98);
    filter: drop-shadow(0 -1px 4px rgba(0, 0, 0, 0.3));
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown {
    position: relative;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.8125rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(168, 85, 247, 0.08);
    opacity: 0;
    transition: opacity 0.15s ease;
}

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

.dropdown-item i {
    font-size: 1rem;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.dropdown-item span {
    flex: 1;
    transition: none;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.dropdown-item:hover {
    color: rgba(255, 255, 255, 1);
}

.dropdown-item:hover::before {
    opacity: 1;
}

.dropdown-item.active {
    color: rgba(255, 255, 255, 1);
}

.dropdown-item.active::before {
    opacity: 1;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0.25rem 0;
    border: none;
}

.dropdown-view-all {
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    margin-top: 0;
}

.dropdown-view-all:hover {
    color: rgba(255, 255, 255, 1);
}

.dropdown-view-all:hover::before {
    opacity: 1;
}

.dropdown-view-all i {
    font-size: 0.75rem;
}

/* Product Dropdown Custom Icons */
.product-icon-cod {
    color: #ff4444 !important;
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.6);
}

.product-icon-fortnite {
    color: #ffd700 !important;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.product-icon-spoofer {
    color: #ff6b6b !important;
    text-shadow: 0 0 8px rgba(255, 107, 107, 0.6);
}

.product-icon-premium {
    color: #ffd700 !important;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.dropdown-item:hover .product-icon-cod,
.dropdown-item:hover .product-icon-fortnite,
.dropdown-item:hover .product-icon-spoofer,
.dropdown-item:hover .product-icon-premium {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Product Card Icons - Custom Colors */
.product-card .product-icon i.fa-crosshairs {
    color: #ff4444;
    text-shadow: 0 0 12px rgba(255, 68, 68, 0.6);
}

.product-card .product-icon i.fa-crown {
    color: #ffd700;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

.product-card .product-icon i.fa-shield-alt {
    color: #ff6b6b;
    text-shadow: 0 0 12px rgba(255, 107, 107, 0.6);
}

.product-card .product-icon i.fa-code,
.product-card .product-icon i.fa-star {
    color: #ffd700;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

.product-card:hover .product-icon i {
    filter: brightness(1.2);
    transform: scale(1.05);
}

/* Status Page Product Icons */
.product-status-icon i.fa-crosshairs {
    color: #ff4444;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

.product-status-icon i.fa-crown {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.product-status-icon i.fa-shield-alt {
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.product-status-icon i.fa-code {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Product Detail Page Icon */
.product-icon-large i.fa-crosshairs {
    color: #ff4444;
    text-shadow: 0 0 16px rgba(255, 68, 68, 0.6);
}

.product-icon-large i.fa-crown {
    color: #ffd700;
    text-shadow: 0 0 16px rgba(255, 215, 0, 0.6);
}

.product-icon-large i.fa-shield-alt {
    color: #ff6b6b;
    text-shadow: 0 0 16px rgba(255, 107, 107, 0.6);
}

.product-icon-large i.fa-code {
    color: #ffd700;
    text-shadow: 0 0 16px rgba(255, 215, 0, 0.6);
}

/* Trust Section Icons */
.trust-icon i.fa-shield-check {
    color: #06b6d4;
    text-shadow: 0 0 12px rgba(6, 182, 212, 0.6);
}

.trust-icon i.fa-users {
    color: #a855f7;
    text-shadow: 0 0 12px rgba(168, 85, 247, 0.6);
}

.trust-icon i.fa-headset {
    color: #10b981;
    text-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
}

.trust-icon i.fa-clock {
    color: #f59e0b;
    text-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
}

/* Process Cards Icons */
.process-icon i.fa-download {
    color: #06b6d4;
    text-shadow: 0 0 12px rgba(6, 182, 212, 0.6);
}

.process-icon i.fa-key {
    color: #a855f7;
    text-shadow: 0 0 12px rgba(168, 85, 247, 0.6);
}

.process-icon i.fa-rocket {
    color: #ec4899;
    text-shadow: 0 0 12px rgba(236, 72, 153, 0.6);
}

.process-icon i.fa-trophy {
    color: #ffd700;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

/* Support Card Icons */
.support-icon i.fa-ticket-alt {
    color: #06b6d4;
    text-shadow: 0 0 12px rgba(6, 182, 212, 0.6);
}

.support-icon i.fa-discord,
.card-icon i.fa-discord {
    color: #5865f2;
    text-shadow: 0 0 12px rgba(88, 101, 242, 0.6);
}

.support-icon i.fa-envelope,
.card-icon i.fa-envelope {
    color: #f59e0b;
    text-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
}

/* Feature Category Icons */
.feature-category-title i {
    color: #a855f7;
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.5);
}

.feature-category-title i.fa-hdd {
    color: #06b6d4;
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.5);
}

.feature-category-title i.fa-microchip {
    color: #ff4444;
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.5);
}

.feature-category-title i.fa-server {
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.feature-category-title i.fa-desktop {
    color: #10b981;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.feature-category-title i.fa-network-wired {
    color: #a855f7;
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.5);
}

.feature-category-title i.fa-cogs {
    color: #ec4899;
    text-shadow: 0 0 8px rgba(236, 72, 153, 0.5);
}

.feature-category-title i.fa-crosshairs {
    color: #ff4444;
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.5);
}

.feature-category-title i.fa-eye {
    color: #06b6d4;
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.5);
}

.feature-category-title i.fa-brain {
    color: #ec4899;
    text-shadow: 0 0 8px rgba(236, 72, 153, 0.5);
}

.feature-category-title i.fa-paint-brush {
    color: #10b981;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.feature-category-title i.fa-exclamation-triangle {
    color: #f59e0b;
    text-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

.feature-category-title i.fa-info-circle {
    color: #06b6d4;
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.5);
}

/* Hero Section Icons */
.hero-badge i.fa-shield-check {
    color: #10b981;
}

.hero-badge i.fa-bolt {
    color: #ffd700;
}

.hero-badge i.fa-headset {
    color: #06b6d4;
}

/* Overview Icons */
.overview-icon i.fa-check-circle {
    color: #10b981;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.overview-icon i.fa-users {
    color: #a855f7;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.overview-icon i.fa-shield-alt {
    color: #06b6d4;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

/* Refund Policy Icons */
.card-icon i.fa-shield-check {
    color: #10b981;
    text-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
}

.card-icon i.fa-undo {
    color: #06b6d4;
    text-shadow: 0 0 12px rgba(6, 182, 212, 0.6);
}

/* FAQ Icons */
.faq-category-icon i {
    color: #a855f7;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.faq-category-icon i.fa-shopping-cart {
    color: #06b6d4;
}

.faq-category-icon i.fa-code {
    color: #10b981;
}

.faq-category-icon i.fa-headset {
    color: #ec4899;
}

.faq-category-icon i.fa-shield-alt {
    color: #ff6b6b;
}

.faq-category-icon i.fa-info-circle {
    color: #f59e0b;
}

/* Support Dropdown Icons */
.dropdown-item i.fa-ticket-alt {
    color: #06b6d4 !important;
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.6);
}

.dropdown-item i.fa-discord {
    color: #5865f2 !important;
    text-shadow: 0 0 8px rgba(88, 101, 242, 0.6);
}

.dropdown-item i.fa-envelope {
    color: #f59e0b !important;
    text-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

.dropdown-item i.fa-server {
    color: #10b981 !important;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

/* Community Dropdown Icons */
.dropdown-item i.fa-question-circle {
    color: #ec4899 !important;
    text-shadow: 0 0 8px rgba(236, 72, 153, 0.6);
}

/* About Dropdown Icons */
.dropdown-item i.fa-info-circle {
    color: #06b6d4 !important;
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.6);
}

.dropdown-item i.fa-file-contract {
    color: #a855f7 !important;
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.6);
}

.dropdown-item i.fa-undo {
    color: #10b981 !important;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

/* Back Button */
.back-button {
    display: inline-flex !important;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition-base);
    margin-bottom: var(--space-xl);
    padding: 0;
    background: none;
    border: none;
}

.back-button:hover {
    color: var(--text-secondary);
}

.back-button i {
    transition: transform var(--transition-base);
    font-size: 0.875rem;
}

.back-button:hover i {
    transform: translateX(-3px);
}

/* Buttons */
.btn {
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(168, 85, 247, 0.5);
}

.btn-secondary {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-bright);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary:hover {
    border-color: var(--cyber-purple);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
}

.btn-ghost:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.btn-discord {
    background: rgba(88, 101, 242, 0.15);
    border: 2px solid #5865f2;
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-discord:hover {
    background: #5865f2;
    border-color: #5865f2;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.5), var(--shadow-lg);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(70px + var(--space-3xl)) 0 var(--space-3xl);
    overflow: hidden;
}

/* Particle Canvas */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cyber-purple-light);
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    white-space: nowrap;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    margin-top: var(--space-3xl);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

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

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

/* === SECTIONS === */
section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.section-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cyber-purple-light);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.section-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 650px;
    margin: 0 auto;
}

/* === PRODUCTS / FEATURES GRID === */
.products-grid,
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .products-grid,
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .products-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-card,
.feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.product-card::before,
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-base);
}

.product-card::after,
.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.05), transparent);
    opacity: 0;
    transition: var(--transition-base);
}

.product-card:hover,
.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-bright);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.2), 0 0 0 1px rgba(168, 85, 247, 0.1);
}

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

.product-card:hover::after,
.feature-card:hover::after {
    opacity: 1;
}

.product-icon,
.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
    font-size: 1rem;
    color: var(--cyber-purple-light);
    transition: var(--transition-base);
}

.product-card:hover .product-icon,
.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.product-title,
.feature-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    transition: var(--transition-base);
}

.product-card:hover .product-title,
.feature-card:hover .feature-title {
    color: var(--cyber-purple-light);
}

.product-description,
.feature-description {
    color: var(--text-secondary);
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: var(--space-sm);
    flex: 1;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
}

.product-status {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.25rem 0.625rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--electric-green);
    text-transform: uppercase;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--electric-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.product-metrics {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.product-metric {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.product-metric i {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* === PRICING SECTION === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-2xl);
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    transition: var(--transition-base);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--cyber-purple);
    box-shadow: var(--glow-purple);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-sm) var(--space-lg);
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--cyber-purple);
    box-shadow: var(--glow-purple), var(--shadow-xl);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.pricing-description {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

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

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-2xl);
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border-subtle);
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature i {
    color: var(--electric-green);
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-feature span {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
}

.testimonial-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    overflow: hidden;
}

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

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
}

.testimonial-title {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-content {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* === STATUS PAGE === */
.status-page {
    padding: 5rem 0 var(--space-2xl);
}

.status-page .back-button {
    padding-top: 5rem;
    margin-bottom: var(--space-xl);
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.status-page .section-header {
    margin-bottom: var(--space-xl);
    text-align: center;
}

.status-hero-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.status-hero-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.status-hero-icon:hover::before {
    opacity: 1;
}

.status-hero-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, #fff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
}

.status-page .section-title {
    font-size: 2rem;
}

.status-page .section-description {
    font-size: 0.9375rem;
}

.refresh-btn {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    font-size: 0.8125rem;
}

.refresh-btn i {
    transition: transform var(--transition-base);
    font-size: 0.875rem;
}

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

.status-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.status-overview-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    display: flex;
    gap: var(--space-md);
    transition: var(--transition-base);
}

.status-overview-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-bright);
    box-shadow: var(--shadow-md);
}

.overview-icon {
    width: 45px;
    height: 45px;
    background: rgba(168, 85, 247, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--cyber-purple-light);
    flex-shrink: 0;
    position: relative;
}

.overview-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 20px currentColor;
}

.status-overview-card:hover .overview-icon::before {
    opacity: 0.4;
}

/* Custom colored overview icons */
.status-icon-heartbeat {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.15) 100%) !important;
}

.status-icon-heartbeat i {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(239, 68, 68, 0.4));
}

.status-icon-uptime {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.15) 100%) !important;
}

.status-icon-uptime i {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.4));
}

.status-icon-users {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(147, 51, 234, 0.15) 100%) !important;
}

.status-icon-users i {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(168, 85, 247, 0.4));
}

.status-icon-detection {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.15) 100%) !important;
}

.status-icon-detection i {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.4));
}

.overview-content {
    flex: 1;
}

.overview-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.overview-value {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1;
}

.overview-value.detection-safe {
    color: var(--electric-green);
}

.progress-bar {
    height: 5px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
}

.progress-bar.dotted {
    background: repeating-linear-gradient(
        90deg,
        var(--bg-tertiary),
        var(--bg-tertiary) 8px,
        transparent 8px,
        transparent 12px
    );
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width var(--transition-slow);
}

.detection-slider {
    margin-top: var(--space-sm);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-xs);
}

.slider-labels span {
    font-size: 0.6875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.slider-track {
    height: 5px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    position: relative;
}

.slider-marker {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--electric-green);
    border-radius: 50%;
    box-shadow: var(--glow-green);
}

.products-status-section {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
}

.products-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-subtle);
}

.products-status-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
}

.last-updated {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.last-updated span {
    color: var(--text-primary);
    font-weight: 600;
}

.products-status-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.product-status-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    transition: var(--transition-base);
}

.product-status-card:hover {
    border-color: var(--border-bright);
    transform: translateX(2px);
    box-shadow: var(--shadow-sm);
}

.product-status-icon {
    width: 50px;
    height: 50px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    color: var(--cyber-purple-light);
    flex-shrink: 0;
    position: relative;
}

.product-status-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 25px currentColor;
}

.product-status-card:hover .product-status-icon::before {
    opacity: 0.5;
}

/* Custom colored product status icons */
.status-product-cod {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.15) 100%) !important;
}

.status-product-cod i {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(239, 68, 68, 0.5));
}

.status-product-fortnite {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.15) 100%) !important;
}

.status-product-fortnite i {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(251, 191, 36, 0.5));
}

.status-product-spoofer {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(14, 165, 233, 0.15) 100%) !important;
}

.status-product-spoofer i {
    background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(6, 182, 212, 0.5));
}

.status-product-premium {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(147, 51, 234, 0.15) 100%) !important;
}

.status-product-premium i {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(168, 85, 247, 0.5));
}

.product-status-info {
    flex: 1;
}

.product-status-info h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.product-subtitle {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

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

.product-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-meta span i {
    font-size: 0.7rem;
    opacity: 0.7;
}

.product-status-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.product-status-badge.operational {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--electric-green);
}

.product-status-badge .status-dot {
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-footer-note {
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-subtle);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .status-header {
    flex-direction: column;
        gap: var(--space-md);
        align-items: flex-start;
    }
    
    .status-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .product-status-card {
    flex-direction: column;
        align-items: flex-start;
    text-align: left;
}

    .product-meta {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .products-status-header {
    flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }
}

/* === PRODUCT DETAIL PAGE === */
.product-hero {
    padding: calc(70px + var(--space-3xl)) 0 var(--space-3xl);
}

.product-detail {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.product-header {
        text-align: center;
    margin-bottom: var(--space-3xl);
}

.product-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--space-lg);
}

.product-tabs {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-sm);
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
}

.tab-btn {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    background: transparent;
    border: none;
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: white;
}

.tab-btn:hover:not(.active) {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.tab-content {
    display: none;
}

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

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-hover);
    border-radius: var(--radius-md);
}

.features-list i {
    color: var(--electric-green);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.purchase-section {
    background: var(--bg-tertiary);
    border: 2px solid var(--border-bright);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    text-align: center;
}

.purchase-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-2xl);
}

.purchase-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.purchase-option {
    background: var(--bg-secondary);
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
}

.purchase-option:hover {
    border-color: var(--border-bright);
    transform: translateY(-2px);
}

.purchase-option.selected {
    border-color: var(--cyber-purple);
    background: rgba(168, 85, 247, 0.05);
    box-shadow: var(--glow-purple);
}

.purchase-option .duration {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.purchase-option .price {
    font-size: 1.875rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.purchase-option p {
    margin: 0;
}

.status-undetected {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.status-dot.red {
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.best-value-badge {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 0.625rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: var(--radius-full);
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--electric-green);
    text-transform: uppercase;
    white-space: nowrap;
}

.purchase-options-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

@media (max-width: 480px) {
    .purchase-options,
    .purchase-options-2 {
        grid-template-columns: 1fr;
    }
}

/* === REFUND POLICY PAGE === */
.refund-policy-page {
    padding: 5rem 0 var(--space-3xl);
}

.refund-policy-page .back-button {
    padding-top: 5rem;
    margin-bottom: var(--space-xl);
}

.refund-hero {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.refund-hero h1 {
    font-size: clamp(1.875rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: var(--space-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.refund-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.refund-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.refund-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.refund-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.refund-card:hover {
    background: var(--bg-hover);
    border-color: var(--border-bright);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.25);
}

.refund-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.3s ease;
}

.refund-card:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.refund-card .card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.refund-card:hover .card-icon {
    transform: scale(1.15) rotate(-5deg);
}

/* Company Info Page Icons */
.company-icon-main {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.15) 100%);
    color: #3b82f6;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.company-icon-mission {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.15) 100%);
    color: #ef4444;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

.refund-card:hover .company-icon-mission {
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.5);
}

.company-icon-vision {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(147, 51, 234, 0.15) 100%);
    color: #a855f7;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3);
}

.refund-card:hover .company-icon-vision {
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.5);
}

.company-icon-impact {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.15) 100%);
    color: #10b981;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.refund-card:hover .company-icon-impact {
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
}

.company-icon-why {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.15) 100%);
    color: #fbbf24;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3);
}

.refund-card:hover .company-icon-why {
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.5);
}

.company-icon-team {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(8, 145, 178, 0.15) 100%);
    color: #06b6d4;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.refund-card:hover .company-icon-team {
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.5);
}

.company-icon-global {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
    color: #8b5cf6;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.refund-card:hover .company-icon-global {
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5);
}

.company-icon-contact {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(251, 146, 60, 0.15) 100%);
    color: #f97316;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.refund-card:hover .company-icon-contact {
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.5);
}

.company-icon-business {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.15) 100%);
    color: #10b981;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.refund-card:hover .company-icon-business {
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
}

/* Terms of Service Page Icons */
.terms-icon-main {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(147, 51, 234, 0.15) 100%);
    color: #a855f7;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
}

.terms-icon-accept {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.15) 100%);
    color: #10b981;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.refund-card:hover .terms-icon-accept {
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
}

.terms-icon-usage {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.15) 100%);
    color: #3b82f6;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.refund-card:hover .terms-icon-usage {
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.5);
}

.terms-icon-payment {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(8, 145, 178, 0.15) 100%);
    color: #06b6d4;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.refund-card:hover .terms-icon-payment {
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.5);
}

.terms-icon-ban {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.15) 100%);
    color: #ef4444;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

.refund-card:hover .terms-icon-ban {
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.5);
}

.terms-icon-update {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.15) 100%);
    color: #fbbf24;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3);
}

.refund-card:hover .terms-icon-update {
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.5);
}

.terms-icon-privacy {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(147, 51, 234, 0.15) 100%);
    color: #a855f7;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3);
}

.refund-card:hover .terms-icon-privacy {
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.5);
}

.terms-icon-liability {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(251, 146, 60, 0.15) 100%);
    color: #f97316;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.refund-card:hover .terms-icon-liability {
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.5);
}

.terms-icon-copyright {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
    color: #8b5cf6;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.refund-card:hover .terms-icon-copyright {
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5);
}

.terms-icon-dispute {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.15) 0%, rgba(71, 85, 105, 0.15) 100%);
    color: #64748b;
    box-shadow: 0 4px 16px rgba(100, 116, 139, 0.3);
}

.refund-card:hover .terms-icon-dispute {
    box-shadow: 0 8px 24px rgba(100, 116, 139, 0.5);
}

/* Core Values Icons */
.icon-heart-red {
    color: #ef4444 !important;
}

.icon-value-purple {
    color: #a855f7 !important;
}

.icon-value-yellow {
    color: #fbbf24 !important;
}

.icon-value-cyan {
    color: #06b6d4 !important;
}

.icon-value-green {
    color: #10b981 !important;
}

.refund-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.refund-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
}

.refund-card p:last-child {
    margin-bottom: 0;
}

.refund-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.refund-step {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: white;
}

.step-content h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.refund-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.refund-feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.refund-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.refund-feature-card:hover::before {
    transform: scaleX(1);
}

.refund-feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-bright);
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.2);
}

.refund-feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(-5deg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto var(--space-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Refund Policy Icon Colors */
.refund-icon-commitment {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(147, 51, 234, 0.15) 100%);
    color: #a855f7;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3);
}

.refund-card:hover .refund-icon-commitment {
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.5);
}

.refund-icon-process {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(8, 145, 178, 0.15) 100%);
    color: #06b6d4;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.refund-card:hover .refund-icon-process {
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.5);
}

.refund-feature-guarantee {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.15) 100%);
    color: #10b981;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.refund-feature-card:hover .refund-feature-guarantee {
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
}

.refund-feature-time {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.15) 100%);
    color: #3b82f6;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.refund-feature-card:hover .refund-feature-time {
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.5);
}

.refund-feature-support {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(251, 146, 60, 0.15) 100%);
    color: #f97316;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.refund-feature-card:hover .refund-feature-support {
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.5);
}

.refund-feature-fair {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.15) 100%);
    color: #fbbf24;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3);
}

.refund-feature-card:hover .refund-feature-fair {
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.5);
}

/* Note Item Icons */
.icon-info-blue {
    color: #3b82f6 !important;
}

.icon-note-blue {
    color: #3b82f6 !important;
}

.icon-note-red {
    color: #ef4444 !important;
}

.icon-note-cyan {
    color: #06b6d4 !important;
}

.icon-note-purple {
    color: #a855f7 !important;
}

.feature-icon.guarantee {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    color: var(--electric-green);
}

.feature-icon.time {
    background: rgba(6, 182, 212, 0.1);
    border: 2px solid rgba(6, 182, 212, 0.3);
    color: var(--cyber-blue-light);
}

.feature-icon.support {
    background: rgba(168, 85, 247, 0.1);
    border: 2px solid rgba(168, 85, 247, 0.3);
    color: var(--cyber-purple-light);
}

.feature-icon.fair {
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

.refund-feature-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

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

.refund-notes {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.refund-notes h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    text-align: center;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.note-item {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.note-item:hover {
    border-color: var(--border-bright);
    background: var(--bg-hover);
    transform: translateX(4px);
}

.note-item i {
    flex-shrink: 0;
    font-size: 1.125rem;
    margin-top: 0.125rem;
}

.note-item strong {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
    display: block;
}

.note-item p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.6;
        margin: 0;
    }
    
.refund-help {
    background: var(--bg-secondary);
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.refund-help::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.help-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.help-content p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.help-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* === MODAL === */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    padding: var(--space-lg);
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 5001;
}

.modal.active .modal-overlay {
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 5002;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 
                0 0 50px rgba(168, 85, 247, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(40px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-base);
}

.modal-close:hover {
    background: var(--bg-hover);
    border-color: var(--border-bright);
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.modal-content h2 i {
    color: var(--cyber-purple);
}

.modal-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.ticket-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-family: inherit;
    transition: var(--transition-base);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--cyber-purple);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a855f7' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-md) center;
    padding-right: calc(var(--space-md) + 24px);
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .modal-content {
        padding: var(--space-xl);
        max-height: 95vh;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    .modal-description {
        font-size: 0.875rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 0.8125rem;
        padding: var(--space-xs) var(--space-sm);
    }
    
    .modal-close {
        top: var(--space-md);
        right: var(--space-md);
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 1024px) {
    .refund-main-grid {
        grid-template-columns: 1fr;
    }
    
    .refund-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    }
    
@media (max-width: 768px) {
    .refund-features-grid {
        grid-template-columns: 1fr;
    }
    
    .notes-grid {
        grid-template-columns: 1fr;
    }
    
    .refund-card {
        padding: var(--space-lg);
    }
    
    .refund-notes {
        padding: var(--space-lg);
    }
    
    .refund-help {
        padding: var(--space-2xl) var(--space-lg);
    }
}

/* === SCRIPT LOADER PAGE === */
.script-page {
    padding: 5rem 0 var(--space-3xl);
    min-height: 100vh;
}

.script-page .back-button {
    padding-top: 5rem;
    margin-bottom: var(--space-xl);
}

.script-hero {
        text-align: center;
    margin-bottom: var(--space-3xl);
    padding: var(--space-3xl) 0;
    position: relative;
}

.script-icon {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-xl);
    display: flex;
        align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    font-size: 2.5rem;
    animation: floatIcon 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding: var(--space-md);
}

.script-icon-main {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    box-shadow: 0 15px 50px rgba(168, 85, 247, 0.5);
}

.script-logo-img {
        width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(168, 85, 247, 0.4));
}

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

.script-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.script-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    font-weight: 400;
}

.highlight-text {
    background: rgba(168, 85, 247, 0.2);
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--cyber-purple-light);
    font-weight: 600;
}

.highlight-text-free {
    background: rgba(16, 185, 129, 0.2);
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    font-weight: 600;
}

.script-badge-free {
    background: rgba(16, 185, 129, 0.1) !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
}

.script-badge-free:hover {
    background: rgba(16, 185, 129, 0.2) !important;
    border-color: rgba(16, 185, 129, 0.5) !important;
}

.script-badges {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.script-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition-base);
}

.script-badge:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.5);
    transform: scale(1.05);
}

.script-badge i {
    font-size: 1rem;
}

/* Custom Colored Badge Icons */
.icon-gift {
    color: #10b981 !important;
}

.script-badge-premium {
    background: rgba(251, 191, 36, 0.1) !important;
    border-color: rgba(251, 191, 36, 0.3) !important;
}

.script-badge-premium:hover {
    background: rgba(251, 191, 36, 0.2) !important;
    border-color: rgba(251, 191, 36, 0.5) !important;
}

.icon-crown {
    color: #fbbf24 !important;
}

.script-badge-update {
    background: rgba(59, 130, 246, 0.1) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
}

.script-badge-update:hover {
    background: rgba(59, 130, 246, 0.2) !important;
    border-color: rgba(59, 130, 246, 0.5) !important;
}

.icon-sync {
    color: #3b82f6 !important;
}

.script-badge-secure {
    background: rgba(168, 85, 247, 0.1) !important;
    border-color: rgba(168, 85, 247, 0.3) !important;
}

.script-badge-secure:hover {
    background: rgba(168, 85, 247, 0.2) !important;
    border-color: rgba(168, 85, 247, 0.5) !important;
}

.icon-shield {
    color: #a855f7 !important;
}

.script-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-3xl);
    box-shadow: var(--shadow-xl), 0 0 50px rgba(168, 85, 247, 0.15);
    position: relative;
}

.script-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0.7;
}

.script-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) var(--space-xl);
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-bright);
}

.script-info {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
}

.btn-copy {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.btn-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

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

.script-code-block {
    padding: var(--space-3xl);
    background: var(--bg-primary);
    overflow-x: auto;
    position: relative;
}

.script-code-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.5;
}

.script-code-block pre {
    margin: 0;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.lua-code {
    display: block;
    color: #e4e4e7;
    font-size: 1rem;
    line-height: 2;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    white-space: pre;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
}

.script-footer {
    padding: var(--space-lg) var(--space-xl);
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-bright);
}

.script-stats {
    display: flex;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.script-stat {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-muted);
    font-size: 0.8125rem;
}

.script-stat i {
    color: var(--cyber-purple-light);
}

.script-section-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-2xl);
}

.script-section-title i {
    color: var(--cyber-purple-light);
}

/* Guide Steps - 4 Box Grid */
.script-guide {
    margin-bottom: var(--space-3xl);
}

.guide-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.guide-step-card {
    padding: var(--space-2xl);
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    transition: var(--transition-base);
    overflow: hidden;
}

.guide-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-base);
}

.guide-step-card:hover::before {
    opacity: 1;
}

.guide-step-card:hover {
    border-color: var(--border-bright);
    background: var(--bg-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(168, 85, 247, 0.2);
}

.step-number-large {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 35px;
    height: 35px;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--cyber-purple-light);
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 1.5rem;
    transition: var(--transition-base);
}

.guide-step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Custom Colored Step Icons */
.step-icon-executor {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
    color: #8b5cf6;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.guide-step-card:hover .step-icon-executor {
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.5);
}

.step-icon-copy {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(8, 145, 178, 0.15) 100%);
    color: #06b6d4;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

.guide-step-card:hover .step-icon-copy {
    box-shadow: 0 12px 32px rgba(6, 182, 212, 0.5);
}

.step-icon-execute {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.15) 100%);
    color: #10b981;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.guide-step-card:hover .step-icon-execute {
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.5);
}

.step-icon-gui {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.15) 100%);
    color: #fbbf24;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3);
}

.guide-step-card:hover .step-icon-gui {
    box-shadow: 0 12px 32px rgba(251, 191, 36, 0.5);
}

.guide-step-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.guide-step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.875rem;
}

/* Script Trust Section */
.script-trust-section {
    margin-bottom: var(--space-3xl);
}

.trust-section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-sm);
}

.trust-section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: var(--space-3xl);
}

/* Trust Badges - Smaller Boxes (6 across) */
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.trust-badge-small {
    padding: var(--space-lg);
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
}

.trust-badge-small:hover {
    border-color: var(--border-bright);
    background: var(--bg-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 0 20px rgba(168, 85, 247, 0.15);
}

.trust-badge-small i {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.trust-badge-small h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.trust-badge-small p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Stats Grid - Larger Boxes (4 across) */
.script-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.script-stat-card {
    padding: var(--space-2xl);
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
}

.script-stat-card:hover {
    border-color: var(--border-bright);
    background: var(--bg-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(168, 85, 247, 0.2);
}

.script-stat-card i {
        font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.stat-value {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* Premium Key Section */
.premium-key-section {
    margin-bottom: var(--space-3xl);
    padding: var(--space-3xl);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-xl);
    position: relative;
}

.premium-key-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0.6;
}

.premium-key-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.premium-key-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 2rem;
    animation: floatIcon 3s ease-in-out infinite;
}

.premium-icon-main {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.15) 100%);
    color: #f59e0b;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.4);
}

.premium-key-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-top: var(--space-sm);
}

.premium-key-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.premium-key-card {
    padding: var(--space-2xl);
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition-base);
    overflow: hidden;
}

.premium-key-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
        opacity: 0;
    transition: var(--transition-base);
    }

.premium-key-card:hover::before {
        opacity: 1;
}

.premium-key-card:hover {
    border-color: var(--border-bright);
    background: var(--bg-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(168, 85, 247, 0.2);
}

.key-step-number {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.premium-key-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    margin-top: var(--space-xl);
}

.premium-key-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.key-example {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--bg-primary);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
}

.key-example i {
    color: #f59e0b;
    font-size: 1.25rem;
}

.key-example code {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-primary);
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
}

.premium-features-mini {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-top: var(--space-md);
}

.premium-features-mini span {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.premium-features-mini i {
    color: #10b981;
}

.premium-info-box {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--cyber-purple);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--cyber-purple-light);
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.info-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Script CTA */
.script-cta {
    padding: var(--space-3xl);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.script-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0.6;
}

.script-cta-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.script-cta-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: var(--space-2xl);
}

.script-cta-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .script-hero {
        padding: var(--space-xl) 0;
    }
    
    .script-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .premium-key-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .script-header {
    flex-direction: column;
        gap: var(--space-md);
        align-items: flex-start;
    }
    
    .btn-copy {
        width: 100%;
    justify-content: center;
}

    .script-code-block {
        padding: var(--space-lg);
    }
    
    .lua-code {
        font-size: 0.8125rem;
    }
    
    .script-stats {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .guide-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .premium-key-section {
        padding: var(--space-xl);
    }
    
    .premium-key-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-info-box {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .script-cta-buttons {
        flex-direction: column;
    }
    
    .script-cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .guide-steps-grid {
        grid-template-columns: 1fr;
    }
}

/* === SETTINGS PAGE === */
.settings-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.settings-section {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.settings-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0.6;
}

.settings-section.danger-section {
    border-color: rgba(239, 68, 68, 0.3);
}

.settings-section.danger-section::before {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

.settings-header {
    margin-bottom: var(--space-2xl);
}

.settings-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.settings-header h2 i {
    color: var(--cyber-purple);
}

.settings-section.danger-section h2 i {
    color: #ef4444;
}

.settings-header p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.settings-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    gap: var(--space-xl);
}

.setting-item:hover {
    border-color: var(--border-bright);
    background: rgba(168, 85, 247, 0.03);
}

.setting-info {
    flex: 1;
}

.setting-info h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.setting-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.setting-control {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.setting-input {
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 0.5rem var(--space-md);
    color: var(--text-primary);
    font-size: 0.875rem;
    min-width: 200px;
    transition: var(--transition-base);
}

.setting-input:focus {
    outline: none;
    border-color: var(--cyber-purple);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.setting-select {
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 0.5rem var(--space-md);
    color: var(--text-primary);
    font-size: 0.875rem;
    min-width: 200px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a855f7' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-md) center;
    padding-right: calc(var(--space-md) + 24px);
    transition: var(--transition-base);
}

.setting-select:focus {
    outline: none;
    border-color: var(--cyber-purple);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.btn-setting,
.btn-setting-primary,
.btn-setting-danger {
    padding: 0.5rem var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.btn-setting {
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.btn-setting:hover {
    border-color: var(--border-bright);
    color: var(--text-primary);
}

.btn-setting-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.btn-setting-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(168, 85, 247, 0.4);
}

.btn-setting-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.btn-setting-danger:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider::before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background: var(--text-muted);
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--gradient-primary);
    border-color: transparent;
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(24px);
    background: white;
}

.toggle-switch input:disabled + .toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.setting-status {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    min-width: 70px;
}

.setting-status.active {
    color: #10b981;
}

.settings-actions {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-md);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-subtle);
    margin-top: var(--space-xl);
}

@media (max-width: 768px) {
    .setting-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }
    
    .setting-control {
        width: 100%;
        justify-content: space-between;
    }
    
    .setting-input,
    .setting-select {
        min-width: 0;
        flex: 1;
    }
    
    .settings-actions {
        flex-direction: column;
    }
    
    .settings-actions button {
        width: 100%;
    }
}

/* === FAQ PAGE === */
.faq-page {
    padding: 5rem 0 var(--space-3xl);
    min-height: 100vh;
}

.faq-page .back-button {
    padding-top: 5rem;
    margin-bottom: var(--space-xl);
}

.faq-hero {
    text-align: center;
    margin-bottom: var(--space-2xl);
    padding: var(--space-xl) 0;
}

.faq-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 2rem;
}

.faq-icon-main {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(147, 51, 234, 0.15) 100%);
    color: #a855f7;
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.4);
}

.faq-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
}

.faq-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.faq-category {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    overflow: hidden;
    position: relative;
    margin-bottom: var(--space-xl);
}

.faq-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
}

.faq-category-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-category:hover .faq-category-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* Custom Colored FAQ Category Icons */
.faq-icon-general {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.15) 100%);
    color: #3b82f6;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.faq-category:hover .faq-icon-general {
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.5);
}

.faq-icon-product {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(147, 51, 234, 0.15) 100%);
    color: #a855f7;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3);
}

.faq-category:hover .faq-icon-product {
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.5);
}

.faq-icon-technical {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(8, 145, 178, 0.15) 100%);
    color: #06b6d4;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.faq-category:hover .faq-icon-technical {
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.5);
}

.faq-icon-payment {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.15) 100%);
    color: #10b981;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.faq-category:hover .faq-icon-payment {
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
}

.faq-icon-support {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(251, 146, 60, 0.15) 100%);
    color: #f97316;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.faq-category:hover .faq-icon-support {
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.5);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: var(--border-bright);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.faq-item.active {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: #06b6d4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.875rem;
}

.faq-item:hover .faq-question i {
    color: var(--cyber-purple-light);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--cyber-purple-light);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--space-lg) var(--space-md);
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.9375rem;
}

.faq-cta {
    padding: var(--space-2xl);
    background: var(--bg-secondary);
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    max-width: 900px;
    margin: var(--space-3xl) auto 0;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.faq-cta-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(251, 146, 60, 0.15) 100%);
    color: #f97316;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 1.75rem;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.faq-cta-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.faq-cta-content p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: var(--space-xl);
}

.faq-cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Buttons */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta span {
    position: relative;
    z-index: 1;
}

.btn-cta i:first-child {
    position: relative;
    z-index: 1;
}

.btn-cta-arrow {
    font-size: 0.75rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.btn-cta:hover .btn-cta-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Discord CTA Button */
.btn-cta-discord {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.15) 0%, rgba(114, 137, 218, 0.15) 100%);
    border-color: rgba(88, 101, 242, 0.4);
    color: var(--text-primary);
}

.btn-cta-discord i:first-child {
    color: #5865f2;
}

.btn-cta-discord:hover {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.25) 0%, rgba(114, 137, 218, 0.25) 100%);
    border-color: #5865f2;
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.4);
    transform: translateY(-2px);
}

/* Ticket CTA Button */
.btn-cta-ticket {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(8, 145, 178, 0.15) 100%);
    border-color: rgba(6, 182, 212, 0.4);
    color: var(--text-primary);
}

.btn-cta-ticket i:first-child {
    color: #06b6d4;
}

.btn-cta-ticket:hover {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.25) 0%, rgba(8, 145, 178, 0.25) 100%);
    border-color: #06b6d4;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .faq-category {
        padding: var(--space-lg);
    }
    
    .faq-question {
        padding: var(--space-md);
    }
    
    .faq-item.active .faq-answer {
        padding: 0 var(--space-md) var(--space-md);
    }
    
    .faq-cta-buttons {
        flex-direction: column;
    }
    
    .faq-cta-buttons .btn {
        width: 100%;
    }
}

/* Terms Info Section - Compact & Colorful Design */
.terms-info-section {
    margin: var(--space-3xl) 0;
}

.terms-info-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    justify-content: center;
}

.info-emoji {
    font-size: 2rem;
    filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.6));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.terms-info-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.terms-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin: 0 auto;
}

.terms-info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(31, 41, 55, 0.6));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.terms-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.terms-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.terms-info-card:hover::before {
    opacity: 1;
}

.info-emoji-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    position: relative;
}

.terms-info-card:hover .info-emoji-icon {
    transform: scale(1.15) rotate(-5deg);
}

.info-emoji-icon span {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Individual Card Colors */
.terms-card-edit {
    border-color: rgba(251, 191, 36, 0.3);
}

.terms-card-edit:hover {
    border-color: rgba(251, 191, 36, 0.6);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.2);
}

.terms-card-edit .info-emoji-icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.15));
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.terms-card-language {
    border-color: rgba(59, 130, 246, 0.3);
}

.terms-card-language:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.terms-card-language .info-emoji-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.15));
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.terms-card-legal {
    border-color: rgba(168, 85, 247, 0.3);
}

.terms-card-legal:hover {
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.2);
}

.terms-card-legal .info-emoji-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(147, 51, 234, 0.15));
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.terms-card-user {
    border-color: rgba(16, 185, 129, 0.3);
}

.terms-card-user:hover {
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.terms-card-user .info-emoji-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.15));
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.info-content {
    flex: 1;
}

.info-content h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 var(--space-xs) 0;
    line-height: 1.3;
}

.info-content p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1200px) {
    .terms-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .terms-info-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .terms-info-card {
        padding: var(--space-md);
    }
    
    .info-emoji-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .info-content h4 {
        font-size: 0.875rem;
    }
    
    .info-content p {
        font-size: 0.8125rem;
    }
}

/* Terms/Company CTA Section - Improved Design */
.terms-cta-section {
    padding: var(--space-3xl) 0;
}

.terms-cta-card {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-3xl);
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(31, 41, 55, 0.9));
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.terms-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.terms-cta-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.terms-cta-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.15));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--cyber-purple-light);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 24px rgba(168, 85, 247, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

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

.terms-cta-card h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.terms-cta-card p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.terms-cta-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.terms-btn {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 240px;
    border: 2px solid transparent;
}

.terms-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.terms-btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    position: relative;
    z-index: 1;
}

.btn-label {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    display: block;
}

.btn-sublabel {
    font-size: 0.8125rem;
    opacity: 0.8;
    font-weight: 500;
    margin-top: 2px;
    display: block;
}

.btn-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
    opacity: 0.8;
}

.terms-btn:hover .btn-arrow {
    transform: translateX(4px);
    opacity: 1;
}

/* Primary Button (Gradient) */
.terms-btn-primary {
    background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.4);
}

.terms-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.6), 0 0 40px rgba(168, 85, 247, 0.3);
}

.terms-btn-primary .btn-icon-wrapper {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.terms-btn-primary:hover .btn-icon-wrapper {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(-5deg);
}

/* Discord Button */
.terms-btn-discord {
    background: rgba(88, 101, 242, 0.1);
    color: white;
    border: 2px solid rgba(88, 101, 242, 0.5);
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.2), inset 0 0 20px rgba(88, 101, 242, 0.1);
}

.terms-btn-discord:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: #5865f2;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.4), 0 0 40px rgba(88, 101, 242, 0.3);
}

.terms-btn-discord .btn-icon-wrapper {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.3), rgba(88, 101, 242, 0.2));
    border: 1px solid rgba(88, 101, 242, 0.5);
    color: #5865f2;
}

.terms-btn-discord:hover .btn-icon-wrapper {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.5), rgba(88, 101, 242, 0.3));
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
}

@media (max-width: 768px) {
    .terms-cta-card {
        padding: var(--space-2xl) var(--space-lg);
    }
    
    .terms-cta-buttons {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .terms-btn {
        width: 100%;
        min-width: 0;
    }
    
    .terms-cta-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
}

/* === PRODUCT REVIEWS === */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.review-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: var(--transition-base);
}

.review-item:hover {
    border-color: var(--border-bright);
    background: var(--bg-hover);
    transform: translateX(4px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.review-info {
    flex: 1;
}

.review-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
    font-size: 0.9375rem;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
}

.review-rating i {
    font-size: 0.875rem;
    color: #fbbf24;
}

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

.review-date {
    font-size: 0.8125rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.875rem;
    margin: 0;
}

.show-more-reviews {
    margin-top: var(--space-md);
}

@media (max-width: 768px) {
    .review-header {
        flex-wrap: wrap;
    }
    
    .review-date {
        width: 100%;
        margin-top: var(--space-xs);
        order: 3;
    }
    
    .review-item {
        padding: var(--space-md);
    }
    
    .review-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* === SIMPLE PRODUCT DETAIL PAGE === */
.product-detail-simple {
    padding: 0 0 var(--space-md);
    min-height: 100vh;
}

.product-detail-simple .back-button {
    padding-top: 5rem;
    margin-bottom: var(--space-xl);
}

.product-simple-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 1px rgba(168, 85, 247, 0.1);
    position: relative;
    overflow: hidden;
}

.product-simple-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0.8;
}

.product-simple-header h1 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: var(--space-xs);
    line-height: 1.2;
}

.product-simple-meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    flex-wrap: wrap;
}

.product-simple-description {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-subtle);
}

.key-features-simple {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-subtle);
}

.feature-simple-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-simple-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: currentColor;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-simple-item:hover::before {
    opacity: 0.6;
}

.feature-simple-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-bright);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.feature-simple-item i {
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* Custom Colored Check Icons */
.icon-check-green {
    color: #10b981 !important;
}

.icon-check-blue {
    color: #3b82f6 !important;
}

.icon-check-purple {
    color: #a855f7 !important;
}

.icon-check-cyan {
    color: #06b6d4 !important;
}

.icon-check-gold {
    color: #fbbf24 !important;
}

/* Custom Colored Feature Icons (Premium CodeWare) */
.icon-key-orange {
    color: #f97316 !important;
}

.icon-rocket-purple {
    color: #a855f7 !important;
}

.icon-layer-cyan {
    color: #06b6d4 !important;
}

.icon-crown-gold {
    color: #fbbf24 !important;
}

.pricing-simple-section {
    margin-bottom: var(--space-lg);
}

.pricing-simple-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.pricing-simple-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

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

.price-simple-option {
    position: relative;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    overflow: visible;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.price-simple-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.price-simple-option::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--radius-lg);
}

.price-simple-option:hover {
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.2);
}

.price-simple-option:hover::before {
    opacity: 0.6;
}

.price-simple-option:hover::after {
    opacity: 1;
}

.price-simple-option.selected {
    border-color: var(--cyber-purple);
    background: rgba(168, 85, 247, 0.1);
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.35),
                0 0 0 1px rgba(168, 85, 247, 0.2);
}

.price-simple-option.selected::before {
    opacity: 1;
}

.price-simple-option.selected::after {
    opacity: 1;
}

.price-duration {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.price-amount {
    font-size: 1.125rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.price-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.625rem;
    color: var(--text-muted);
}

.simple-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-subtle);
}

.crypto-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.crypto-toggle-btn .fa-chevron-down {
    transition: transform var(--transition-base);
    font-size: 0.75rem;
}

.crypto-toggle-btn.active .fa-chevron-down {
    transform: rotate(180deg);
}

.crypto-buttons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-xs);
    margin-top: var(--space-xs);
    animation: fadeIn 0.3s ease;
}

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

.btn-crypto {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.btn-crypto:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.btn-crypto.selected {
    background: var(--gradient-primary);
    border-color: var(--cyber-purple);
    color: white;
}

@media (max-width: 768px) {
    .crypto-buttons {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .crypto-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

.btn-simple-primary {
    width: 100%;
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
    font-weight: 700;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-simple-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-simple-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-simple-primary:hover {
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.6);
    transform: translateY(-2px);
}

.btn-simple-secondary {
    width: 100%;
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.9375rem;
    font-weight: 700;
    justify-content: center;
}

.product-simple-tabs {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 2px;
}

.tab-simple-btn {
    background: none;
    border: none;
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-simple-btn::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-simple-btn:hover {
    color: var(--text-secondary);
    background: rgba(168, 85, 247, 0.05);
}

.tab-simple-btn.active {
    color: var(--text-primary);
    background: rgba(168, 85, 247, 0.1);
}

.tab-simple-btn.active::after {
    transform: scaleX(1);
}

.tab-simple-content {
    display: none;
    opacity: 1;
    visibility: visible;
}

.tab-simple-content.active {
    display: block;
    opacity: 1;
    visibility: visible;
    animation: quickFadeIn 0.2s ease;
}

@keyframes quickFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.features-simple-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xs);
}

.features-simple-grid .feature-simple-item {
    background: transparent;
    border: none;
    padding: var(--space-xs) 0;
    gap: var(--space-xs);
}

.features-simple-grid .feature-simple-item:hover {
    background: transparent;
    transform: translateX(4px);
    border: none;
}

.features-detailed {
    display: flex;
        flex-direction: column;
    gap: var(--space-md);
}

.feature-category {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    transition: var(--transition-base);
}

.feature-category:hover {
    border-color: var(--border-bright);
    background: var(--bg-hover);
}

.feature-category-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--cyber-purple-light);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.feature-category-title i {
    font-size: 0.875rem;
}

.requirements-simple-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
        flex-direction: column;
    gap: var(--space-sm);
}

.requirements-simple-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: var(--space-xs);
}

.requirements-simple-list i {
    color: var(--cyber-blue-light);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.requirements-detailed {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.requirements-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--cyber-purple-light);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.requirements-title i {
    font-size: 0.875rem;
}

.faq-simple-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-simple-item {
    padding: var(--space-xs) var(--space-sm);
}

.faq-simple-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-size: 0.8125rem;
}

.faq-simple-item p {
    color: var(--text-muted);
    font-size: 0.75rem;
        margin: 0;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .product-simple-card {
        padding: var(--space-lg);
    }
    
    .product-simple-header h1 {
        font-size: 1.5rem;
    }
    
    .pricing-simple-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .key-features-simple,
    .features-simple-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .pricing-simple-grid,
    .pricing-simple-2col {
        grid-template-columns: 1fr;
    }
    
    .product-simple-card {
        padding: var(--space-md);
    }
    
    .product-simple-header h1 {
        font-size: 1.375rem;
    }
}

/* === CHECKOUT PAGE === */
.product-checkout {
    padding: var(--space-3xl) 0;
    min-height: 100vh;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--space-3xl);
    margin-top: var(--space-2xl);
}

/* Left Column */
.checkout-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.product-preview-card {
    position: relative;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preview-badge-top-left,
.preview-badge-top-right {
    position: absolute;
    top: var(--space-lg);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.preview-badge-top-left {
    left: var(--space-lg);
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid var(--cyber-purple);
    color: var(--cyber-purple-light);
}

.preview-badge-top-right {
    right: var(--space-lg);
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--electric-green);
    color: var(--electric-green);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.preview-content {
    text-align: center;
    color: var(--text-muted);
}

.preview-content p {
    margin-top: var(--space-md);
    font-size: 0.9375rem;
}

.engagement-stats {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-md) 0;
}

.engagement-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.engagement-item i {
    color: var(--cyber-purple-light);
    font-size: 1rem;
}

.payment-methods-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.payment-methods-card h3 {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.payment-methods-card h3 i {
    color: var(--electric-green);
    font-size: 1.125rem;
}

.payment-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.payment-icon {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    min-height: 50px;
    transition: var(--transition-base);
}

.payment-icon:hover {
    border-color: var(--border-bright);
    background: var(--bg-hover);
}

.payment-icon i {
    font-size: 1.5rem;
}

.payment-icon.bitcoin i {
    color: #f7931a;
}

.payment-security-text {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0;
}

/* Right Column */
.checkout-right {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
}

.product-checkout-header h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.product-meta {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.product-rating i {
    color: #fbbf24;
    font-size: 0.75rem;
}

.product-status-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 4px var(--space-sm);
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--electric-green);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--electric-green);
}

.product-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
}

.key-features-checkout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--border-subtle);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--cyber-purple-light);
    font-size: 1rem;
    flex-shrink: 0;
}

.pricing-section-checkout h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.pricing-options-checkout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

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

.price-option {
    position: relative;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
}

.price-option:hover {
    border-color: var(--border-bright);
    transform: translateY(-2px);
}

.price-option.selected {
    border-color: var(--cyber-purple);
    background: rgba(168, 85, 247, 0.05);
    box-shadow: var(--glow-purple);
}

.price-duration {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
}

.price-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.checkout-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--border-subtle);
}

.btn-checkout-primary {
    width: 100%;
    padding: var(--space-lg);
    font-size: 1.0625rem;
    font-weight: 700;
    justify-content: center;
}

.btn-checkout-secondary {
    width: 100%;
    padding: var(--space-lg);
    font-size: 1rem;
    justify-content: center;
}

.product-tabs-checkout {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    border-bottom: 1px solid var(--border-subtle);
}

.tab-btn-checkout {
    background: none;
    border: none;
    padding: var(--space-md) var(--space-lg);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: var(--transition-base);
    border-bottom: 2px solid transparent;
}

.tab-btn-checkout:hover {
    color: var(--text-secondary);
}

.tab-btn-checkout.active {
    color: var(--cyber-purple-light);
    border-bottom-color: var(--cyber-purple);
}

.tab-content-checkout {
    display: none;
}

.tab-content-checkout.active {
    display: block;
}

.features-grid-checkout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.feature-checkout-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: var(--space-sm);
}

.feature-checkout-item i {
    color: var(--cyber-purple-light);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.requirements-list li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.9375rem;
    color: var(--text-secondary);
    padding: var(--space-sm);
}

.requirements-list i {
    color: var(--cyber-blue-light);
    font-size: 1rem;
    flex-shrink: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.faq-item {
    padding: var(--space-md);
}

.faq-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    font-size: 0.9375rem;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .checkout-grid {
        grid-template-columns: 350px 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-left {
        order: 2;
    }
    
    .checkout-right {
        order: 1;
    }
    
    .pricing-options-checkout {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .key-features-checkout,
    .features-grid-checkout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .pricing-options-checkout,
    .pricing-options-2col {
        grid-template-columns: 1fr;
    }
    
    .payment-icons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .checkout-right {
        padding: var(--space-2xl);
    }
    
    .product-checkout-header h1 {
        font-size: 1.5rem;
    }
}

/* === FOOTER === */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-3xl) 0 var(--space-xl);
    margin-top: var(--space-3xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 0;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(168, 85, 247, 0.3));
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-base);
}

.social-icon:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.footer-section-title {
    font-weight: 700;
    font-size: 1.0625rem;
    margin-bottom: var(--space-lg);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-link:hover {
    color: var(--cyber-purple-light);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    nav ul {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .hero-stats {
    flex-direction: column;
        gap: var(--space-xl);
    }
    
    .products-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* === UTILITY CLASSES === */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

a {
    text-decoration: none;
}

/* Focus States */
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--cyber-purple);
    outline-offset: 2px;
}

/* Smooth Transitions */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === AWARECHEATS-INSPIRED DESIGN === */

/* Header Search Bar */
.header-right {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    position: absolute;
    right: 0;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    padding: 0.5rem var(--space-md);
    transition: var(--transition-base);
}

.search-bar:focus-within {
    border-color: var(--cyber-purple);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.search-bar i {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

.search-bar input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 0.8125rem;
    width: 200px;
}

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

/* Login Button */
.btn-login {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.5rem var(--space-lg);
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-login:hover::before {
    left: 100%;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
}

.btn-login i {
    font-size: 0.875rem;
}

/* Header Right Container */
.header-right {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Search Results Dropdown */
.search-bar {
    position: relative;
}

.search-results {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    width: 400px;
    max-height: 500px;
    overflow-y: auto;
    background: var(--bg-elevated);
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-lg);
    padding: var(--space-sm);
    box-shadow: var(--shadow-xl), 0 0 20px rgba(168, 85, 247, 0.2);
    z-index: 2000;
    backdrop-filter: blur(20px);
}

.search-header {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    padding: var(--space-xs) var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xs);
    text-decoration: none;
    transition: var(--transition-base);
}

.search-result-item:hover {
    background: var(--bg-hover);
    border-color: var(--border-bright);
    transform: translateX(4px);
}

.search-result-icon {
    width: 40px;
    height: 40px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyber-purple-light);
    flex-shrink: 0;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.search-result-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-result-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    flex-shrink: 0;
}

.search-result-price {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--cyber-purple-light);
}

.search-result-status {
    font-size: 0.625rem;
    font-weight: 600;
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.search-result-status.undetected {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--electric-green);
}

.search-result-status.active {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--cyber-purple-light);
}

.search-result-btn {
    margin-top: 0.25rem;
    padding: 0.25rem 0.75rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.search-result-btn:hover {
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
    transform: translateY(-2px);
}

.search-no-results {
    padding: var(--space-lg);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Metric Dot Animation */
.metric-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.metric-dot.green { background: var(--electric-green); }
.metric-dot.red { background: #ef4444; }
.metric-dot.blue { background: var(--cyber-blue); }
.metric-dot.yellow { background: #fbbf24; }

/* Hero Aware Section */
.hero-aware {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-left {
    animation: fadeInUp 0.8s ease-out;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cyber-purple-light);
    margin-bottom: var(--space-2xl);
}

.hero-heading {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--space-md);
}

.hero-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.highlight-text {
    color: var(--cyber-purple-light);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.btn-glow {
    box-shadow: var(--glow-purple);
}

.btn-glow:hover {
    box-shadow: var(--glow-strong);
}

.hero-features {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-feature-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    cursor: pointer;
}

.hero-feature-card:hover {
    background: var(--bg-hover);
    border-color: var(--border-bright);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.15);
}

.hero-feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.hero-feature-card .feature-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: transform var(--transition-base);
}

.feature-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--electric-green);
}

.feature-icon.purple {
    background: rgba(168, 85, 247, 0.1);
    color: var(--cyber-purple-light);
}

.feature-icon.blue {
    background: rgba(6, 182, 212, 0.1);
    color: var(--cyber-blue-light);
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.feature-text strong {
    font-weight: 600;
    color: var(--text-primary);
}

.feature-text span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Hero Metrics Bar (Below Navigation) */
.hero-metrics-bar {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
    padding-top: var(--space-md);
}

.hero-metric-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.75rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.hero-metric-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.hero-metric-item strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Gaming Panel */
.gaming-panel {
    background: var(--bg-secondary);
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    padding: var(--space-md);
    background-image: linear-gradient(var(--bg-secondary), var(--bg-secondary)), var(--gradient-primary);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: var(--space-lg);
}

.window-controls {
    display: flex;
    gap: var(--space-sm);
}

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

.window-dot.red { background: #ef4444; }
.window-dot.yellow { background: #fbbf24; }
.window-dot.green { background: var(--electric-green); }

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.live-indicator::before {
    content: '●';
    color: var(--neon-pink);
    font-size: 0.625rem;
    animation: pulse 2s infinite;
}

.gaming-display {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-lg);
}

.game-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
        flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
}

.game-placeholder i {
    font-size: 4rem;
    color: var(--cyber-purple-light);
    opacity: 0.5;
}

.game-placeholder p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-muted);
}

.display-overlay {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    right: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--electric-green);
    text-transform: uppercase;
}

.active-users {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: rgba(168, 85, 247, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.5);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.gaming-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.stat-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    text-align: center;
}

.stat-card.red { border-color: rgba(239, 68, 68, 0.3); }
.stat-card.yellow { border-color: rgba(251, 191, 36, 0.3); }
.stat-card.green { border-color: rgba(16, 185, 129, 0.3); }

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.stat-card.red .stat-icon { color: #ef4444; }
.stat-card.yellow .stat-icon { color: #fbbf24; }
.stat-card.green .stat-icon { color: var(--electric-green); }

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Trust Section */
.trust-section {
    padding: var(--space-3xl) 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.trust-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-md);
        text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-base);
}

.trust-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-bright);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.15);
}

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

.trust-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto var(--space-sm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: var(--transition-base);
}

.trust-card:hover .trust-icon {
    transform: scale(1.1);
}

.trust-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--electric-green);
}

.trust-icon.purple {
    background: rgba(168, 85, 247, 0.1);
    color: var(--cyber-purple-light);
}

.trust-icon.blue {
    background: rgba(6, 182, 212, 0.1);
    color: var(--cyber-blue-light);
}

.trust-icon.yellow {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

.trust-icon.orange {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.trust-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.trust-card p {
    color: var(--text-secondary);
    margin-bottom: 2px;
    font-size: 0.8125rem;
}

.trust-detail {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   Resources Section (Support Page)
   ============================================ */
.resources-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3xl);
    margin-top: var(--space-2xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.resource-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at top,
        rgba(168, 85, 247, 0.05) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.resource-card-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.resource-card:hover .resource-card-top {
    transform: scaleX(1);
}

.resource-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2),
                0 8px 20px rgba(0, 0, 0, 0.4);
}

.resource-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-lg);
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.resource-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-xl);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.resource-card:hover .resource-icon {
    transform: scale(1.15) rotate(5deg);
    border-color: transparent;
}

.resource-card:hover .resource-icon::before {
    opacity: 1;
}

/* Custom Colored Icons for Resource Cards */
.resource-icon-faq {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(147, 51, 234, 0.15) 100%);
    color: #a855f7;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.3);
}

.resource-icon-faq::before {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.resource-card:hover .resource-icon-faq {
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.5);
}

.resource-icon-status {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.15) 100%);
    color: #10b981;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.resource-icon-status::before {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.resource-card:hover .resource-icon-status {
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.5);
}

.resource-icon-script {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.15) 100%);
    color: #3b82f6;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.resource-icon-script::before {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.resource-card:hover .resource-icon-script {
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.5);
}

.resource-card:hover .resource-icon i {
    animation: iconPulse 0.6s ease;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.resource-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.resource-card:hover h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.resource-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    font-size: 1rem;
    line-height: 1.8;
    flex-grow: 1;
    max-width: 90%;
}

.btn-resource {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-resource::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-resource:hover::before {
    left: 100%;
}

.btn-resource:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
}

.btn-resource span {
    flex-grow: 1;
}

.btn-resource .btn-arrow {
    font-size: 0.875rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-resource:hover .btn-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .resource-card {
        padding: var(--space-xl);
    }
    
    .resource-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.stat-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    min-width: 150px;
}

.stat-box i {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.stat-box .stat-value {
        font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-box .stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Detection Status */
.detection-status {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    border-top: 1px solid var(--border-subtle);
    display: flex;
        justify-content: center;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.detection-dot {
    width: 10px;
    height: 10px;
    background: var(--electric-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.detection-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.detection-value {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--electric-green);
}

.detection-detail {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Guarantee Section */
.guarantee-section {
    text-align: center;
}

.btn-guarantee {
    background: rgba(168, 85, 247, 0.2);
    color: white;
    padding: var(--space-lg) var(--space-3xl);
    font-size: 1rem;
    font-weight: 700;
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: var(--radius-lg);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--space-lg);
    transition: var(--transition-base);
    font-family: inherit;
}

.btn-guarantee:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--glow-purple);
}

.btn-guarantee i:last-child {
    color: var(--electric-green);
}

/* Featured Section */
.featured-section {
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.featured-section .container {
    position: relative;
    z-index: 1;
}

.products-page {
    padding-top: 5rem;
    min-height: 100vh;
}

.products-page .back-button {
    padding-top: 5rem;
    margin-bottom: var(--space-xl);
}

/* How It Works Section */
.how-it-works {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.process-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 220px;
}

.process-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-bright);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.process-top {
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Custom Colored Process Tops */
.process-top-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.process-top-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.process-top-pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.process-top-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.process-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.process-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(255, 255, 255, 0.3);
}

.process-content {
    padding: var(--space-lg);
    text-align: left;
}

.process-content h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.process-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.875rem;
}

.key-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.key-feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.key-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.key-feature-card:hover::before {
    transform: scaleX(1);
}

.key-feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-bright);
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.2);
}

.key-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.key-feature-card:hover .key-feature-icon {
    transform: scale(1.15) rotate(-5deg);
}

/* Custom Colored Key Feature Icons */
.key-icon-shield {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(147, 51, 234, 0.15) 100%);
    color: #a855f7;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3);
}

.key-feature-card:hover .key-icon-shield {
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.5);
}

.key-icon-download {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(8, 145, 178, 0.15) 100%);
    color: #06b6d4;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.key-feature-card:hover .key-icon-download {
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.5);
}

.key-icon-update {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.15) 100%);
    color: #fbbf24;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3);
}

.key-feature-card:hover .key-icon-update {
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.5);
}

.key-icon-support {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.15) 100%);
    color: #10b981;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.key-feature-card:hover .key-icon-support {
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
}

.key-feature-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

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

.bottom-stats {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.bottom-stat {
    text-align: center;
}

.bottom-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.bottom-stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.how-it-works-cta {
    text-align: center;
}

.how-it-works-cta h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: var(--space-xl);
}

/* Dominate CTA Section */
.dominate-cta-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
}

.dominate-cta-card {
    background: var(--bg-secondary);
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    background-image: linear-gradient(var(--bg-secondary), var(--bg-secondary)), var(--gradient-primary);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.3);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cyber-purple-light);
    margin-bottom: var(--space-xl);
}

.cta-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-lg);
}

.cta-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
    line-height: 1.7;
}

.cta-features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.cta-feature {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: var(--transition-base);
}

.cta-feature:hover {
    transform: translateY(-4px);
    border-color: var(--border-bright);
}

.cta-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-lg);
    background: rgba(168, 85, 247, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--cyber-purple-light);
}

.cta-feature h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

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

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* New Compact CTA Features */
.cta-badge-new {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(59, 130, 246, 0.15));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    margin-bottom: var(--space-xl);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.badge-emoji {
    font-size: 1.125rem;
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.6));
}

.cta-features-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature-compact {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(31, 41, 55, 0.6));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-feature-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), rgba(59, 130, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-feature-compact:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--cyber-purple);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.2), 0 0 20px rgba(168, 85, 247, 0.1);
}

.cta-feature-compact:hover::before {
    opacity: 1;
}

.cta-emoji-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.cta-feature-compact:hover .cta-emoji-icon {
    transform: scale(1.1) rotate(5deg);
}

.cta-emoji-icon.shield {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.15));
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-emoji-icon.rocket {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(147, 51, 234, 0.15));
    border: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-emoji-icon.support {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.15));
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-emoji-icon.star {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.15));
    border: 1px solid rgba(251, 191, 36, 0.3);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-emoji-icon span {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.cta-feature-content {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 1;
}

.cta-feature-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
    line-height: 1.3;
}

.cta-feature-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .cta-features-compact {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .cta-feature-compact {
        padding: var(--space-md);
    }
    
    .cta-emoji-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .cta-feature-content h4 {
        font-size: 0.9375rem;
    }
    
    .cta-feature-content p {
        font-size: 0.8125rem;
    }
}

/* Support Section */
/* ============================================
   Support Section (Improved Design)
   ============================================ */
.support-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
}

.support-section .back-button {
    padding-top: 5rem;
    margin-bottom: var(--space-xl);
}

/* Support Section - Improved Compact Design */
.support-section-improved {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
}

.section-badge-new {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(59, 130, 246, 0.15));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    margin-bottom: var(--space-md);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.support-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.support-card-compact {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(31, 41, 55, 0.7));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.support-card-compact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), rgba(59, 130, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.support-card-compact:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

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

.support-emoji-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--space-lg);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.support-card-compact:hover .support-emoji-icon {
    transform: scale(1.15) rotate(-5deg);
}

.support-emoji-icon span {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.discord-card {
    border-color: rgba(88, 101, 242, 0.3);
}

.discord-card:hover {
    border-color: rgba(88, 101, 242, 0.6);
    box-shadow: 0 12px 32px rgba(88, 101, 242, 0.3);
}

.discord-card .support-emoji-icon {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2), rgba(88, 101, 242, 0.15));
    border: 1px solid rgba(88, 101, 242, 0.4);
}

.ticket-card {
    border-color: rgba(168, 85, 247, 0.3);
}

.ticket-card:hover {
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.3);
}

.ticket-card .support-emoji-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(147, 51, 234, 0.15));
    border: 1px solid rgba(168, 85, 247, 0.4);
}

.email-card {
    border-color: rgba(59, 130, 246, 0.3);
}

.email-card:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.3);
}

.email-card .support-emoji-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.15));
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.support-card-content {
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.support-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

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

.support-card-btn {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    position: relative;
    z-index: 1;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-card-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

.discord-card .support-card-btn:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.5);
    color: #5865f2;
}

.ticket-card .support-card-btn:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.5);
    color: var(--cyber-purple-light);
}

.email-card .support-card-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    color: #3b82f6;
}

/* Resources Section - Compact Design */
.resources-section-improved {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
}

.resources-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.resource-card-compact {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(31, 41, 55, 0.6));
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.resource-card-compact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), rgba(59, 130, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.resource-card-compact:hover::before {
    opacity: 1;
}

.resource-emoji-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.resource-card-compact:hover .resource-emoji-icon {
    transform: scale(1.1) rotate(5deg);
}

.resource-emoji-icon span {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.faq-resource {
    border-color: rgba(236, 72, 153, 0.3);
}

.faq-resource:hover {
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.2);
}

.faq-resource .resource-emoji-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(219, 39, 119, 0.15));
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.status-resource {
    border-color: rgba(16, 185, 129, 0.3);
}

.status-resource:hover {
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.status-resource .resource-emoji-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.15));
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.script-resource {
    border-color: rgba(251, 191, 36, 0.3);
}

.script-resource:hover {
    border-color: rgba(251, 191, 36, 0.6);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.2);
}

.script-resource .resource-emoji-icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.15));
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.resource-content {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 1;
}

.resource-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.resource-content p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.resource-btn {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.resource-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.resource-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.resource-btn:hover i {
    transform: translateX(2px);
}

/* Support CTA Section */
.support-cta-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
}

.support-cta-card {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-3xl);
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(31, 41, 55, 0.9));
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.support-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.support-cta-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.support-cta-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.15));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--cyber-purple-light);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 24px rgba(168, 85, 247, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

.support-cta-card h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.support-cta-card p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.support-cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .support-grid-compact {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .support-card-compact {
        padding: var(--space-lg);
    }
    
    .support-emoji-icon {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }
    
    .resources-grid-compact {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .resource-card-compact {
        padding: var(--space-md);
    }
    
    .support-cta-card {
        padding: var(--space-2xl) var(--space-lg);
    }
    
    .support-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .support-cta-buttons .btn {
        width: 100%;
    }
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.support-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-card:hover::before {
    transform: scaleX(1);
}

.support-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(168, 85, 247, 0.08) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.support-card:hover {
    transform: translateY(-10px);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 24px 64px rgba(168, 85, 247, 0.25),
                0 12px 24px rgba(0, 0, 0, 0.5);
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-xl);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.support-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, currentColor, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

.support-card:hover .support-icon {
    transform: scale(1.15) rotate(-5deg);
}

.support-card:hover .support-icon i {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Custom Colored Icons for Support Cards */
.support-icon-discord {
    background: linear-gradient(135deg, rgba(114, 137, 218, 0.15) 0%, rgba(88, 101, 242, 0.15) 100%);
    color: #5865f2;
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.3);
}

.support-icon-discord:hover {
    box-shadow: 0 12px 32px rgba(88, 101, 242, 0.5);
}

.support-icon-ticket {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(8, 145, 178, 0.15) 100%);
    color: #06b6d4;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

.support-icon-ticket:hover {
    box-shadow: 0 12px 32px rgba(6, 182, 212, 0.5);
}

.support-icon-email {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(251, 146, 60, 0.15) 100%);
    color: #f97316;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.support-icon-email:hover {
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.5);
}

.support-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.support-card:hover h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    font-size: 0.9375rem;
    flex-grow: 1;
}

/* Support Buttons */
.btn-support {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-support:hover::before {
    left: 100%;
}

.btn-support span {
    flex-grow: 1;
}

.btn-support .btn-arrow {
    font-size: 0.875rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-support:hover .btn-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Discord Button */
.btn-support-discord {
    background: linear-gradient(135deg, rgba(114, 137, 218, 0.1) 0%, rgba(88, 101, 242, 0.1) 100%);
}

.btn-support-discord:hover {
    background: linear-gradient(135deg, rgba(114, 137, 218, 0.2) 0%, rgba(88, 101, 242, 0.2) 100%);
    border-color: #5865f2;
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.3);
    transform: translateY(-2px);
}

/* Ticket Button */
.btn-support-ticket {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(8, 145, 178, 0.1) 100%);
}

.btn-support-ticket:hover {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(8, 145, 178, 0.2) 100%);
    border-color: #06b6d4;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
    transform: translateY(-2px);
}

/* Email Button */
.btn-support-email {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(251, 146, 60, 0.1) 100%);
}

.btn-support-email:hover {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(251, 146, 60, 0.2) 100%);
    border-color: #f97316;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .support-card {
        padding: var(--space-xl);
    }
    
    .support-icon {
        width: 72px;
        height: 72px;
        font-size: 2rem;
    }
}

.view-all-section {
        text-align: center;
    margin-top: var(--space-3xl);
}

/* Product Category Tabs/Filters */
.product-tabs-filter {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.tab-filter {
    padding: var(--space-sm) var(--space-xl);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    font-family: inherit;
}

.tab-filter:hover {
    background: var(--bg-hover);
    border-color: var(--border-bright);
    transform: translateY(-1px);
}

.tab-filter.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    box-shadow: var(--glow-purple);
}

/* Testimonials Aware */
.testimonials-section-aware {
    padding: var(--space-3xl) 0;
}

.testimonial-large {
    background: var(--bg-secondary);
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    margin-bottom: var(--space-lg);
    position: relative;
    background-image: linear-gradient(var(--bg-secondary), var(--bg-secondary)), var(--gradient-primary);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.2);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 10;
}

.testimonial-nav:hover {
    background: var(--gradient-primary);
    border-color: transparent;
}

.testimonial-nav.prev {
    left: var(--space-lg);
}

.testimonial-nav.next {
    right: var(--space-lg);
}

.testimonial-content {
    display: none;
    grid-template-columns: 300px 1fr;
    gap: var(--space-3xl);
    align-items: center;
    animation: fadeInUp 0.5s ease-out;
}

.testimonial-content.active {
    display: grid;
}

.testimonial-user {
    text-align: center;
}

.user-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-lg);
}

.user-avatar img {
        width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--cyber-purple);
}

.verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: var(--electric-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    border: 3px solid var(--bg-secondary);
}

.user-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.user-handle {
    color: var(--cyber-purple-light);
    font-size: 0.9375rem;
    margin-bottom: var(--space-xs);
}

.user-location {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

.user-stats {
    display: flex;
        flex-direction: column;
    gap: var(--space-sm);
    font-size: 0.875rem;
}

.stat-green { color: var(--electric-green); }
.stat-pink { color: var(--neon-pink); }
.stat-purple { color: var(--cyber-purple-light); }

.testimonial-text {
    position: relative;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: var(--space-lg);
}

.quote-icon {
    position: absolute;
    top: -10px;
    right: 0;
    font-size: 3rem;
    color: var(--cyber-purple);
    opacity: 0.3;
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.testimonial-tags {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.testimonial-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--cyber-purple-light);
}

.testimonial-pagination {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--border-bright);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}

.dot.active {
    background: var(--cyber-purple);
    transform: scale(1.5);
}

.testimonial-footer {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.footer-badge i {
    color: var(--electric-green);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .gaming-panel {
        max-width: 600px;
    margin: 0 auto;
    }
    
    .hero-metrics-bar {
    justify-content: center;
    }
    
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .testimonial-nav {
        display: none;
    }
}

@media (max-width: 1200px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-metrics-bar {
        gap: var(--space-sm);
    }
    
    .hero-metric-item {
        font-size: 0.75rem;
    }
    
    .hero-buttons {
    flex-direction: column;
    }
    
    .hero-features {
    flex-direction: column;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .gaming-stats {
        grid-template-columns: 1fr;
    }
    
    .search-bar {
        display: none;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .key-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-features-row {
        grid-template-columns: 1fr;
    }
    }
    
@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .key-features-grid {
        grid-template-columns: 1fr;
    }
    
    .bottom-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .how-it-works-cta h3 {
        font-size: 1.5rem;
    }
    }
    
@media (max-width: 480px) {
    .bottom-stats {
        grid-template-columns: 1fr;
    }
}
