/* ============================================
   BLACKOPS CYBER-PUNK NEON DESIGN
   Colorful, Amazing, Stylish Multi-Page Website
   ============================================ */

/* ============================================
   CSS VARIABLES - NEON CYBERPUNK PALETTE
   ============================================ */
:root {
    /* Neon Color Palette */
    --neon-cyan: #00f5ff;
    --neon-purple: #b026ff;
    --neon-pink: #ff0080;
    --neon-orange: #ff6b35;
    --neon-green: #39ff14;
    --electric-blue: #0ff;
    --hot-magenta: #ff006e;

    /* Background Gradients */
    --bg-primary: #0a0a14;
    --bg-secondary: #1a1a2e;
    --bg-card: rgba(26, 26, 46, 0.85);
    --bg-glass: rgba(0, 245, 255, 0.08);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #00f5ff;
    --text-accent: #ff0080;
    --text-glow: #b026ff;

    /* Glows & Shadows */
    --glow-cyan: 0 0 20px rgba(0, 245, 255, 0.6), 0 0 40px rgba(0, 245, 255, 0.4);
    --glow-purple: 0 0 20px rgba(176, 38, 255, 0.6), 0 0 40px rgba(176, 38, 255, 0.4);
    --glow-pink: 0 0 20px rgba(255, 0, 128, 0.6), 0 0 40px rgba(255, 0, 128, 0.4);
    --glow-orange: 0 0 20px rgba(255, 107, 53, 0.6), 0 0 40px rgba(255, 107, 53, 0.4);

    /* Typography */
    --font-primary: 'Rajdhani', 'Segoe UI', sans-serif;
    --font-display: 'Orbitron', 'Arial Black', sans-serif;
    --font-mono: 'Share Tech Mono', 'Courier New', monospace;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(176, 38, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 245, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 0, 128, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: bgPulse 15s ease-in-out infinite;
}

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

/* ============================================
   MATRIX/GRID BACKGROUND
   ============================================ */
#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.3;
}

.tactical-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image:
        linear-gradient(rgba(0, 245, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    animation: gridPulse 20s linear infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.1; }
}

#cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    pointer-events: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientFlow 8s ease infinite;
    position: relative;
}

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

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1.2rem; }
h3 { font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h4 { font-size: clamp(1.2rem, 3vw, 1.8rem); margin-bottom: 0.8rem; }

p {
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

a:hover {
    color: var(--neon-pink);
    text-shadow: var(--glow-pink);
}

strong {
    color: var(--neon-orange);
    font-weight: 700;
}

/* ============================================
   NEON GLITCH EFFECT
   ============================================ */
.glitch {
    position: relative;
    animation: glitch-skew 4s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
}

.glitch::before {
    animation: glitch-anim 2.5s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translate(-2px, -2px);
    opacity: 0.8;
}

.glitch::after {
    animation: glitch-anim 3s infinite reverse;
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
    transform: translate(2px, 2px);
    opacity: 0.8;
}

@keyframes glitch-anim {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-3px, 3px);
    }
    40% {
        transform: translate(-3px, -3px);
    }
    60% {
        transform: translate(3px, 3px);
    }
    80% {
        transform: translate(3px, -3px);
    }
}

@keyframes glitch-skew {
    0%, 100% {
        transform: skew(0deg);
    }
    20% {
        transform: skew(1deg);
    }
    40% {
        transform: skew(-1deg);
    }
}

