@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Rajdhani:wght@300;500;700&display=swap');

:root {
    --bg-dark: #050510;
    --bg-panel: #0a0a1f;
    --bg-card: rgba(16, 16, 46, 0.7);

    --neon-cyan: #00f3ff;
    --neon-purple: #bc13fe;
    --neon-green: #0aff0a;

    --text-main: #e0e0e0;
    --text-dim: #8a8ab5;

    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --neon-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

/* ========================================
   LIGHT MODE - Elegant Professional Theme
   ======================================== */
[data-theme="light"] {
    --bg-dark: #f8fafc;
    --bg-panel: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.95);

    --neon-cyan: #0891b2;
    --neon-purple: #7c3aed;
    --neon-green: #059669;

    --text-main: #1e293b;
    --text-dim: #64748b;

    --glass-border: 1px solid rgba(0, 0, 0, 0.08);
    --neon-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] body {
    background-color: #f1f5f9;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(8, 145, 178, 0.05) 0%, transparent 30%);
}

[data-theme="light"] .cyber-header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .hero h1 {
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .motto {
    background: rgba(124, 58, 237, 0.08);
    border-color: #7c3aed;
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.3);
}

[data-theme="light"] .section-title::after {
    background: linear-gradient(90deg, #0891b2, #06b6d4);
}

[data-theme="light"] .cyber-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .cyber-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(8, 145, 178, 0.3);
}

[data-theme="light"] .cyber-card::before {
    background: linear-gradient(90deg, transparent, #0891b2, transparent);
}

[data-theme="light"] .card-title {
    color: #1e293b;
}

[data-theme="light"] .price-row {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid transparent;
}

[data-theme="light"] .price-row:hover {
    background: rgba(8, 145, 178, 0.05);
}

[data-theme="light"] .price-row.selected {
    border-color: #7c3aed;
    background: rgba(124, 58, 237, 0.08);
}

[data-theme="light"] .cyber-btn {
    border-color: #0891b2;
    color: #0891b2;
    background: transparent;
}

[data-theme="light"] .cyber-btn:hover {
    background: #0891b2;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
}

[data-theme="light"] .sub-plan {
    border-color: #059669;
}

[data-theme="light"] .sub-btn {
    border-color: #059669;
    color: #059669;
}

[data-theme="light"] .sub-btn:hover {
    background: #059669;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

[data-theme="light"] .custom-banner {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(8, 145, 178, 0.06));
    border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .modal-overlay {
    background: rgba(15, 23, 42, 0.6);
}

[data-theme="light"] .modal-content {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .order-summary {
    background: rgba(8, 145, 178, 0.05);
    border: 1px solid rgba(8, 145, 178, 0.15);
}

[data-theme="light"] .order-form input {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #1e293b;
}

[data-theme="light"] .order-form input:focus {
    border-color: #0891b2;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

[data-theme="light"] .payment-option {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

[data-theme="light"] .payment-option:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

[data-theme="light"] .payment-details {
    background: #f8fafc;
    border-left: 3px solid #7c3aed;
}

[data-theme="light"] .order-notice {
    background: rgba(8, 145, 178, 0.05);
    border: 1px solid rgba(8, 145, 178, 0.12);
}

[data-theme="light"] .terms-checkbox {
    background: rgba(124, 58, 237, 0.05) !important;
    border: 1px solid rgba(124, 58, 237, 0.15) !important;
}

[data-theme="light"] .close-modal {
    color: #64748b;
}

[data-theme="light"] .close-modal:hover {
    color: #1e293b;
}

[data-theme="light"] .glow-text-cyan {
    color: #0891b2;
    text-shadow: none;
}

[data-theme="light"] .glow-text-purple {
    color: #7c3aed;
    text-shadow: none;
}

[data-theme="light"] .lang-btn {
    border: 1px solid #e2e8f0;
    color: #64748b;
}

[data-theme="light"] .lang-btn:hover {
    border-color: #0891b2;
    color: #0891b2;
}

[data-theme="light"] .lang-btn.active {
    background: #0891b2;
    border-color: #0891b2;
    color: #ffffff;
}

[data-theme="light"] .back-link {
    color: #64748b;
}

[data-theme="light"] .back-link:hover {
    color: #0891b2;
    text-shadow: none;
}

[data-theme="light"] footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] footer a {
    color: #64748b !important;
}

[data-theme="light"] footer a:hover {
    color: #0891b2 !important;
}

[data-theme="light"] .market-section {
    background: transparent !important;
}

[data-theme="light"] #section-subscriptions {
    background: rgba(5, 150, 105, 0.03) !important;
}

[data-theme="light"] .support-accordion {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .support-accordion summary {
    color: #1e293b;
}

[data-theme="light"] .accordion-content {
    background: #f8fafc;
}

[data-theme="light"] .screenshots-section {
    background: #f8fafc;
}

[data-theme="light"] .screenshot-thumb:hover {
    border-color: #0891b2;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.2);
}

[data-theme="light"] .lightbox-overlay {
    background: rgba(15, 23, 42, 0.9);
}

/* Details Modal Content - Light Mode (Enhanced) */
[data-theme="light"] #details-content {
    color: #1e293b;
}

[data-theme="light"] #details-content h2 {
    color: #1e293b;
}

[data-theme="light"] #details-content p {
    color: #475569;
}

[data-theme="light"] #details-content img {
    border-color: #0891b2 !important;
    box-shadow: 0 8px 30px rgba(8, 145, 178, 0.15) !important;
}

