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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #100114, #0a0a0f, #0f0a1a, #0a0a0f);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: white;
    overflow-x: hidden;
}

/* Inter for logo - clean and minimalistic */
.logo {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Chivo for main titles and big headings */
.hero-title, .hero-subtitle, .error-title, .legal-title {
    font-family: 'Chivo', 'Syne', 'Inter', sans-serif !important;
    font-weight: 700;
}

/* Syne font for smaller titles and headings */
.nav-item, .section-title, .feature-title, .product-card h3, .featured-card-title, .faq-question, .legal-section h2, .legal-section h3,
.cta-button, .view-all-btn, .error-btn, .product-title, .product-price,
.console-title, .terminal-prompt, .command-output, .success-text, .info-tag, .path, .number,
.feature-emoji, .feature-description, .faq-answer, .legal-content h2, .legal-content h3,
.hero-cta, .product-grid h2, .support-title, .support-subtitle, .contact-title, .contact-subtitle,
.purchase-button, .sellauth-button, .feature-toggle-btn {
    font-family: 'Syne', 'Inter', sans-serif !important;
    font-weight: 600;
}

/* Test: Make navigation items more obvious to see if font is working */
.nav-item {
    font-family: 'Syne', 'Inter', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
}

/* Specific weight adjustments for different elements */
.hero-title, .error-title, .legal-title {
    font-weight: 700;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-weight: 400;
    letter-spacing: -0.005em;
}

.support-subtitle, .contact-subtitle {
    font-weight: 500;
}

.cta-button, .view-all-btn, .error-btn {
    font-weight: 600;
}

.console-title, .terminal-prompt {
    font-weight: 600;
}

.product-title, .product-price {
    font-weight: 600;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Section fade-in animations */
.section-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Staggered fade-in for grid items */
.grid-item-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

/* Delay classes for staggered animations */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

.delay-600 {
    transition-delay: 0.6s;
}

/* Enhanced title fade-in */
.title-fade-in {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 1s ease-out;
}

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

/* FAQ items fade-in */
.faq-fade-in {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.7s ease-out;
}

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

/* Support cards fade-in */
.support-card-fade {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.8s ease-out;
}

    .support-card-fade.visible {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

/* Smooth content transitions */
#content-area {
    min-height: 100vh;
    transition: opacity 0.3s ease-out;
}

.content-transitioning {
    opacity: 0.3;
    pointer-events: none;
}

/* Enhanced scroll reveal for all sections */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

    .scroll-reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }

/* Subtle matrix-style code rain */
.code-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.03;
}

.code-column {
    position: absolute;
    top: -100%;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #a855f7;
    animation: codeRain 15s linear infinite;
}