/* ============================================
   LAYOUT COMPONENTS
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: clamp(2.5rem, 5vw, 4rem);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-pink), transparent);
    box-shadow: var(--glow-cyan);
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 245, 255, 0.5); }
    50% { box-shadow: 0 0 30px rgba(0, 245, 255, 1), 0 0 60px rgba(255, 0, 128, 0.6); }
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-md);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(0, 245, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 245, 255, 0.2);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.logo-img {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 0 15px var(--neon-cyan));
    animation: logoFloat 3s ease-in-out infinite;
}

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

.brand-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(0, 245, 255, 0.6));
}

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

.nav-link {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.8rem 1.5rem;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    transition: var(--transition-normal);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    border-color: rgba(0, 245, 255, 0.4);
    background: rgba(0, 245, 255, 0.05);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.8rem;
}

.mobile-toggle span {
    width: 35px;
    height: 4px;
    background: var(--neon-cyan);
    transition: var(--transition-fast);
    box-shadow: var(--glow-cyan);
    border-radius: 2px;
}

.mobile-toggle:hover span {
    background: var(--neon-pink);
    box-shadow: var(--glow-pink);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 40%, rgba(176, 38, 255, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(0, 245, 255, 0.2) 0%, transparent 60%);
    animation: heroGlow 10s ease-in-out infinite;
}

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

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 1100px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 245, 255, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(176, 38, 255, 0.8)) drop-shadow(0 0 60px rgba(255, 0, 128, 0.6));
    }
}

.hero-subtitle {
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: var(--neon-purple);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: var(--glow-purple);
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.9;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* ============================================
   BUTTONS - NEON STYLE
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    background: transparent;
}

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

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}

.btn-primary:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: var(--glow-cyan);
    transform: translateY(-3px) scale(1.05);
}

.btn-secondary {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.4);
}

.btn-secondary:hover {
    background: var(--neon-pink);
    color: #fff;
    box-shadow: var(--glow-pink);
    transform: translateY(-3px) scale(1.05);
}

.btn-accent {
    border-color: var(--neon-purple);
    color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.4);
}

.btn-accent:hover {
    background: var(--neon-purple);
    color: #fff;
    box-shadow: var(--glow-purple);
    transform: translateY(-3px) scale(1.05);
}

/* ============================================
   GLASS MORPHISM CARDS
   ============================================ */
.glass {
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: var(--radius-lg);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.glass:hover {
    border-color: rgba(0, 245, 255, 0.5);
    box-shadow:
        0 12px 40px rgba(0, 245, 255, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

/* ============================================
   FEATURE CARDS & GRIDS
   ============================================ */
.topics-grid,
.features-grid,
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.topic-card,
.feature-card,
.stat-card {
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.topic-card::before,
.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle, rgba(0, 245, 255, 0.1) 0%, transparent 70%),
        radial-gradient(circle, rgba(255, 0, 128, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
    animation: cardRotate 20s linear infinite;
}

@keyframes cardRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.topic-icon,
.feature-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px var(--neon-cyan));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.topic-card h3,
.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.topic-card p,
.feature-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.topic-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    transition: var(--transition-fast);
}

.topic-link:hover {
    color: var(--neon-pink);
    text-shadow: var(--glow-pink);
    transform: translateX(15px);
}

/* ============================================
   STATS CARDS
   ============================================ */
.tactical-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: rgba(26, 26, 46, 0.6);
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink)) 1;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

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

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--neon-orange));
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(0, 245, 255, 0.6));
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ============================================
   CRYPTO PRICE SECTION
   ============================================ */
.crypto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.crypto-card {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(176, 38, 255, 0.05));
    padding: 2.5rem;
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

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

.crypto-card:hover {
    transform: scale(1.08) rotateY(5deg);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.crypto-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.2), rgba(176, 38, 255, 0.2));
    border-radius: 50%;
    border: 3px solid var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 40px rgba(0, 245, 255, 0.8);
    }
}

.crypto-icon {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

.crypto-price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
}

.crypto-change {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.crypto-change.positive {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.crypto-change.negative {
    color: #ff006e;
    text-shadow: 0 0 10px #ff006e;
}

.crypto-details {
    border-top: 1px solid rgba(0, 245, 255, 0.2);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.detail-label {
    color: rgba(255, 255, 255, 0.6);
}

.detail-value {
    color: var(--neon-cyan);
    font-weight: 700;
}

/* ============================================
   WARNING & ALERT BOXES
   ============================================ */
.warning-box {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 0, 128, 0.1));
    border: 2px solid var(--neon-orange);
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.warning-box.critical {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.15), rgba(176, 38, 255, 0.15));
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.4);
}

.warning-icon {
    font-size: 3rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 15px var(--neon-orange));
    animation: warningPulse 2s ease-in-out infinite;
}

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

.warning-content h4 {
    color: var(--neon-orange);
    margin-bottom: 1rem;
}

.warning-box.critical .warning-content h4 {
    color: var(--neon-pink);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 3px solid rgba(0, 245, 255, 0.3);
    transition: all var(--transition-normal);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    color: var(--neon-cyan);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    text-shadow: var(--glow-cyan);
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ============================================
   FOOTER
   ============================================ */
.page-freshness {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.08), rgba(176, 38, 255, 0.08));
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(0, 245, 255, 0.3);
}

.page-freshness p {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--neon-cyan);
}