[data-theme="light"] #details-content div[style*="background"] {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

[data-theme="light"] #details-content h4 {
    color: #64748b;
}

[data-theme="light"] #detailsModal .modal-content {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #7c3aed;
    box-shadow: 0 25px 80px rgba(124, 58, 237, 0.15), 0 0 0 1px rgba(124, 58, 237, 0.1);
}

/* Dark theme for detailsModal (explicit) */
[data-theme="dark"] #detailsModal .modal-content,
:root:not([data-theme="light"]) #detailsModal .modal-content {
    background: #0a0a1f;
    border: 1px solid var(--neon-purple);
}

[data-theme="light"] #detailsModal .close-modal {
    color: #64748b;
    background: #f1f5f9;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="light"] #detailsModal .close-modal:hover {
    background: #e2e8f0;
    color: #1e293b;
}

/* ================================================
   HERO SECTION - Light Mode Premium Visual Effects
   ================================================ */
[data-theme="light"] .hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
}

/* Animated Mesh Gradient Background */
[data-theme="light"] .hero::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -50%;
    right: -50%;
    bottom: -100%;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(8, 145, 178, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(124, 58, 237, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 40% 80%, rgba(5, 150, 105, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 60% at 70% 20%, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
    animation: meshMove 25s ease-in-out infinite;
    z-index: 0;
}

/* Floating Orbs Effect */
[data-theme="light"] .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle 120px at 10% 20%, rgba(8, 145, 178, 0.2) 0%, transparent 100%),
        radial-gradient(circle 80px at 85% 30%, rgba(124, 58, 237, 0.2) 0%, transparent 100%),
        radial-gradient(circle 60px at 70% 80%, rgba(5, 150, 105, 0.15) 0%, transparent 100%),
        radial-gradient(circle 100px at 25% 70%, rgba(249, 115, 22, 0.12) 0%, transparent 100%),
        radial-gradient(circle 40px at 50% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 100%);
    animation: orbsFloat 15s ease-in-out infinite;
    z-index: 0;
}

/* Grid Pattern Overlay */
[data-theme="light"] .hero .container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background-image:
        linear-gradient(rgba(8, 145, 178, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 145, 178, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridPulse 10s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

[data-theme="light"] .hero .container {
    position: relative;
    z-index: 1;
}

/* Shimmer Line Effect */
[data-theme="light"] .hero h1::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: titleShimmer 4s ease-in-out infinite;
}

[data-theme="light"] .hero h1 {
    position: relative;
    overflow: hidden;
}

@keyframes meshMove {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(3%, 2%) scale(1.02);
    }

    50% {
        transform: translate(-2%, 3%) scale(0.98);
    }

    75% {
        transform: translate(2%, -2%) scale(1.01);
    }
}

@keyframes orbsFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }

    25% {
        transform: translateY(-15px) rotate(2deg);
        opacity: 1;
    }

    50% {
        transform: translateY(10px) rotate(-1deg);
        opacity: 0.9;
    }

    75% {
        transform: translateY(-8px) rotate(1deg);
        opacity: 1;
    }
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

@keyframes titleShimmer {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 150%;
    }
}

[data-theme="light"] ::-webkit-scrollbar-track {
    background: #f1f5f9;
}

[data-theme="light"] ::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border: 1px solid #94a3b8;
}

/* Theme Toggle Button */
.theme-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-dim);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.theme-toggle:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    transform: rotate(15deg);
}

