/* =================================================================
   NEXUS MARKET - UNIQUE CYBERPUNK STYLESHEET
   Version: 1.0
   Date: 2025-12-16
   Theme: Rose Pink & Neon Red Cyberpunk
   ================================================================= */

/* ===== CSS VARIABLES - NEXUS COLOR SCHEME ===== */
:root {
    /* Nexus Primary Colors (Rose Pink/Red) */
    --primary: #ff6b7a;              /* Bright rose pink */
    --primary-dark: #e94560;         /* Rose red */
    --primary-darker: #d63447;       /* Dark red */
    --primary-light: #ff8fab;        /* Light pink */
    
    /* Accent Colors */
    --accent-red: #f44336;           /* Vibrant red */
    --accent-orange: #ff9800;        /* Energy orange */
    --accent-pink: #ff006e;          /* Hot pink */
    
    /* Background Colors */
    --bg-primary: rgba(26, 26, 46, 0.95);    /* Dark purple-blue */
    --bg-secondary: #1a1a2e;                  /* Deep navy */
    --bg-card: rgba(30, 30, 50, 0.8);        /* Card background */
    --bg-light: #f0f0f0;                      /* Light background */
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #a0a0a0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff6b7a 0%, #e94560 50%, #ff006e 100%);
    --gradient-neon: linear-gradient(90deg, #ff006e, #ff6b7a, #e94560);
    --gradient-glow: linear-gradient(135deg, rgba(255,107,122,0.2) 0%, rgba(255,0,110,0.2) 100%);
    
    /* Glass-morphism */
    --glass-bg: rgba(255,255,255,0.05);
    --glass-border: rgba(255,107,122,0.2);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(255,107,122,0.1);
    --shadow-md: 0 4px 20px rgba(255,107,122,0.2);
    --shadow-lg: 0 8px 40px rgba(255,107,122,0.3);
    --shadow-neon: 0 0 20px rgba(255,107,122,0.6), 0 0 40px rgba(233,69,96,0.4);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Typography */
    --font-primary: 'Inter', 'Rajdhani', sans-serif;
    --font-heading: 'Orbitron', monospace;
    --font-code: 'Orbitron', 'Courier New', monospace;
}

/* ===== GLOBAL RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    background: var(--bg-secondary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* ===== VANTA BACKGROUND ===== */
#vanta-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===== FLOATING PARTICLES ===== */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary-dark);
    animation: particle-float 15s linear infinite;
    opacity: 0;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-delay: 3s; animation-duration: 18s; }
.particle:nth-child(3) { left: 40%; animation-delay: 1s; animation-duration: 20s; }
.particle:nth-child(4) { left: 60%; animation-delay: 5s; }
.particle:nth-child(5) { left: 75%; animation-delay: 2s; animation-duration: 17s; }
.particle:nth-child(6) { left: 85%; animation-delay: 4s; }
.particle:nth-child(7) { left: 50%; animation-delay: 6s; animation-duration: 19s; }
.particle:nth-child(8) { left: 30%; animation-delay: 7s; }

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% {
        transform: translateY(-100vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* ===== SCAN LINE EFFECT ===== */
.scan-line {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary-dark);
    animation: scan-line-move 4s linear infinite;
    z-index: 10;
    pointer-events: none;
}

@keyframes scan-line-move {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
    line-height: 1.8;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-light);
    text-shadow: 0 0 10px var(--primary);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 2;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: sticky;
    top: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
}

.logo i {
    font-size: 1.75rem;
    animation: logo-pulse 2s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 10px var(--primary)); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(255,107,122,0.1);
}

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-neon);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255,107,122,0.8);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-card);
        backdrop-filter: blur(20px);
        padding: var(--spacing-md);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .mobile-toggle {
        display: block;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: var(--spacing-xl);
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: neon-pulse 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: var(--spacing-lg);
    color: var(--text-secondary);
}

.neon-text {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary-dark);
    font-weight: 700;
}