.footer {
    background: rgba(10, 10, 20, 0.95);
    border-top: 2px solid rgba(0, 245, 255, 0.3);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-purple), var(--neon-pink), transparent);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.6);
}

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

.footer-column h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    transform: translateX(10px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 245, 255, 0.2);
}

.footer-bottom p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links span {
    color: rgba(0, 245, 255, 0.4);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 1;
    transition: all var(--transition-slow);
}

[data-animate].animate-in {
    opacity: 1;
}

[data-animate="fadeIn"].animate-in {
    animation: fadeIn 0.8s ease forwards;
}

[data-animate="slideLeft"].animate-in {
    animation: slideLeft 0.8s ease forwards;
}

[data-animate="slideRight"].animate-in {
    animation: slideRight 0.8s ease forwards;
}

[data-animate="zoomIn"].animate-in {
    animation: zoomIn 0.8s ease forwards;
}

[data-animate="slideUp"].animate-in {
    animation: slideUp 0.8s ease forwards;
}

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

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.7);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: rgba(10, 10, 20, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 1.5rem;
        transition: left var(--transition-normal);
        border-top: 2px solid rgba(0, 245, 255, 0.3);
        box-shadow: 0 10px 40px rgba(0, 245, 255, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 400px;
    }

    .topics-grid,
    .features-grid,
    .stats-grid,
    .crypto-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .warning-box {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .crypto-price {
        font-size: 2.2rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.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); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

.hidden { display: none; }
.visible { display: block; }

/* Smooth scroll with offset for fixed header */
html {
    scroll-padding-top: 100px;
}

/* Selection styling */
::selection {
    background: var(--neon-cyan);
    color: #000;
}

::-moz-selection {
    background: var(--neon-cyan);
    color: #000;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 6px;
    box-shadow: var(--glow-cyan);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--neon-purple), var(--neon-pink));
    box-shadow: var(--glow-pink);
}

/* ============================================
   BEAUTIFUL LISTS STYLING
   ============================================ */
.glass ul,
.glass ol,
.content-card ul,
.content-card ol,
.feature-card ul,
.feature-card ol,
.warning-content ul,
.warning-content ol {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.glass ul li,
.glass ol li,
.content-card ul li,
.content-card ol li,
.feature-card ul li,
.feature-card ol li,
.warning-content ul li,
.warning-content ol li {
    position: relative;
    padding: 0.8rem 0 0.8rem 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, rgba(0, 245, 255, 0.05) 0%, transparent 100%);
    border-left: 3px solid var(--neon-cyan);
    border-radius: 0 8px 8px 0;
    transition: all var(--transition-fast);
}

.glass ul li:hover,
.glass ol li:hover,
.content-card ul li:hover,
.content-card ol li:hover,
.feature-card ul li:hover,
.feature-card ol li:hover {
    background: linear-gradient(90deg, rgba(0, 245, 255, 0.12) 0%, transparent 100%);
    border-left-color: var(--neon-purple);
    padding-left: 3rem;
}

.glass ul li::before,
.content-card ul li::before,
.feature-card ul li::before,
.warning-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0.8rem;
    color: var(--neon-cyan);
    font-size: 1.1rem;
    font-weight: bold;
    transition: all var(--transition-fast);
}

.glass ul li:hover::before,
.content-card ul li:hover::before,
.feature-card ul li:hover::before {
    color: var(--neon-pink);
    transform: translateX(3px);
}

.glass ol {
    counter-reset: list-counter;
}

.glass ol li,
.content-card ol li,
.feature-card ol li,
.warning-content ol li {
    counter-increment: list-counter;
}

.glass ol li::before,
.content-card ol li::before,
.feature-card ol li::before,
.warning-content ol li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    color: #000;
    top: 50%;
    transform: translateY(-50%);
}

/* Verification Steps - special styling */
.verification-steps {
    counter-reset: verify-counter;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.verification-steps li {
    position: relative;
    padding: 1.2rem 1.5rem 1.2rem 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.08) 0%, rgba(176, 38, 255, 0.05) 100%);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
    counter-increment: verify-counter;
    transition: all var(--transition-fast);
}

.verification-steps li:hover {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.15) 0%, rgba(176, 38, 255, 0.1) 100%);
    border-color: var(--neon-cyan);
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.verification-steps li::before {
    content: counter(verify-counter);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    color: #000;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
}

/* Access Features List */
.access-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.access-features li {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.08) 0%, rgba(0, 245, 255, 0.05) 100%);
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 10px;
    transition: all var(--transition-fast);
}

