/* =====================================================
   MORAL - Dark Cyber Theme
   Black & Red Color Scheme
   ===================================================== */

:root {
    /* Core Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: #0f0f0f;

    /* Red Accent Colors */
    --accent-primary: #ff0a3c;
    --accent-secondary: #cc0830;
    --accent-glow: rgba(255, 10, 60, 0.5);
    --accent-subtle: rgba(255, 10, 60, 0.1);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;

    /* Border Colors */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 10, 60, 0.3);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff0a3c 0%, #cc0830 100%);
    --gradient-glow: linear-gradient(135deg, rgba(255, 10, 60, 0.4) 0%, rgba(204, 8, 48, 0.1) 100%);

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 10, 60, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.accent {
    color: var(--accent-primary);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.95);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-size: 24px;
    color: var(--accent-primary);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 5px var(--accent-glow)); }
    50% { filter: drop-shadow(0 0 20px var(--accent-glow)); }
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    background: var(--accent-subtle);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 15px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-arrow {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 10, 60, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 10, 60, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
    top: -200px;
    right: -200px;
    opacity: 0.15;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-secondary);
    bottom: -100px;
    left: -100px;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--accent-subtle);
    border: 1px solid var(--border-hover);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-suffix {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-primary);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* =====================================================
   SECTIONS COMMON
   ===================================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-subtle);
    border: 1px solid var(--border-hover);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
}

.section-description {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* =====================================================
   FEATURES SECTION
   ===================================================== */
.features {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 36px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-subtle);
    border: 1px solid var(--border-hover);
    border-radius: 12px;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-primary);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-family: 'Orbitron', sans-serif;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* =====================================================
   STATS SECTION
   ===================================================== */
.stats-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, var(--accent-subtle) 0%, transparent 60%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-normal);
}

.stat-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 0 40px var(--accent-subtle);
}

.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card .stat-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-primary);
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    margin-bottom: 8px;
}

.stat-title {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* =====================================================
   PRICING SECTION
   ===================================================== */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    align-items: start;
}

.pricing-grid-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

.pricing-grid-large .pricing-card:nth-child(9),
.pricing-grid-large .pricing-card:nth-child(10) {
    grid-column: span 1;
}

.pricing-grid-large::after {
    content: '';
    grid-column: 1;
}

/* Center last 2 cards wrapper */
.pricing-last-row {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.pricing-last-row .pricing-card {
    flex: 0 0 calc(25% - 15px);
    max-width: 300px;
}

@media (max-width: 1100px) {
    .pricing-grid-large {
        grid-template-columns: repeat(3, 1fr);
    }
    .pricing-last-row .pricing-card {
        flex: 0 0 calc(33.33% - 14px);
    }
}

@media (max-width: 850px) {
    .pricing-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-last-row {
        flex-direction: column;
        align-items: center;
    }
    .pricing-last-row .pricing-card {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 580px) {
    .pricing-grid-large {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    transition: var(--transition-normal);
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border-color: var(--accent-primary);
    box-shadow: 0 0 40px var(--accent-subtle);
}

.pricing-card.godly {
    border-color: #ffd700;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.pricing-card.godly .pricing-header h3 {
    color: #ffd700;
}

.pricing-card.godly .featured-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #000;
}

.plan-emoji {
    text-align: center;
    font-size: 32px;
    margin-bottom: 12px;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-primary);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 16px;
}

.pricing-header h3 {
    font-size: 20px;
    margin-bottom: 4px;
    font-family: 'Orbitron', sans-serif;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 13px;
}

.pricing-price {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-price .currency {
    font-size: 20px;
    color: var(--text-secondary);
    vertical-align: top;
}

.pricing-price .amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
}

.pricing-price .period {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 13px;
}

.pricing-features .check {
    color: var(--accent-primary);
    font-weight: 700;
}

.pricing-features .cross {
    color: var(--text-muted);
    font-weight: 700;
}

.lifetime-notice {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.lifetime-notice p {
    color: var(--text-secondary);
    font-size: 15px;
}

.lifetime-notice a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
}

.lifetime-notice a:hover {
    text-decoration: underline;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-subtle) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 32px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    font-size: 14px;
    max-width: 280px;
}