/* ===== GLITCH TEXT EFFECT ===== */
.glitch-text {
    position: relative;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 90%, 100% {
        text-shadow: none;
    }
    92% {
        text-shadow:
            0.05em 0 0 rgba(255,0,110,0.75),
            -0.05em -0.025em 0 rgba(255,107,122,0.75);
    }
    94% {
        text-shadow:
            -0.05em -0.025em 0 rgba(255,0,110,0.75),
            0.025em 0.025em 0 rgba(233,69,96,0.75);
    }
    96% {
        text-shadow:
            0.025em 0.05em 0 rgba(255,0,110,0.75),
            0.05em 0 0 rgba(255,107,122,0.75);
    }
}

/* ===== NEON PULSE ANIMATION ===== */
@keyframes neon-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 5px var(--primary)) drop-shadow(0 0 15px var(--primary-dark));
    }
    50% {
        filter: drop-shadow(0 0 10px var(--primary)) drop-shadow(0 0 30px var(--primary-dark));
    }
}

/* ===== HERO STATS ===== */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.stat-item {
    padding: var(--spacing-md);
    background: rgba(255,107,122,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
    background: rgba(255,107,122,0.1);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

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

/* ===== BUTTONS ===== */
.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    border: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255,107,122,0.8), 0 0 60px rgba(233,69,96,0.5);
}

.btn-secondary {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
}

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

/* Liquid Button Ripple Effect */
.liquid-button {
    position: relative;
    overflow: hidden;
}

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

.liquid-button:hover::before {
    width: 300%;
    height: 300%;
}

/* ===== SECTIONS ===== */
.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
}

.section-alt {
    background: rgba(255,107,122,0.02);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--primary);
    text-shadow: 0 0 20px rgba(255,107,122,0.5);
}

.section-title i {
    margin-right: 0.75rem;
    color: var(--primary-light);
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 6rem var(--spacing-md) 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
    background: var(--gradient-glow);
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: var(--spacing-md);
    color: var(--primary);
    text-shadow: 0 0 30px rgba(255,107,122,0.6);
}

.page-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
}

/* Continued in next part... */
/* ===== HOLOGRAPHIC CARDS ===== */
.holographic-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: var(--spacing-lg);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.holographic-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,107,122,0.3) 50%, transparent 70%);
    animation: holographic-shine 3s linear infinite;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.holographic-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255,107,122,0.3);
    border-color: var(--primary);
}

@keyframes holographic-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* ===== FEATURE CARDS ===== */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: var(--spacing-lg);
    transition: all 0.4s ease;
    position: relative;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-neon);
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

/* ===== CRYPTO PRICES WIDGET ===== */
.crypto-section {
    background: rgba(255,107,122,0.02);
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.crypto-card {
    text-align: center;
    padding: var(--spacing-lg);
}

.crypto-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 0 20px var(--primary));
}

.crypto-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    margin: var(--spacing-sm) 0;
}

.crypto-change {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin: 0.5rem 0;
}

.crypto-change.positive {
    background: rgba(16,185,129,0.2);
    color: #10b981;
}

.crypto-change.negative {
    background: rgba(239,68,68,0.2);
    color: #ef4444;
}