.access-features li:hover {
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.15) 0%, rgba(0, 245, 255, 0.1) 100%);
    border-color: var(--neon-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(57, 255, 20, 0.2);
}

/* Security Features List */
.security-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.security-features li {
    padding: 1rem 1.5rem 1rem 3.5rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(90deg, rgba(176, 38, 255, 0.08) 0%, transparent 100%);
    border-left: 4px solid var(--neon-purple);
    border-radius: 0 10px 10px 0;
    position: relative;
    transition: all var(--transition-fast);
}

.security-features li::before {
    content: '🔐';
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.security-features li:hover {
    background: linear-gradient(90deg, rgba(176, 38, 255, 0.15) 0%, transparent 100%);
    border-left-color: var(--neon-pink);
    padding-left: 4rem;
}

/* ============================================
   ONION LINKS STYLING
   ============================================ */
.onion-url {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 10, 20, 0.9) 100%);
    border: 2px solid var(--neon-cyan);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    word-break: break-all;
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
    position: relative;
    overflow: hidden;
    margin: 1rem 0;
    box-shadow:
        0 0 20px rgba(0, 245, 255, 0.2),
        inset 0 0 30px rgba(0, 245, 255, 0.05);
    transition: all var(--transition-fast);
}

.onion-url::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.onion-url:hover {
    border-color: var(--neon-green);
    box-shadow:
        0 0 30px rgba(57, 255, 20, 0.4),
        inset 0 0 40px rgba(57, 255, 20, 0.1);
}

/* Mirror Cards */
.mirror-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(10, 10, 20, 0.98) 100%);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.mirror-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
    transform: translateY(-5px);
}

.mirror-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
}

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

.status-active, .mirror-status.status-active {
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.2) 0%, rgba(57, 255, 20, 0.1) 100%);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
    animation: pulse 2s infinite;
}

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

.mirror-reliability {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.reliability-value {
    color: var(--neon-cyan);
    font-weight: 700;
    font-size: 1.1rem;
}

.mirror-url-section {
    margin: 1.5rem 0;
}

.mirror-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mirror-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 245, 255, 0.1);
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(0, 245, 255, 0.05);
    border-radius: 8px;
}

.metric-icon {
    font-size: 1.2rem;
}

.metric-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.metric-value {
    color: var(--neon-cyan);
    font-weight: 600;
    font-family: var(--font-mono);
}

/* Copy Button Styling */
.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.15) 0%, rgba(176, 38, 255, 0.1) 100%);
    border: 2px solid var(--neon-cyan);
    border-radius: 10px;
    color: var(--neon-cyan);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-top: 1rem;
}

.copy-btn:hover {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 245, 255, 0.4);
}

.copy-icon {
    font-size: 1.2rem;
}

/* PGP Key Container */
.pgp-container {
    margin: 2rem 0;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.pgp-key {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--neon-green);
    background: rgba(0, 0, 0, 0.7);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-all;
    border: 1px solid rgba(57, 255, 20, 0.2);
    max-height: 300px;
    overflow-y: auto;
}

/* Step Cards */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    position: relative;
    padding: 2rem;
    padding-top: 3rem;
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 2rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.step-card h3 {
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.step-card p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Access Notice Box */
.access-notice {
    background: linear-gradient(135deg, rgba(176, 38, 255, 0.1) 0%, rgba(0, 245, 255, 0.05) 100%);
    border: 2px solid var(--neon-purple);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.access-notice h3 {
    color: var(--neon-purple);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* CTA Box */
.cta-box {
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1) 0%, rgba(176, 38, 255, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 245, 255, 0.2);
}

.cta-box p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Mirrors Grid */
.mirrors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Content Card */
.content-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(10, 10, 20, 0.95) 100%);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
}

.content-card h2 {
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.content-card h3 {
    color: var(--neon-purple);
    margin: 2rem 0 1rem 0;
    font-size: 1.3rem;
}

/* Page Hero for inner pages */
.page-hero {
    padding: 8rem 0 4rem 0;
    text-align: center;
    position: relative;
}

.page-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
}

/* FAQ specific improvements */
.faq-item {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(10, 10, 20, 0.95) 100%);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 25px rgba(0, 245, 255, 0.15);
}

.faq-item h3 {
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Section Alt background */
.section-alt {
    background: linear-gradient(180deg, rgba(0, 245, 255, 0.03) 0%, transparent 100%);
}