[data-theme="light"] .theme-toggle {
    border: 1px solid #e2e8f0;
    color: #64748b;
}

[data-theme="light"] .theme-toggle:hover {
    border-color: #0891b2;
    color: #0891b2;
    background: rgba(8, 145, 178, 0.05);
}

/* Anti-bot honeypot - completely hidden from users */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

/* Purple glow text for order ID */
.glow-text-purple {
    color: var(--neon-purple);
    text-shadow: 0 0 8px var(--neon-purple), 0 0 15px rgba(188, 19, 254, 0.5);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(188, 19, 254, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 243, 255, 0.1) 0%, transparent 20%);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-panel);
    border: 1px solid var(--neon-cyan);
    border-radius: 4px;
}

/* Typography & Effects */
h1,
h2,
h3,
h4,
.cyber-font {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.glow-text-cyan {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.glow-text-purple {
    color: var(--neon-purple);
    text-shadow: 0 0 10px rgba(188, 19, 254, 0.5);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.cyber-header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 16, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
}

.back-link {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.back-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan);
}

/* Language Selector */
#lang-selector {
    display: flex;
    gap: 5px;
    margin-right: 20px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-dim);
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    border-radius: 4px;
    font-family: inherit;
}

.lang-btn:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

.lang-btn.active {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    color: #000;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, #888);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.motto {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-top: 10px;
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--neon-purple);
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.3);
    background: rgba(188, 19, 254, 0.1);
    border-radius: 4px;
}

/* Sections */
.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.market-section {
    padding: 80px 0;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cyber-card {
    background: var(--bg-card);
    border: var(--glass-border);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.cyber-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.cyber-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 243, 255, 0.3);
}

.cyber-card:hover::before {
    transform: translateX(100%);
}

/* Sold Product Styles */
.cyber-card.sold-product {
    opacity: 0.7;
    filter: grayscale(30%);
}

.cyber-card.sold-product:hover {
    transform: none;
    box-shadow: none;
}

.sold-stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: rgba(220, 38, 38, 0.95);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 25px;
    border: 3px solid #fff;
    border-radius: 8px;
    box-shadow:
        0 0 0 4px rgba(220, 38, 38, 0.95),
        0 0 30px rgba(220, 38, 38, 0.5),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
    white-space: nowrap;
    animation: stampAppear 0.5s ease-out;
}

@keyframes stampAppear {
    0% {
        transform: translate(-50%, -50%) rotate(-15deg) scale(2);
        opacity: 0;
    }

    50% {
        transform: translate(-50%, -50%) rotate(-15deg) scale(0.9);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-15deg) scale(1);
        opacity: 1;
    }
}

.sold-prices .price-row {
    opacity: 0.5;
    pointer-events: none;
    text-decoration: line-through;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--neon-cyan);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.card-desc {
    color: var(--text-dim);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Pricing Options */
.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.2s;
}

.price-row:hover {
    background: rgba(255, 255, 255, 0.06);
}

.price-row.selected {
    border-color: var(--neon-purple);
    background: rgba(188, 19, 254, 0.1);
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-main);
}

.price-value {
    font-weight: 700;
    color: var(--neon-cyan);
    font-family: 'Orbitron', monospace;
}

/* Buttons */
.cyber-btn {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    letter-spacing: 1px;
}

.cyber-btn:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

/* Subscription Specific */
.sub-plan {
    border-color: var(--neon-green);
}

.sub-plan .card-icon {
    color: var(--neon-green);
}