.crypto-volume,
.crypto-update {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.crypto-disclaimer {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(255,107,122,0.05);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
}

/* ===== MIRROR CARDS (Access Page) ===== */
.mirrors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.mirror-card {
    padding: var(--spacing-lg);
}

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

.mirror-number {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
}

.mirror-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-active {
    background: rgba(16,185,129,0.2);
    color: #10b981;
}

.status-slow {
    background: rgba(245,158,11,0.2);
    color: #f59e0b;
}

.status-maintenance {
    background: rgba(239,68,68,0.2);
    color: #ef4444;
}

.mirror-link-box {
    background: rgba(0,0,0,0.3);
    border: 2px dashed var(--glass-border);
    border-radius: 12px;
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.onion-address {
    font-family: var(--font-code);
    font-size: 0.95rem;
    color: var(--primary-light);
    word-break: break-all;
    user-select: all;
    display: block;
    text-align: center;
}

.mirror-actions {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.btn-copy,
.btn-visit {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-copy {
    background: rgba(255,107,122,0.2);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-copy:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

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

.btn-visit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
}

.mirror-metrics {
    display: flex;
    justify-content: space-around;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--glass-border);
}

.metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.mirror-verified {
    text-align: center;
    margin-top: var(--spacing-md);
    padding: 0.75rem;
    background: rgba(16,185,129,0.1);
    border-radius: 8px;
    color: #10b981;
    font-size: 0.9rem;
}

/* ===== SECURITY NOTICE ===== */
.security-notice {
    background: rgba(255,107,122,0.1);
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    display: flex;
    gap: var(--spacing-md);
}

.notice-icon {
    font-size: 3rem;
    color: var(--primary);
    flex-shrink: 0;
}

.notice-content h2 {
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.notice-points {
    margin-top: var(--spacing-md);
}

.notice-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.notice-point i {
    color: #10b981;
    margin-top: 0.25rem;
}

/* ===== FAQ SECTION ===== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    cursor: pointer;
    background: rgba(255,107,122,0.05);
}

.faq-question i {
    font-size: 1.5rem;
    color: var(--primary);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-light);
}

.faq-answer {
    padding: 0 var(--spacing-md) var(--spacing-md) var(--spacing-md);
    color: var(--text-secondary);
}

/* ===== STATS SHOWCASE ===== */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.stat-card {
    text-align: center;
    padding: var(--spacing-lg);
}

.stat-card .stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto var(--spacing-md);
    box-shadow: var(--shadow-neon);
}

.stat-card .stat-number {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-sm);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--glass-border);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: var(--spacing-md);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: var(--shadow-neon);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,107,122,0.8);
}

.scroll-to-top.show {
    display: flex;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .hero-content {
        padding: var(--spacing-lg);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .mirrors-grid {
        grid-template-columns: 1fr;
    }
    
    .crypto-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }

/* ===== CTA SECTIONS ===== */
.section-cta {
    background: var(--gradient-glow);
}

.cta-banner {
    text-align: center;
    padding: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-md);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.cta-card {
    text-align: center;
    padding: var(--spacing-lg);
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto var(--spacing-md);
    box-shadow: var(--shadow-neon);
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: var(--spacing-md);
    transition: all 0.3s ease;
}

.cta-link:hover {
    transform: translateX(5px);
    text-shadow: 0 0 10px var(--primary);
}

/* ===== LAST UPDATED ===== */
.last-updated {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(255,107,122,0.05);
    border-radius: 10px;
    margin-top: var(--spacing-lg);
    color: var(--text-muted);
}

.last-updated i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.last-updated strong {
    color: var(--primary-light);
}

/* ===== LOADING ANIMATION ===== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,107,122,0.3);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s linear infinite;
}

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

/* === IMAGE GRID & ILLUSTRATIONS === */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.intro-image img,
.feature-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(255, 107, 122, 0.2);
    border: 2px solid rgba(255, 107, 122, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-image img:hover,
.feature-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 107, 122, 0.4);
}

.content-with-image {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.image-card {
    position: sticky;
    top: 100px;
}

.image-card img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(255, 107, 122, 0.3);
    border: 2px solid rgba(255, 107, 122, 0.2);
}

@media (max-width: 768px) {
    .intro-grid,
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .image-card {
        position: static;
    }
}

/* === BEAUTIFUL LISTS STYLING === */
.feature-card ul,
.feature-card ol,
.detail-card ul,
.detail-card ol,
.security-detail ul,
.security-detail ol,
.tool-card ul,
.tool-card ol,
.trouble-card ul,
.trouble-card ol,
.prevention-card ul,
.prevention-card ol,
.support-card ul,
.support-card ol,
.intro-content ul,
.intro-content ol,
.about-content ul,
.about-content ol {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.feature-card ul li,
.detail-card ul li,
.security-detail ul li,
.tool-card ul li,
.trouble-card ul li,
.prevention-card ul li,
.support-card ul li,
.intro-content ul li,
.about-content ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.feature-card ul li::before,
.detail-card ul li::before,
.security-detail ul li::before,
.tool-card ul li::before,
.trouble-card ul li::before,
.prevention-card ul li::before,
.support-card ul li::before,
.intro-content ul li::before,
.about-content ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 107, 122, 0.5);
    animation: pulse-arrow 2s ease-in-out infinite;
}