@keyframes codeRain {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

/* Cleaner particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 12s ease-in-out infinite;
}

    .particle.small {
        width: 2px;
        height: 2px;
        background: white;
    }

    .particle.medium {
        width: 4px;
        height: 4px;
        background: #a855f7;
    }

    .particle.large {
        width: 6px;
        height: 6px;
        background: linear-gradient(45deg, #a855f7, white);
    }

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.2;
    }

    25% {
        transform: translateY(-20px) translateX(5px) rotate(90deg);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-40px) translateX(-5px) rotate(180deg);
        opacity: 0.3;
    }

    75% {
        transform: translateY(-20px) translateX(10px) rotate(270deg);
        opacity: 0.4;
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(15, 10, 26, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

    nav.scrolled {
        background: rgba(15, 10, 26, 0.98);
        box-shadow: 0 5px 30px rgba(168, 85, 247, 0.1);
    }

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 2.2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #a855f7, white, #c084fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
    animation: logoGlow 3s ease-in-out infinite;
    cursor: pointer;
}

@keyframes logoGlow {
    0%, 100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.2) drop-shadow(0 0 15px rgba(168, 85, 247, 0.6));
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

    .nav-links a {
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

        .nav-links a:hover {
            color: #a855f7;
            transform: translateY(-3px);
            text-shadow: 0 5px 15px rgba(168, 85, 247, 0.5);
        }

        .nav-links a.active {
            color: #a855f7;
            background: rgba(168, 85, 247, 0.1);
            border-radius: 8px;
            padding: 0.5rem 1rem;
            text-shadow: 0 5px 15px rgba(168, 85, 247, 0.5);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(45deg, #a855f7, white);
            transition: width 0.3s ease;
            border-radius: 2px;
        }

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

/* Sections */
section {
    min-height: 100vh;
    padding: 120px 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Main Section Enhanced */
.main {
    display: flex;
    align-items: center;
    gap: 5rem;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    animation: slideInLeft 1.2s ease-out;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.main h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #a855f7, white, #c084fc, white);
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textFlow 4s ease-in-out infinite;
    text-shadow: 0 0 50px rgba(168, 85, 247, 0.3);
    line-height: 1.1;
}

@keyframes textFlow {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.main .subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #e2e8f0;
    opacity: 0.9;
}

.main .description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    background: linear-gradient(45deg, #a855f7, #8b5cf6, #a855f7);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

    .cta-button::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;
    }

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

    .cta-button:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 40px rgba(168, 85, 247, 0.4);
    }

.cta-secondary {
    background: transparent;
    border: 2px solid #a855f7;
    color: #a855f7;
}

    .cta-secondary:hover {
        background: #a855f7;
        color: white;
    }

/* Feature Points Container */
.features-container {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 1.2s ease-out;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Individual Feature Points */
.feature-point {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    width: 220px;
    transition: all 0.4s ease;
    animation: floatFeature 6s ease-in-out infinite;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 25px rgba(255, 255, 255, 0.05);
}

    .feature-point:hover {
        transform: translateY(-10px) scale(1.05);
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 255, 255, 0.15);
        background: rgba(255, 255, 255, 0.12);
        transition: all 0.4s ease !important;
    }

    .feature-point:nth-child(1) {
        top: 50px;
        left: 50px;
        animation-delay: 0s;
    }

    .feature-point:nth-child(2) {
        top: 200px;
        right: 20px;
        animation-delay: 1s;
    }

    .feature-point:nth-child(3) {
        bottom: 80px;
        left: 80px;
        animation-delay: 1.8s;
    }

@keyframes floatFeature {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(1deg);
    }

    50% {
        transform: translateY(-30px) rotate(0deg);
    }

    75% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

.feature-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    animation: emojiGlow 3s ease-in-out infinite;
}

@keyframes emojiGlow {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 10px rgba(168, 85, 247, 0.3));
    }

    50% {
        filter: brightness(1.2) drop-shadow(0 0 20px rgba(168, 85, 247, 0.6));
    }
}

.feature-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #a855f7, white);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-description {
    font-size: 0.9rem;
    color: #cbd5e1;
    opacity: 0.8;
    line-height: 1.4;
}

/* Scrolling Effects */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
    opacity: 0.7;
}

    .scroll-indicator::after {
        content: '▼';
        display: block;
        font-size: 1.5rem;
        color: #a855f7;
        margin-top: 0.5rem;
    }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Enhanced sections with glassmorphism */
.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #a855f7, white, #c084fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
}

.glassmorphism {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Enhanced product cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    background: rgba(168, 85, 247, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 0;
    border: 1px solid rgba(168, 85, 247, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
        transition: left 0.6s;
    }

    .product-card:hover::before {
        left: 100%;
    }

    .product-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 60px rgba(168, 85, 247, 0.3), 0 0 50px rgba(168, 85, 247, 0.2);
        border-color: rgba(168, 85, 247, 0.5);
        background: rgba(168, 85, 247, 0.25);
    }

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.product-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(168, 85, 247, 0.3);
}

.product-content {
    padding: 2rem;
}

.product-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #a855f7, white);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-card p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #a855f7;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

/* Product Modal Styles */
.product-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    padding: 3rem;
    width: 90%;
    max-width: 600px;
    border-radius: 25px;
    max-height: 80vh;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 20px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

    .close-modal:hover {
        color: #a855f7;
    }

.subscription-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.subscription-option {
    background: rgba(168, 85, 247, 0.1);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

    .subscription-option:hover {
        border-color: #a855f7;
        background: rgba(168, 85, 247, 0.15);
    }

    .subscription-option.selected {
        border-color: #a855f7;
        background: rgba(168, 85, 247, 0.2);
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    }

    .subscription-option input[type="radio"] {
        position: absolute;
        opacity: 0;
    }

.subscription-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.subscription-price {
    font-size: 1.5rem;
    color: #a855f7;
    font-weight: bold;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

    .features-list li {
        color: #e2e8f0;
        margin: 0.8rem 0;
        padding-left: 2rem;
        position: relative;
        line-height: 1.4;
    }

        .features-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #a855f7;
            font-weight: bold;
            font-size: 1.1rem;
            width: 1.5rem;
            text-align: center;
        }

.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0;
    color: #e2e8f0;
}

    .terms-checkbox input[type="checkbox"] {
        width: 18px;
        height: 18px;
        cursor: pointer;
    }