.sub-plan .section-title::after {
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

.sub-btn {
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.sub-btn:hover {
    background: var(--neon-green);
    box-shadow: 0 0 20px rgba(10, 255, 10, 0.4);
}

/* Banner - Enhanced Premium Animations */
.custom-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 70px 50px;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin: 80px auto;
    max-width: 900px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.2);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

/* Animated Gradient Mesh Background */
.custom-banner::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    right: -100%;
    bottom: -100%;
    background:
        radial-gradient(ellipse 80% 60% at 30% 40%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 70% 60%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 50% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    animation: ctaMeshMove 20s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

/* Floating Particles Effect */
.custom-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle 3px at 15% 25%, rgba(6, 182, 212, 0.6) 0%, transparent 100%),
        radial-gradient(circle 2px at 85% 35%, rgba(139, 92, 246, 0.5) 0%, transparent 100%),
        radial-gradient(circle 4px at 25% 75%, rgba(16, 185, 129, 0.4) 0%, transparent 100%),
        radial-gradient(circle 2px at 75% 85%, rgba(6, 182, 212, 0.5) 0%, transparent 100%),
        radial-gradient(circle 3px at 50% 50%, rgba(139, 92, 246, 0.4) 0%, transparent 100%),
        radial-gradient(circle 2px at 90% 15%, rgba(16, 185, 129, 0.5) 0%, transparent 100%),
        radial-gradient(circle 3px at 10% 90%, rgba(6, 182, 212, 0.4) 0%, transparent 100%);
    animation: ctaParticlesFloat 15s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.custom-banner .cta-content {
    position: relative;
    z-index: 2;
}

.custom-banner .cta-content::before {
    content: '';
    position: absolute;
    top: -200%;
    left: -200%;
    right: -200%;
    bottom: -200%;
    background-image:
        linear-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: ctaGridPulse 8s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

.custom-banner h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ctaTitleGlow 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
}

.custom-banner h2::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: ctaTitleShimmer 4s ease-in-out infinite;
}

.custom-banner p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    font-size: 1.15rem;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

.custom-banner .corner-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(6, 182, 212, 0.3);
    z-index: 1;
    animation: ctaCornerPulse 3s ease-in-out infinite;
}

.custom-banner .corner-decoration.top-left {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
    border-radius: 12px 0 0 0;
}

.custom-banner .corner-decoration.bottom-right {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 12px 0;
    animation-delay: 1.5s;
}

/* Base keyframes for premium animations if not already defined */
@keyframes ctaMeshMove {

    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    25% {
        transform: translate(4%, 3%) scale(1.05) rotate(1deg);
    }

    50% {
        transform: translate(-3%, 4%) scale(0.95) rotate(-1deg);
    }

    75% {
        transform: translate(3%, -3%) scale(1.02) rotate(0.5deg);
    }
}

@keyframes ctaParticlesFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 1;
    }

    50% {
        transform: translateY(15px) rotate(180deg);
        opacity: 0.7;
    }

    75% {
        transform: translateY(-10px) rotate(270deg);
        opacity: 1;
    }
}

@keyframes ctaGridPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes ctaTitleGlow {

    0%,
    100% {
        text-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
    }

    50% {
        text-shadow: 0 0 50px rgba(6, 182, 212, 0.6), 0 0 80px rgba(139, 92, 246, 0.3);
    }
}

@keyframes ctaTitleShimmer {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 150%;
    }
}

@keyframes ctaCornerPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