@keyframes pulse-arrow {
    0%, 100% { opacity: 1; transform: translateX(0); }
    50% { opacity: 0.7; transform: translateX(3px); }
}

/* Ordered Lists */
.feature-card ol li,
.detail-card ol li,
.security-detail ol li,
.tool-card ol li,
.trouble-card ol li,
.prevention-card ol li,
.support-card ol li,
.intro-content ol li,
.about-content ol li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    counter-increment: custom-counter;
}

.feature-card ol,
.detail-card ol,
.security-detail ol,
.tool-card ol,
.trouble-card ol,
.prevention-card ol,
.support-card ol,
.intro-content ol,
.about-content ol {
    counter-reset: custom-counter;
}

.feature-card ol li::before,
.detail-card ol li::before,
.security-detail ol li::before,
.tool-card ol li::before,
.trouble-card ol li::before,
.prevention-card ol li::before,
.support-card ol li::before,
.intro-content ol li::before,
.about-content ol li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-pink) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255, 107, 122, 0.4);
}

/* Nested Lists */
.feature-card ul ul,
.detail-card ul ul,
.security-detail ul ul,
.intro-content ul ul,
.about-content ul ul {
    margin-top: 10px;
    margin-left: 20px;
}

.feature-card ul ul li::before,
.detail-card ul ul li::before,
.security-detail ul ul li::before,
.intro-content ul ul li::before,
.about-content ul ul li::before {
    content: "•";
    color: var(--accent-pink);
    font-size: 16px;
}

/* Highlight important list items */
.feature-card ul li strong,
.detail-card ul li strong,
.security-detail ul li strong,
.intro-content ul li strong,
.about-content ul li strong {
    color: var(--primary);
    text-shadow: 0 0 5px rgba(255, 107, 122, 0.3);
}

/* Hover effect on list items */
.feature-card ul li:hover,
.detail-card ul li:hover,
.security-detail ul li:hover,
.tool-card ul li:hover,
.trouble-card ul li:hover,
.prevention-card ul li:hover,
.support-card ul li:hover {
    color: var(--primary);
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.feature-card ol li:hover,
.detail-card ol li:hover,
.security-detail ol li:hover,
.tool-card ol li:hover,
.trouble-card ol li:hover,
.prevention-card ol li:hover,
.support-card ol li:hover {
    color: var(--primary);
    transform: translateX(5px);
    transition: all 0.3s ease;
}

/* === ENHANCED RESOURCE LISTS === */
.resource-list li {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 107, 122, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.resource-list li:hover {
    background: rgba(255, 107, 122, 0.1);
    border-left-width: 5px;
    transform: translateX(5px);
}

.resource-list li a {
    color: var(--primary);
    text-decoration: none;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.resource-list li a:hover {
    color: var(--accent-pink);
    text-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

.resource-list li p {
    margin: 5px 0 0 25px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* === OPSEC CARD ENHANCEMENTS === */
.opsec-card ul {
    margin: 15px 0;
    padding-left: 0;
}

.opsec-card ul li {
    padding-left: 30px;
    margin-bottom: 12px;
}

.opsec-number {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-pink) 100%);
    font-size: 32px;
    font-weight: bold;
    padding: 15px 25px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 0 20px rgba(255, 107, 122, 0.4);
}

/* === WARNING CARD ENHANCEMENTS === */
.warning-card {
    background: linear-gradient(135deg, rgba(255, 107, 122, 0.1) 0%, rgba(233, 69, 96, 0.1) 100%);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(255, 107, 122, 0.2);
}

.warning-card h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 107, 122, 0.3);
}

.warning-card > p {
    font-size: 16px;
    margin-bottom: 15px;
}

.warning-card > p strong {
    color: var(--primary);
}