.footer-links h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .navbar .btn {
        display: none;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-stat {
        min-width: 80px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.2s; }
.hero-description { animation-delay: 0.3s; }
.hero-buttons { animation-delay: 0.4s; }
.hero-stats { animation-delay: 0.5s; }

/* Smooth scroll offset for fixed header */
html {
    scroll-padding-top: 100px;
}

/* =====================================================
   METHODS SECTION - TERMINAL STYLE
   ===================================================== */
.methods {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.terminal-window {
    background: #0c0c0c;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.terminal-header {
    background: #1a1a1a;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-btn.close {
    background: #ff5f56;
}

.terminal-btn.minimize {
    background: #ffbd2e;
}

.terminal-btn.maximize {
    background: #27ca3f;
}

.terminal-title {
    color: var(--text-secondary);
    font-size: 13px;
    font-family: 'Consolas', 'Monaco', monospace;
}

.terminal-body {
    padding: 20px 24px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    overflow-x: auto;
}

.method-category {
    margin-bottom: 16px;
}

.category-name {
    color: var(--accent-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.method-line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 2px 0;
    flex-wrap: wrap;
}

.pipe {
    color: var(--text-muted);
}

.method-name {
    color: #f0c674;
    min-width: 100px;
}

.method-tag {
    font-size: 12px;
    padding: 1px 6px;
    border-radius: 3px;
}

.method-tag.protected {
    color: #27ca3f;
}

.method-tag.prot-unprot {
    color: #ff5f56;
}

.method-desc {
    color: var(--text-secondary);
}

.terminal-prompt {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.prompt-user {
    color: #27ca3f;
}

.prompt-symbol {
    color: var(--text-primary);
}

.cursor {
    color: var(--text-primary);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* =====================================================
   CRYPTO NOTICE
   ===================================================== */
.crypto-notice {
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-radius: 12px;
    margin-bottom: 40px;
}

.crypto-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
}

.crypto-icon {
    font-size: 28px;
    color: var(--accent-primary);
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.crypto-notice p {
    color: var(--text-secondary);
    font-size: 15px;
}

.crypto-notice strong {
    color: var(--text-primary);
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-item.active {
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px var(--accent-subtle);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-toggle {
    font-size: 24px;
    color: var(--accent-primary);
    font-weight: 300;
    transition: var(--transition-normal);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* =====================================================
   TOS SECTION
   ===================================================== */
.tos {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.tos-terminal {
    max-height: 500px;
    overflow-y: auto;
}

.tos-terminal::-webkit-scrollbar {
    width: 8px;
}

.tos-terminal::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

.tos-terminal::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 4px;
}

.tos-item {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tos-item:last-of-type {
    border-bottom: none;
}

.tos-number {
    color: var(--accent-primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    margin-right: 10px;
}

.tos-title {
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.tos-text {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.7;
    margin-top: 8px;
    padding-left: 42px;
}

.tos-accept {
    color: #27ca3f;
}

/* =====================================================
   VOUCHES SECTION
   ===================================================== */
.vouches {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.vouches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.vouches-grid.vouches-centered {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

@media (max-width: 900px) {
    .vouches-grid.vouches-centered {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.vouch-card.featured-vouch {
    border-color: var(--border-hover);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 10, 60, 0.05) 100%);
}

.vouch-avatar.crown-avatar {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    font-size: 22px;
}

.vouch-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-primary);
}

.vouch-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: var(--transition-normal);
}

.vouch-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vouch-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.vouch-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.vouch-info {
    flex: 1;
}

.vouch-name {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.vouch-plan {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

.vouch-rating {
    color: #ffd700;
    font-size: 14px;
}

.vouch-rating span {
    margin-left: 2px;
}

.vouch-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
}

/* =====================================================
   ANIMATED CRYPTO ICONS
   ===================================================== */
.crypto-icons-animated {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.crypto-float {
    animation: float 4s ease-in-out infinite;
    display: inline-block;
}

.crypto-svg {
    width: 56px;
    height: 56px;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.crypto-svg:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0 12px currentColor);
}

@keyframes float {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

/* =====================================================
   STATUS PAGE
   ===================================================== */
.status-hero {
    min-height: 100vh;
    padding: 140px 24px 80px;
    background: var(--bg-primary);
}

.status-header {
    text-align: center;
    margin-bottom: 60px;
}

.status-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.status-indicator {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #27ca3f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-indicator.active .status-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #27ca3f;
    animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.status-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    color: #27ca3f;
    margin-bottom: 8px;
}

.status-info p {
    color: var(--text-secondary);
    font-size: 16px;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.status-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: var(--transition-normal);
}

.status-card:hover {
    border-color: var(--border-hover);
}

.status-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-dot.online {
    background: #27ca3f;
    box-shadow: 0 0 10px #27ca3f;
}

.status-dot.offline {
    background: #ff5f56;
    box-shadow: 0 0 10px #ff5f56;
}

.status-card-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    color: var(--text-primary);
}

.status-card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-label {
    color: #27ca3f;
    font-size: 14px;
    font-weight: 600;
}

.status-uptime {
    color: var(--text-muted);
    font-size: 13px;
}

.power-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.power-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
}

.power-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-subtle);
    border-radius: 12px;
}

.power-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-primary);
}

.power-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.power-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
}

.back-link {
    text-align: center;
}

/* Methods Status Grid */
.methods-status {
    margin-bottom: 60px;
}

.methods-status-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
}

.methods-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.method-status-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    transition: var(--transition-normal);
}

.method-status-card:hover {
    border-color: var(--border-hover);
}

.method-status-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    color: var(--text-primary);
    flex: 1;
}

.method-status-label {
    font-size: 12px;
    color: #27ca3f;
    font-weight: 600;
}

/* =====================================================
   RESPONSIVE ADDITIONS
   ===================================================== */
@media (max-width: 768px) {
    .terminal-body {
        padding: 16px;
        font-size: 12px;
    }

    .terminal-title {
        font-size: 11px;
    }

    .method-name {
        min-width: 80px;
    }

    .method-line {
        flex-wrap: wrap;
    }

    .method-desc {
        width: 100%;
        padding-left: 20px;
        margin-top: 2px;
    }

    .crypto-icons {
        gap: 15px;
    }

    .crypto-icon {
        font-size: 24px;
    }

    .faq-question h3 {
        font-size: 15px;
    }
}