[data-theme="light"] .custom-banner {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    color: #1e293b;
    border: 1px solid rgba(8, 145, 178, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .custom-banner h2 {
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

[data-theme="light"] .custom-banner p {
    color: #475569;
}

[data-theme="light"] .custom-banner .corner-decoration {
    border-color: rgba(8, 145, 178, 0.4);
}

[data-theme="light"] .custom-banner::before {
    background:
        radial-gradient(ellipse 80% 60% at 30% 40%, rgba(8, 145, 178, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 70% 60%, rgba(124, 58, 237, 0.06) 0%, transparent 60%);
}

[data-theme="light"] .custom-banner::after {
    background-image:
        radial-gradient(circle 3px at 15% 25%, rgba(8, 145, 178, 0.4) 0%, transparent 100%),
        radial-gradient(circle 2px at 85% 35%, rgba(124, 58, 237, 0.3) 0%, transparent 100%);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: var(--bg-panel);
    border: 1px solid var(--neon-cyan);
    padding: 40px;
    max-width: 550px;
    width: 90%;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.2);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Order Form Styles */
.order-summary {
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.order-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

.order-form .form-group {
    margin-bottom: 15px;
    text-align: left;
}

.order-form label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.order-form input {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
}

.order-form input:focus {
    border-color: var(--neon-cyan);
    outline: none;
}

.payment-section {
    margin: 20px 0;
    text-align: left;
}

.payment-options {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.payment-option {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.payment-option:hover {
    background: rgba(255, 255, 255, 0.08);
}

.payment-option input[type="radio"] {
    width: auto;
    accent-color: var(--neon-cyan);
}

.payment-option .radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
}

.payment-details {
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--neon-purple);
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
    text-align: left;
}

.order-notice {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.15);
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
    text-align: left;
}

.order-notice p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin: 0;
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.form-actions .cyber-btn {
    flex: 1;
}

.cancel-btn {
    border-color: #666;
    color: #888;
}

.cancel-btn:hover {
    background: #333;
    color: #fff;
}

.submit-btn {
    background: rgba(0, 243, 255, 0.1);
}

/* Screenshot Gallery in Details Modal */
.screenshots-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.screenshot-thumb {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.screenshot-thumb:hover {
    border-color: var(--neon-cyan);
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

/* Screenshot Lightbox */
.screenshot-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 1;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.3);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    padding: 0 10px;
}

.lightbox-close:hover {
    color: var(--neon-cyan);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 243, 255, 0.2);
    border: 1px solid var(--neon-cyan);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
}

.lightbox-nav:hover {
    background: rgba(0, 243, 255, 0.4);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-dim);
    font-size: 14px;
    font-family: 'Orbitron', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .payment-options {
        flex-direction: column;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

/* ========================================
   ENHANCED ACCORDION STYLES (ADDED V2.2)
   ======================================== */
.accordion-item {
    background: var(--bg-card);
    border: var(--glass-border);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-main);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    transition: background 0.3s;
    outline: none;
}

.accordion-header:hover {
    background: rgba(124, 58, 237, 0.05);
}

[data-theme='light'] .accordion-header:hover {
    background: rgba(0, 0, 0, 0.02);
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.arrow-icon {
    font-size: 1rem;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: var(--text-dim);
    flex-shrink: 0;
}

.accordion-item.active {
    border-color: var(--neon-purple);
    box-shadow: 0 4px 20px rgba(188, 19, 254, 0.15);
}

.accordion-item.active .arrow-icon {
    transform: rotate(180deg);
    color: var(--neon-purple);
}

.accordion-item.active .accordion-header {
    background: rgba(188, 19, 254, 0.05);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background: rgba(0, 0, 0, 0.2);
}

[data-theme='light'] .accordion-body {
    background: #f8fafc;
}

.accordion-content-inner {
    padding: 30px;
    color: var(--text-dim);
    line-height: 1.8;
    font-size: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme='light'] .accordion-content-inner {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #475569;
}

@media (max-width: 768px) {
    .accordion-header {
        padding: 18px 20px;
        font-size: 1.1rem;
    }

    .accordion-content-inner {
        padding: 20px;
        font-size: 1rem;
    }
}

/* ========================================
   PROMO BADGE - Animated Ribbon
   ======================================== */
.cyber-card.has-promo {
    overflow: visible;
    border-color: rgba(255, 100, 0, 0.4);
}

.promo-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ff4500);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 6px;
    box-shadow:
        0 4px 15px rgba(255, 107, 53, 0.5),
        0 0 20px rgba(247, 147, 30, 0.3);
    z-index: 10;
    animation: promoPulse 2s ease-in-out infinite;
    white-space: nowrap;
}

.promo-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    /*animation: promoShimmer 3s ease-in-out infinite;*/
}

@keyframes promoPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.7);
    }
}

@keyframes promoShimmer {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 150%;
    }
}

[data-theme="light"] .promo-badge {
    box-shadow:
        0 4px 15px rgba(255, 107, 53, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .cyber-card.has-promo {
    border-color: rgba(255, 100, 0, 0.3);
}

@media (max-width: 480px) {
    .promo-badge {
        font-size: 0.6rem;
        padding: 6px 12px;
        top: -6px;
        right: -6px;
    }
}

/* ========================================
   PROMO INFO BLOCK - Old Price & Countdown
   ======================================== */
.promo-info-block {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 69, 0, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 8px;
    padding: 12px 15px;
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.promo-old-price {
    font-size: 1.1rem;
    color: #888;
    text-decoration: line-through;
    text-decoration-color: #ff4444;
    text-decoration-thickness: 2px;
    font-weight: 500;
}

.promo-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: #ff6b35;
}

.promo-countdown i {
    animation: clockPulse 1s ease-in-out infinite;
}

.countdown-value {
    font-weight: 700;
    letter-spacing: 1px;
}

@keyframes clockPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Light Mode */
[data-theme="light"] .promo-info-block {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 0, 0.08));
    border-color: rgba(255, 107, 53, 0.3);
}

[data-theme="light"] .promo-old-price {
    color: #666;
}

[data-theme="light"] .promo-countdown {
    color: #e65100;
}

@media (max-width: 480px) {
    .promo-info-block {
        padding: 10px 12px;
    }

    .promo-countdown {
        font-size: 0.8rem;
    }
}