.purchase-button {
    width: 100%;
    background: linear-gradient(45deg, #6b7280, #4b5563);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: not-allowed;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
}

    .purchase-button.enabled {
        background: linear-gradient(45deg, #a855f7, #8b5cf6, #a855f7);
        cursor: pointer;
        opacity: 1;
    }

        .purchase-button.enabled:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(168, 85, 247, 0.4);
        }

/* Feature Toggle Button */
.feature-toggle-container {
    margin: 1.5rem 0;
    text-align: center;
}

.feature-toggle-btn {
    background: transparent;
    border: 2px solid rgba(168, 85, 247, 0.5);
    color: #a855f7;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

    .feature-toggle-btn::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;
    }

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

    .feature-toggle-btn:hover {
        border-color: #a855f7;
        background: rgba(168, 85, 247, 0.1);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(168, 85, 247, 0.2);
    }

    .feature-toggle-btn.expanded {
        background: rgba(168, 85, 247, 0.15);
        border-color: #a855f7;
    }

.toggle-icon {
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.feature-toggle-btn:hover .toggle-icon {
    transform: scale(1.2);
}

/* Full Features List */
.full-features-list {
    background: rgba(168, 85, 247, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(168, 85, 247, 0.2);
    margin-top: 1rem;
}

    .full-features-list li {
        padding: 0.5rem 0;
        padding-left: 2rem;
        border-bottom: 1px solid rgba(168, 85, 247, 0.1);
        position: relative;
        line-height: 1.4;
    }

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

        .full-features-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #a855f7;
            font-weight: bold;
            font-size: 1.1rem;
            width: 1.5rem;
            text-align: center;
        }

/* Feature list animations */
@keyframes fadeInFeatures {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced DMA Terminal Styles */
.console-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(10, 10, 15, 0.98), rgba(15, 15, 20, 0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    font-family: 'Courier New', monospace;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(50, 50, 50, 0.2);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

    .console-container::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: #222222;
        border-radius: 20px;
        z-index: -1;
    }

@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
        filter: brightness(1);
    }

    50% {
        background-position: 100% 50%;
        filter: brightness(1.3);
    }
}

.console-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.terminal-header {
    background: linear-gradient(135deg, rgba(40, 40, 45, 1), rgba(50, 50, 55, 1));
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(100, 100, 100, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

    .terminal-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, #666666, transparent);
        opacity: 0.5;
    }

.console-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.control {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border: none;
    outline: none;
}

    .control:hover {
        transform: scale(1.1);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
    }

.minimize {
    background: linear-gradient(135deg, #ffbd44, #f39c12);
}

.maximize {
    background: linear-gradient(135deg, #00ca56, #27ae60);
}

.close {
    background: linear-gradient(135deg, #ff605c, #e74c3c);
}

.terminal-title {
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.console-body {
    padding: 16px;
    height: 400px;
    overflow-y: auto;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Consolas', 'Monaco', monospace;
}

/* Legal Pages Styles */
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.legal-title {
    text-align: center;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.last-updated {
    color: #94a3b8;
    font-style: italic;
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.legal-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
}

.legal-section:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(168, 85, 247, 0.2);
}

.legal-section:first-child {
    border-radius: 12px 12px 12px 12px;
    margin-top: 0;
}

.legal-section h2 {
    color: #a855f7;
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    color: #a855f7;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.legal-section p {
    color: #e2e8f0;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-section ul {
    color: #cbd5e1;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-section li::marker {
    color: #a855f7;
}

/* 404 Error Page Styles */
.error-section {
    padding: 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(168, 85, 247, 0.1);
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.error-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.error-message {
    color: #cbd5e1;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-btn {
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.error-btn:hover {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.4);
}

/* Order Verification Modal Styles */
.verification-content {
    text-align: center;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.verification-content h2 {
    color: #a855f7;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.verification-content p {
    color: #e2e8f0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.verification-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.order-input {
    padding: 1rem;
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.8);
    color: #e2e8f0;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.order-input:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    background: rgba(15, 23, 42, 0.9);
}

.order-input::placeholder {
    color: #64748b;
}

.verify-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #a855f7, #9333ea);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.verify-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
    background: linear-gradient(135deg, #9333ea, #a855f7);
}

.verify-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.verification-status {
    margin: 1.5rem 0;
    min-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.verification-info {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

.verification-info p {
    color: #a855f7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.verification-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.verification-info li {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.verification-info li:before {
    content: "•";
    color: #a855f7;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Documentation Content Styles */
.documentation-content {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.documentation-content h2 {
    color: #a855f7;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.doc-section {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.doc-section h3 {
    color: #a855f7;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.doc-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doc-section li {
    color: #e2e8f0;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.doc-section li:before {
    content: "✓";
    color: #10b981;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.docs-footer {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.docs-footer p {
    color: #cbd5e1;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.docs-footer p:last-child {
    margin-bottom: 0;
}

/* Download Links Styles */
.download-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.download-btn {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, #a855f7, #9333ea);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.3);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
    background: linear-gradient(135deg, #9333ea, #a855f7);
    color: white;
    text-decoration: none;
}

.download-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(168, 85, 247, 0.3);
}

/* SMS Instructions Styles */
.sms-instructions {
    background: rgba(168, 85, 247, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    margin: 1rem 0;
}

.sms-instructions h4 {
    color: #a855f7;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.sms-instructions ol {
    color: #e2e8f0;
    line-height: 1.6;
    margin-left: 1.5rem;
}

.sms-instructions li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

.sms-instructions code {
    background: rgba(168, 85, 247, 0.2);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

/* Account Instructions Styles */
.account-instructions {
    background: rgba(168, 85, 247, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    margin: 1rem 0;
}

.account-instructions h4 {
    color: #a855f7;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.account-instructions ol {
    color: #e2e8f0;
    line-height: 1.6;
    margin-left: 1.5rem;
}

.account-instructions li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.warning-box p {
    color: #fca5a5;
    margin: 0;
    font-weight: 500;
}

.info-box {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.info-box p {
    color: #93c5fd;
    margin: 0;
    font-weight: 500;
}

/* Mobile Specific Styles */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    nav {
        padding: 1rem;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(15, 10, 26, 0.95);
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 100%;
        margin: 0;
    }

    .nav-links {
        display: flex;
    }

    .logo {
        font-size: 1.8rem;
        z-index: 1001;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
        z-index: 1001;
    }

    .hamburger-menu .bar {
        width: 25px;
        height: 3px;
        background-color: white;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    section {
        padding: 100px 1rem 1rem;
    }

    .main {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding-top: 80px;
    }

    .main-content {
        animation: none;
    }

    .main h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .main .subtitle {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .main .description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .features-container {
        height: auto;
        position: static;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
        animation: none;
        padding: 0 1rem;
    }

    .feature-point {
        position: static;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        padding: 1.5rem 1.2rem;
        animation: none;
        transform: none !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 15px rgba(255, 255, 255, 0.05);
        border-radius: 15px;
    }

    .feature-point:hover {
        transform: translateY(-5px) scale(1.02) !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 25px rgba(255, 255, 255, 0.1);
    }

        .feature-point:nth-child(1),
        .feature-point:nth-child(2),
        .feature-point:nth-child(3) {
            top: auto;
            left: auto;
            right: auto;
            bottom: auto;
            animation-delay: 0s;
        }

    .scroll-indicator {
        display: none;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .product-card {
        max-width: 100%;
        margin: 0 auto;
        border-radius: 15px;
    }

    .product-content {
        padding: 1.5rem;
    }

    .product-card h3 {
        font-size: 1.3rem;
    }

    .product-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .featured-products {
        padding: 40px 1rem 60px;
    }

    .featured-products-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .featured-card {
        border-radius: 15px;
    }

    .featured-card-image {
        height: 180px;
    }

    .featured-card-content {
        padding: 1.5rem;
    }

    .featured-card-title {
        font-size: 1.3rem;
    }

    .featured-card-description {
        font-size: 0.9rem;
    }

    .featured-card-price {
        font-size: 1.2rem;
    }

    .featured-card-link {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .view-all-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .console-container {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(168, 85, 247, 0.3);
        margin: 0 1rem;
        border-radius: 15px;
    }

    .terminal-header {
        padding: 10px 12px;
    }

    .terminal-title {
        font-size: 1rem;
    }

    .console-body {
        height: 300px;
        font-size: 12px;
        padding: 12px;
    }

    .terminal-input-section {
        padding: 10px 12px;
    }

    .terminal-input {
        font-size: 12px;
        padding: 6px 10px;
    }

    .execute-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .modal-content {
        width: 95%;
        margin: 2% auto;
        padding: 2rem;
        max-height: 95vh;
    }

    .close-modal {
        font-size: 30px;
        right: 15px;
        top: 15px;
    }

    .subscription-option {
        padding: 1rem;
    }

    .subscription-title {
        font-size: 1rem;
    }

    .subscription-price {
        font-size: 1.3rem;
    }

    .features-list li {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }

        .features-list li::before {
            font-size: 1rem;
            width: 1.2rem;
        }

    .purchase-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .feature-toggle-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }

    .full-features-list {
        padding: 1rem;
    }

        .full-features-list li {
            padding: 0.4rem 0;
            padding-left: 1.5rem;
        }

            .full-features-list li::before {
                font-size: 1rem;
                width: 1.2rem;
            }

    .product-image-gallery h3 {
        font-size: 1.2rem;
    }

    .image-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .gallery-image-container img {
        height: 80px;
    }

    .image-modal img, .image-modal video {
        max-width: 95%;
        max-height: 95%;
    }

    /* Footer Mobile Responsive */
    #main-footer {
        padding: 2rem 1rem 1rem;
        margin-top: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links,
    .footer-links {
        align-items: center;
    }
    
    .social-link,
    .footer-link {
        max-width: 250px;
        width: 100%;
        justify-content: center;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
    }

    /* Legal Pages Mobile Responsive */
    .legal-content {
        padding: 0 0.5rem;
    }
    
    .legal-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .legal-section p {
        font-size: 0.95rem;
    }
    
    .last-updated {
        margin-bottom: 1.5rem;
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* Hamburger menu for mobile */
.hamburger-menu {
    display: none;
}

/* Hide social mobile buttons on desktop */
.social-mobile-buttons {
    display: none;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(15, 10, 26, 0.98), rgba(30, 20, 40, 0.98));
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0.3rem;
        padding: 2rem 0 1rem 0;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 25px rgba(168, 85, 247, 0.3);
        border-left: 2px solid rgba(168, 85, 247, 0.3);
        z-index: 1001;
        margin: 0;
    }


    .nav-links.active {
        right: 0;
    }

        .nav-links a {
            font-size: 1.2rem;
            padding: 0.8rem 1.5rem;
            color: white;
            background: transparent;
            border: none;
            border-radius: 15px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
            width: 120px;
            text-align: center;
            font-weight: 500;
            letter-spacing: 0.5px;
            position: relative;
            z-index: 1002;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

        .nav-links a:hover {
            color: white;
            transform: translateY(-3px) scale(1.02);
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
        }

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

        .social-mobile-buttons {
            display: flex !important;
            gap: 0.5rem;
            justify-content: center;
            margin-top: auto;
            margin-bottom: 1rem;
        }

        .social-mobile-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(168, 85, 247, 0.1);
            border: 1px solid rgba(168, 85, 247, 0.3);
            border-radius: 12px;
            color: #a855f7;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-mobile-btn:hover {
            background: rgba(168, 85, 247, 0.2);
            border-color: rgba(168, 85, 247, 0.6);
            color: #c084fc;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
        }

        .social-mobile-btn.discord:hover {
            background: rgba(88, 101, 242, 0.2);
            border-color: rgba(88, 101, 242, 0.6);
            color: #a5b4fc;
        }

        .social-mobile-btn.telegram:hover {
            background: rgba(0, 136, 204, 0.2);
            border-color: rgba(0, 136, 204, 0.6);
            color: #7dd3fc;
        }

    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

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

    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

.console-body::-webkit-scrollbar {
        width: 8px;
    }

    .console-body::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
    }

    .console-body::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #a855f7, #8b5cf6);
        border-radius: 4px;
    }

        .console-body::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #c084fc, #a855f7);
        }

/* Terminal Input Section */
.terminal-input-section {
    background: linear-gradient(135deg, rgba(25, 25, 30, 0.95), rgba(35, 35, 40, 0.95));
    border-top: 1px solid rgba(168, 85, 247, 0.3);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

    .terminal-input-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, #a855f7, transparent);
        opacity: 0.6;
    }

.terminal-prompt {
    color: #a855f7;
    font-weight: bold;
    font-family: 'Consolas', 'Monaco', monospace;
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.5);
    user-select: none;
}

.terminal-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #e0e0e0;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
}

    .terminal-input:focus {
        background: rgba(255, 255, 255, 0.08);
        border-color: #a855f7;
        box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
    }

    .terminal-input::placeholder {
        color: rgba(224, 224, 224, 0.5);
        font-style: italic;
    }

.execute-btn {
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    border: none;
    outline: none;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .execute-btn:hover {
        background: linear-gradient(135deg, #c084fc, #a855f7);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
    }

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

.console-line {
    margin-bottom: 4px;
    white-space: pre;
    text-align: left;
    font-family: "Consolas", "Monaco", monospace;
    padding-left: 0;
    display: flex;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

    .console-line.typing {
        position: relative;
    }

        .console-line.typing::after {
            content: "|";
            animation: blink 1s infinite;
            color: #cccccc;
        }

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

    50% {
        opacity: 0;
    }
}

.info-tag {
    color: #569cd6;
    font-weight: normal;
}

.success-text {
    color: #6a9955;
}

.number {
    color: #b5cea8;
}

.string {
    color: #ce9178;
}

.path {
    color: #9cdcfe;
}

.hex {
    color: #d19a66;
}

.root-text {
    color: #c586c0;
    font-weight: bold;
}

.unknown-text {
    color: #4ec9b0;
}

.system-text {
    color: #dcdcaa;
    font-weight: bold;
}

.success-message {
    font-weight: bold;
    color: #a855f7;
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.8), 0 0 25px rgba(168, 85, 247, 0.6);
    animation: purpleGlow 2s ease-in-out infinite;
}

@keyframes purpleGlow {
    0%, 100% {
        text-shadow: 0 0 15px rgba(168, 85, 247, 0.8), 0 0 25px rgba(168, 85, 247, 0.6);
        filter: brightness(1);
    }

    50% {
        text-shadow: 0 0 20px rgba(168, 85, 247, 1), 0 0 35px rgba(168, 85, 247, 0.8);
        filter: brightness(1.2);
    }
}

/* FAQ Answer Styles */
.faq-answer {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    background: rgba(168, 85, 247, 0.05);
    border-radius: 0 0 10px 10px;
    margin-bottom: 1rem;
}

    .faq-answer.open {
        max-height: 200px;
        opacity: 1;
        padding: 1rem;
    }

.faq-question.active {
    background: rgba(168, 85, 247, 0.2) !important;
    border-radius: 10px 10px 0 0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.3);
}

.faq-question:hover {
    background: rgba(168, 85, 247, 0.15) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
}

/* FAQ Item Animation */
.faq-item-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

    .faq-item-animation.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Support cards fade-in */
.support-card-fade {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.8s ease-out;
}

    .support-card-fade.visible {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

/* Featured Products Section */
.featured-products {
    padding: 40px 2rem 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-products-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #a855f7, white, #c084fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
    animation: textFlow 4s ease-in-out infinite;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.featured-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 25px rgba(168, 85, 247, 0.05);
}

    .featured-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.08), transparent);
        transition: left 0.6s;
        z-index: 1;
    }

    .featured-card:hover::before {
        left: 100%;
    }

    .featured-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3), 0 0 50px rgba(168, 85, 247, 0.15);
        border-color: rgba(168, 85, 247, 0.4);
    }

.featured-card-image {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.featured-card:hover .featured-card-image {
    filter: brightness(1.1) saturate(1.1);
}

.featured-card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.featured-card-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.8rem;
    background: linear-gradient(45deg, #a855f7, white);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.featured-card-description {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.featured-card-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #a855f7;
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
    margin-bottom: 1.2rem;
}

.featured-card-link {
    display: inline-block;
    background: linear-gradient(45deg, #a855f7, #8b5cf6);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .featured-card-link::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;
    }

    .featured-card-link:hover::before {
        left: 100%;
    }

    .featured-card-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(168, 85, 247, 0.4);
        background: linear-gradient(45deg, #c084fc, #a855f7);
    }

/* View All Button */
.view-all-container {
    text-align: center;
    margin-top: 3rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid #a855f7;
    color: #a855f7;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .view-all-btn::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;
    }

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

    .view-all-btn:hover {
        background: #a855f7;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(168, 85, 247, 0.4);
    }

.view-all-arrow {
    transition: transform 0.3s ease;
    font-weight: bold;
}

.view-all-btn:hover .view-all-arrow {
    transform: translateX(5px);
}

/* Placeholder for missing images */
.featured-card-image-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(168, 85, 247, 0.05));
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(168, 85, 247, 0.3);
    position: relative;
    z-index: 2;
}

/* Featured card fade animations */
.featured-card-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

.view-all-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

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

@keyframes cursorTrail {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* Quantity Selector Styles */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-btn {
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid #a855f7;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

    .quantity-btn:hover {
        background: rgba(168, 85, 247, 0.4);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(168, 85, 247, 0.3);
    }

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

#quantityInput {
    width: 80px;
    height: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
}

    #quantityInput:focus {
        outline: none;
        border-color: #a855f7;
        box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
    }

/* Image Gallery Styles */
.product-image-gallery {
    margin: 2rem 0;
}

.image-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.gallery-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(168, 85, 247, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .gallery-image-container:hover {
        border-color: #a855f7;
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(168, 85, 247, 0.4);
    }

    .gallery-image-container img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        transition: all 0.3s ease;
    }

    .gallery-image-container:hover img {
        transform: scale(1.05);
    }

/* SellAuth Purchase Button Enhancement */
.sellauth-button {
    position: relative;
    overflow: hidden;
}

    .sellauth-button::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;
    }

    .sellauth-button:hover::before {
        left: 100%;
    }

    .sellauth-button.enabled::after {
        content: '';
        margin-left: 0px;
    }

/* Image Modal Styles */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

    .image-modal img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 10px;
        box-shadow: 0 0 50px rgba(168, 85, 247, 0.5);
        transition: all 0.3s ease;
    }

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

/* Enhanced Product Cards with SellAuth Integration */
.product-card.sellauth-enabled {
    position: relative;
}

    .product-card.sellauth-enabled::after {
        content: 'SellAuth Powered';
        position: absolute;
        top: 10px;
        right: 10px;
        background: linear-gradient(45deg, #a855f7, #8b5cf6);
        color: white;
        padding: 4px 8px;
        border-radius: 12px;
        font-size: 0.7rem;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        opacity: 0.8;
        z-index: 10;
    }

/* Stock Management Styles */
/* Stock indicator styles removed - using visual feedback instead */

.product-card.out-of-stock {
    opacity: 0.6;
    filter: grayscale(0.3);
    cursor: not-allowed;
}

.product-card.out-of-stock:hover {
    transform: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 25px rgba(168, 85, 247, 0.05);
}

.subscription-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(107, 114, 128, 0.1);
    border-color: rgba(107, 114, 128, 0.3);
}

.subscription-option.disabled:hover {
    border-color: rgba(107, 114, 128, 0.3);
    background: rgba(107, 114, 128, 0.1);
}

.subscription-stock {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
        text-align: center;
}

.subscription-stock.in-stock {
    color: #10b981;
    font-weight: 600;
    font-family: 'Syne', 'Inter', sans-serif;
}

.subscription-stock.out-of-stock {
    color: #ef4444;
    font-weight: 600;
    font-family: 'Syne', 'Inter', sans-serif;
}

/* Footer Styles */
#main-footer {
    background: linear-gradient(135deg, rgba(15, 10, 26, 0.95), rgba(26, 13, 46, 0.95));
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
    position: relative;
}

#main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #a855f7, transparent);
    opacity: 0.6;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
        margin-bottom: 2rem;
    }

.footer-section h3 {
    color: #a855f7;
        font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #e2e8f0;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
    max-width: 200px;
}

.social-link:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
    border-color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
}

.social-link.discord:hover {
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
    border-color: #5865f2;
}

.social-link.telegram:hover {
    box-shadow: 0 8px 25px rgba(42, 171, 238, 0.4);
    border-color: #2aabee;
}

.social-link svg {
    transition: all 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
        transition: all 0.3s ease;
    border: 1px solid transparent;
    font-weight: 500;
    max-width: 200px;
    background: rgba(255, 255, 255, 0.02);
}

.footer-link:hover {
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    margin-top: 2rem;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin: 0;
    letter-spacing: 0.5px;
}