/* ============================================
   HIDDENWIKII - Cyberpunk Neon Theme
   ============================================ */

/* CSS Variables */
:root {
    /* Neon Colors */
    --neon-cyan: #00fff9;
    --neon-magenta: #ff006e;
    --neon-lime: #ccff00;
    --neon-purple: #b537f2;
    --neon-blue: #0066ff;
    
    /* Background Colors */
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    
    /* Accents */
    --border-color: rgba(0, 255, 249, 0.2);
    --shadow-cyan: 0 0 20px rgba(0, 255, 249, 0.3);
    --shadow-magenta: 0 0 20px rgba(255, 0, 110, 0.3);
    --shadow-lime: 0 0 20px rgba(204, 255, 0, 0.3);
    
    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
    
    /* Spacing */
    --container-width: 1400px;
    --section-padding: 120px;
    
    /* Animations */
    --transition-speed: 0.3s;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

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

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

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */

.cyber-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#matrix-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 249, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 249, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 255, 249, 0.03) 50%,
        transparent 100%
    );
    animation: scanlineMove 8s linear infinite;
    pointer-events: none;
}

@keyframes scanlineMove {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 20px 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
}

.logo {
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform var(--transition-speed);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 45px;
    height: 45px;
}

.onion-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(var(--shadow-cyan));
}

.onion-layer {
    fill: none;
    stroke-width: 2;
    animation: pulseGlow 3s ease-in-out infinite;
}

.layer-1 {
    stroke: var(--neon-cyan);
    animation-delay: 0s;
}

.layer-2 {
    stroke: var(--neon-magenta);
    animation-delay: 0.3s;
}

.layer-3 {
    stroke: var(--neon-lime);
    animation-delay: 0.6s;
}

.onion-sprout {
    fill: none;
    stroke: var(--neon-lime);
    stroke-width: 2;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 1;
        filter: drop-shadow(0 0 5px currentColor);
    }
    50% {
        opacity: 0.7;
        filter: drop-shadow(0 0 15px currentColor);
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-display);
    line-height: 1;
}

.logo-main {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.logo-sub {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-year {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--neon-lime);
    margin-top: 2px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--neon-cyan);
    transition: var(--transition-speed);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition-speed);
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
    transition: width var(--transition-speed);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--neon-cyan);
}

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

.nav-cta {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.search-trigger {
    background: none;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    width: 45px;
    height: 45px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-speed);
}

.search-trigger:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: var(--shadow-cyan);
}

.search-trigger i {
    font-size: 18px;
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.search-overlay.active {
    display: flex;
    opacity: 1;
}

.search-container {
    position: relative;
    width: 90%;
    max-width: 700px;
}

.search-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--neon-cyan);
    font-size: 40px;
    cursor: pointer;
    transition: var(--transition-speed);
}

.search-close:hover {
    color: var(--neon-magenta);
    transform: rotate(90deg);
}

.search-box {
    position: relative;
    margin-bottom: 30px;
}

.search-box input {
    width: 100%;
    padding: 25px 60px 25px 25px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 20px;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition-speed);
}

.search-box input:focus {
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-cyan);
}

.search-box i {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--neon-cyan);
}

.search-results {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    max-height: 400px;
    overflow-y: auto;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    padding: 180px 0 120px;
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(0, 255, 249, 0.1);
    border: 1px solid var(--neon-cyan);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--neon-cyan);
    margin-bottom: 30px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 255, 249, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 249, 0.6);
    }
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(50px, 8vw, 90px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.glitch-text {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta), var(--neon-lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glitchAnimation 5s infinite;
}

@keyframes glitchAnimation {
    0%, 90%, 100% {
        transform: translate(0);
    }
    92% {
        transform: translate(-2px, 2px);
    }
    94% {
        transform: translate(2px, -2px);
    }
    96% {
        transform: translate(-2px, -2px);
    }
}

.hero-year {
    font-size: clamp(24px, 4vw, 40px);
    color: var(--neon-lime);
    text-shadow: 0 0 20px var(--neon-lime);
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: var(--shadow-cyan);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    color: var(--bg-dark);
    box-shadow: var(--shadow-cyan);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 249, 0.5);
}

.btn-secondary {
    background: rgba(255, 0, 110, 0.1);
    color: var(--neon-magenta);
    border-color: var(--neon-magenta);
}

.btn-secondary:hover {
    background: var(--neon-magenta);
    color: var(--bg-dark);
    box-shadow: var(--shadow-magenta);
}

.btn-outline {
    background: transparent;
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
}

.btn-outline:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: var(--shadow-cyan);
}

.btn-primary i,
.btn-secondary i,
.btn-outline i {
    font-size: 16px;
}

/* ============================================
   FLOATING TERMINAL
   ============================================ */

.hero-visual {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

.floating-terminal {
    width: 500px;
    background: rgba(17, 17, 17, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

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

.terminal-header {
    background: var(--bg-darker);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red {
    background: #ff5f56;
}

.terminal-dot.yellow {
    background: #ffbd2e;
}

.terminal-dot.green {
    background: #27c93f;
}

.terminal-title {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-secondary);
}

.terminal-body {
    padding: 25px;
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 2;
}

.terminal-line {
    margin-bottom: 10px;
}

.prompt {
    color: var(--neon-cyan);
    margin-right: 10px;
}

.command {
    color: var(--neon-magenta);
}

.output {
    color: var(--text-secondary);
}

.output.success {
    color: var(--neon-lime);
}

.cursor {
    color: var(--neon-cyan);
    animation: blink 1s infinite;
}

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

.typing-effect {
    overflow: hidden;
    border-right: 2px solid var(--neon-magenta);
    white-space: nowrap;
    animation: typing 3s steps(20) 1s infinite, blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* ============================================
   SECTIONS
   ============================================ */

.featured-section,
.categories-section,
.trust-section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.title-icon {
    color: var(--neon-cyan);
    font-size: 0.8em;
}

.title-line {
    flex: 1;
    max-width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
    transform: scaleX(0);
    transition: transform var(--transition-speed);
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-cyan);
    transform: translateY(-5px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-info h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.service-category {
    font-size: 13px;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background: rgba(0, 255, 249, 0.1);
    border-radius: 20px;
    font-weight: 600;
    color: var(--neon-cyan);
}

.service-rating i {
    font-size: 14px;
    color: var(--neon-cyan);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-url {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--neon-magenta);
    padding: 12px;
    background: rgba(255, 0, 110, 0.1);
    border-radius: 6px;
    word-break: break-all;
    margin-bottom: 20px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.service-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.status-dot.online {
    background: var(--neon-lime);
}

.status-dot.offline {
    background: #ff4444;
}

.service-link {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-speed);
}

.service-link:hover {
    color: var(--neon-magenta);
    gap: 10px;
}

.service-link i {
    font-size: 14px;
    transition: transform var(--transition-speed);
}

.service-link:hover i {
    transform: translateX(3px);
}

/* ============================================
   CATEGORIES GRID
   ============================================ */

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    text-decoration: none;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 249, 0.05), rgba(255, 0, 110, 0.05));
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.category-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-cyan);
    transform: translateY(-5px);
}

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

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 10px var(--neon-cyan));
    transition: all var(--transition-speed);
}

.category-card:hover .category-icon {
    color: var(--neon-magenta);
    filter: drop-shadow(0 0 20px var(--neon-magenta));
    transform: scale(1.1);
}

.category-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.category-count {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   ALL SERVICES SECTION
   ============================================ */

.all-services-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

/* Category Filters */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.filter-btn i {
    font-size: 14px;
}

.filter-btn:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    background: rgba(0, 255, 249, 0.1);
}

.filter-btn.active {
    border-color: var(--neon-cyan);
    color: var(--bg-dark);
    background: var(--neon-cyan);
    box-shadow: var(--shadow-cyan);
}

.filter-btn.active i {
    color: var(--bg-dark);
}

/* All Services Grid */
.all-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Service Card Enhancements for All Services */
.all-services-grid .service-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.all-services-grid .service-card:nth-child(1) { animation-delay: 0.05s; }
.all-services-grid .service-card:nth-child(2) { animation-delay: 0.1s; }
.all-services-grid .service-card:nth-child(3) { animation-delay: 0.15s; }
.all-services-grid .service-card:nth-child(4) { animation-delay: 0.2s; }
.all-services-grid .service-card:nth-child(5) { animation-delay: 0.25s; }
.all-services-grid .service-card:nth-child(6) { animation-delay: 0.3s; }

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

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-secondary);
}

.empty-state i {
    font-size: 64px;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.empty-state p {
    font-size: 16px;
}

/* ============================================
   TRUST SECTION
   ============================================ */

.trust-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.trust-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-icon {
    width: 300px;
    height: 300px;
    animation: float 6s ease-in-out infinite;
}

.shield-outline {
    animation: pulseGlow 3s ease-in-out infinite;
}

.trust-info h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    margin-bottom: 20px;
}

.trust-info > p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.trust-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.trust-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon.cyan {
    background: rgba(0, 255, 249, 0.1);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
}

.feature-icon.magenta {
    background: rgba(255, 0, 110, 0.1);
    border: 1px solid var(--neon-magenta);
    color: var(--neon-magenta);
}

.feature-icon.lime {
    background: rgba(204, 255, 0, 0.1);
    border: 1px solid var(--neon-lime);
    color: var(--neon-lime);
}

.feature-icon i {
    font-size: 22px;
}

.feature-text h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
    margin-top: var(--section-padding);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    color: var(--text-primary);
}

.footer-logo svg {
    width: 50px;
    height: 50px;
}

.footer-logo strong {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 400px;
}

.footer-year {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-speed);
    display: inline-block;
}

.footer-column a:hover {
    color: var(--neon-cyan);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-disclaimer {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 0, 110, 0.05);
    border: 1px solid rgba(255, 0, 110, 0.2);
    border-radius: 8px;
}

.footer-disclaimer i {
    font-size: 22px;
    color: var(--neon-magenta);
    flex-shrink: 0;
}

.footer-disclaimer p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-disclaimer strong {
    color: var(--neon-magenta);
}

/* ============================================
   LOADING STATE
   ============================================ */

.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 20px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 255, 249, 0.2);
    border-top-color: var(--neon-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loading-state p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1400px) {
    .hero-visual {
        display: none;
    }
}

@media (max-width: 1200px) {
    :root {
        --section-padding: 80px;
    }
    
    .trust-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .shield-icon {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .all-services-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-filters {
        gap: 10px;
    }
    
    .filter-btn {
        font-size: 12px;
        padding: 10px 18px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 18px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SAFETY GUIDE PAGE STYLES
   ============================================ */

.page-header {
    padding: 180px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    position: relative;
    z-index: 1;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.header-icon {
    font-size: 80px;
    color: var(--neon-cyan);
    margin-bottom: 30px;
    filter: drop-shadow(var(--shadow-cyan));
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.content-section {
    padding: 180px 0 120px; /* Increased to 180px to clear fixed nav + breadcrumbs */
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Guide Sections */
.guide-section {
    margin-bottom: 80px;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-magenta));
}

.guide-section.danger::before {
    background: linear-gradient(180deg, var(--neon-magenta), #ff4444);
}

.guide-section h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.guide-section h2 i {
    font-size: 28px;
}

.guide-section h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.guide-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.guide-section strong {
    color: var(--neon-cyan);
    font-weight: 600;
}

/* Warning Boxes */
.warning-box {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 0, 110, 0.1);
    border: 2px solid var(--neon-magenta);
    border-radius: 10px;
    margin-bottom: 50px;
}

.warning-box.critical {
    background: rgba(255, 68, 68, 0.1);
    border-color: #ff4444;
}

.warning-box > i {
    font-size: 32px;
    color: var(--neon-magenta);
    flex-shrink: 0;
}

.warning-box.critical > i {
    color: #ff4444;
}

.warning-box h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.warning-box p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Info Boxes */
.info-box {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(0, 255, 249, 0.1);
    border: 2px solid var(--neon-cyan);
    border-radius: 10px;
    margin: 50px 0;
}

.info-box > i {
    font-size: 32px;
    color: var(--neon-cyan);
    flex-shrink: 0;
}

.info-box h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.info-box p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* Danger List */
.danger-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.danger-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 68, 68, 0.05);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 10px;
    transition: all var(--transition-speed);
}

.danger-item:hover {
    border-color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

.danger-item > i {
    font-size: 28px;
    color: #ff4444;
    flex-shrink: 0;
}

.danger-item h4 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.danger-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Resource Links */
.resource-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.resource-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 35px 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    transition: all var(--transition-speed);
}

.resource-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-cyan);
    transform: translateY(-5px);
}

.resource-card i {
    font-size: 48px;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.resource-card h4 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.resource-card p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive for Safety Guide */
@media (max-width: 768px) {
    .page-header {
        padding: 150px 0 60px;
    }
    
    .header-icon {
        font-size: 60px;
    }
    
    .guide-section {
        padding: 30px 20px;
    }
    
    .guide-section h2 {
        font-size: 26px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .warning-box,
    .info-box {
        flex-direction: column;
        padding: 25px 20px;
    }
    
    .danger-item {
        flex-direction: column;
    }
    
    .resource-links {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* Mission Box */
.mission-box {
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 255, 249, 0.1), rgba(255, 0, 110, 0.1));
    border: 2px solid var(--neon-cyan);
    border-radius: 15px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta), var(--neon-lime));
}

.mission-box h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--neon-cyan);
    margin-bottom: 20px;
}

.mission-box p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.mission-box p:last-child {
    margin-bottom: 0;
}

/* About List */
.about-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.about-list li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.about-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-weight: bold;
    font-size: 18px;
}

.about-list li strong {
    color: var(--neon-cyan);
    font-weight: 600;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.value-card {
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-speed);
}

.value-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-cyan);
    transform: translateY(-5px);
}

.value-card i {
    font-size: 48px;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 10px var(--neon-cyan));
    transition: all var(--transition-speed);
}

.value-card:hover i {
    color: var(--neon-magenta);
    filter: drop-shadow(0 0 20px var(--neon-magenta));
    transform: scale(1.1);
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Contact Card */
.contact-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(0, 255, 249, 0.05);
    border: 2px solid var(--neon-cyan);
    border-radius: 12px;
    margin-top: 30px;
    align-items: flex-start;
}

.contact-card i {
    font-size: 32px;
    color: var(--neon-cyan);
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.contact-card h4 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.contact-card a {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-speed);
}

.contact-card a:hover {
    color: var(--neon-magenta);
    text-decoration: underline;
}

/* Responsive for About Page */
@media (max-width: 768px) {
    .mission-box {
        padding: 30px 20px;
    }
    
    .mission-box h2 {
        font-size: 26px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        flex-direction: column;
        padding: 25px 20px;
    }
    
    .about-list li {
        font-size: 16px;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Methods */
.contact-methods {
    margin-bottom: 60px;
}

.contact-methods h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--neon-cyan);
    text-align: center;
    margin-bottom: 40px;
}

.method-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.method-card {
    padding: 40px 30px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed);
    position: relative;
}

.method-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-cyan);
    transform: translateY(-3px);
}

.method-card.active {
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 249, 0.05);
    box-shadow: var(--shadow-cyan);
}

.method-card i {
    font-size: 48px;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    display: block;
}

.method-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.method-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.method-card .recommended {
    display: inline-block;
    margin-top: 15px;
    padding: 6px 15px;
    background: var(--neon-lime);
    color: var(--bg-dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

/* Contact Form */
.contact-form-container {
    margin-bottom: 60px;
}

.contact-form-container.hidden {
    display: none;
}

.contact-form {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
}

.contact-form h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--neon-cyan);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.form-group .optional {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 14px;
}

.form-group .required {
    color: var(--neon-magenta);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-darker);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    transition: all var(--transition-speed);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 3px rgba(0, 255, 249, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300fff9' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    font-family: var(--font-body);
}

.char-count {
    text-align: right;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
}

.char-count span {
    color: var(--neon-cyan);
    font-weight: 600;
}

/* Form Notice */
.form-notice {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 255, 249, 0.05);
    border: 1px solid var(--neon-cyan);
    border-radius: 8px;
    margin-bottom: 30px;
}

.form-notice i {
    font-size: 20px;
    color: var(--neon-cyan);
    flex-shrink: 0;
}

.form-notice p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.form-actions button {
    flex: 1;
    min-width: 200px;
}

/* Form Response */
.form-response {
    display: none;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
}

.form-response.success {
    background: rgba(204, 255, 0, 0.1);
    border: 2px solid var(--neon-lime);
    color: var(--neon-lime);
}

.form-response.error {
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid #ff4444;
    color: #ff4444;
}

.form-response i {
    font-size: 24px;
}

.form-response p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

/* PGP Container */
.pgp-container {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
}

.pgp-container h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--neon-cyan);
    margin-bottom: 30px;
}

.pgp-info {
    margin-bottom: 40px;
}

.pgp-step {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border-color);
}

.pgp-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--neon-cyan);
    color: var(--bg-dark);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.code-block {
    padding: 15px 20px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-top: 15px;
}

.code-block code {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--neon-lime);
}

.email-display {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--bg-darker);
    border: 2px solid var(--neon-cyan);
    border-radius: 8px;
    margin-top: 15px;
}

.email-display i {
    font-size: 20px;
    color: var(--neon-cyan);
}

.email-display span {
    flex: 1;
    font-family: var(--font-mono);
    font-size: 16px;
    color: var(--text-primary);
}

.copy-btn {
    padding: 8px 15px;
    background: var(--neon-cyan);
    color: var(--bg-dark);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.copy-btn:hover {
    background: var(--neon-magenta);
}

/* PGP Key Display */
.pgp-key-display {
    padding: 30px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 30px;
}

.pgp-key-display h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--neon-cyan);
    margin-bottom: 15px;
}

.key-fingerprint {
    padding: 15px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 20px;
}

.key-fingerprint strong {
    color: var(--text-primary);
    margin-right: 10px;
}

.key-fingerprint code {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--neon-lime);
}

.pgp-key {
    width: 100%;
    height: 200px;
    padding: 15px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-secondary);
    resize: vertical;
    margin-bottom: 15px;
}

/* Report Types */
.report-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.report-type {
    padding: 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    text-align: center;
    transition: all var(--transition-speed);
}

.report-type:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-cyan);
}

.report-type i {
    font-size: 36px;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    display: block;
}

.report-type h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.report-type p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Response Times */
.response-times {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.time-item {
    text-align: center;
}

.time-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.time-badge.urgent {
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid #ff4444;
    color: #ff4444;
}

.time-badge.normal {
    background: rgba(0, 255, 249, 0.1);
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
}

.time-badge.low {
    background: rgba(204, 255, 0, 0.1);
    border: 2px solid var(--neon-lime);
    color: var(--neon-lime);
}

.time-badge i {
    font-size: 32px;
}

.time-badge span {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
}

.response-note {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 20px;
}

/* Alternative Contact */
.alt-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.alt-method {
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.alt-method i {
    font-size: 36px;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    display: block;
}

.alt-method h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.alt-method p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.alt-method a {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
}

.alt-method a:hover {
    text-decoration: underline;
}

/* FAQ List */
.faq-list {
    margin-top: 30px;
}

.faq-item {
    padding: 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--neon-cyan);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.faq-item a {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Notification Toast */
.notification-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 15px 25px;
    background: var(--bg-card);
    border: 2px solid var(--neon-cyan);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.3s ease-out;
    z-index: 9999;
}

.notification-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.notification-toast.success {
    border-color: var(--neon-lime);
}

.notification-toast i {
    font-size: 20px;
    color: var(--neon-cyan);
}

.notification-toast.success i {
    color: var(--neon-lime);
}

.notification-toast span {
    font-size: 15px;
    color: var(--text-primary);
}

/* Responsive for Contact Page */
@media (max-width: 968px) {
    .method-cards {
        grid-template-columns: 1fr;
    }
    
    .response-times {
        grid-template-columns: 1fr;
    }
    
    .alt-contact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions button {
        width: 100%;
    }
    
    .pgp-container {
        padding: 30px 20px;
    }
    
    .pgp-step {
        flex-direction: column;
    }
    
    .report-types {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   GLOSSARY PAGE STYLES
   ============================================ */

/* Glossary Intro */
.glossary-intro {
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--neon-cyan);
    border-radius: 10px;
    margin-bottom: 40px;
}

.glossary-intro p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* Alphabet Navigation */
.alphabet-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 50px;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.alpha-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-darker);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-speed);
}

.alpha-link:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    border-color: var(--neon-cyan);
    transform: translateY(-2px);
    box-shadow: var(--shadow-cyan);
}

/* Glossary Sections */
.glossary-section {
    margin-bottom: 60px;
    scroll-margin-top: 140px;
}

.letter-heading {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 255, 249, 0.5);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--neon-cyan);
}

/* Terms List */
.terms-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Term Cards */
.term-card {
    padding: 25px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--neon-magenta);
    border-radius: 10px;
    transition: all var(--transition-speed);
}

.term-card:hover {
    border-left-color: var(--neon-cyan);
    box-shadow: var(--shadow-subtle);
    transform: translateX(5px);
}

.term-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.term-title::before {
    content: "▸";
    color: var(--neon-magenta);
    margin-right: 10px;
    font-size: 20px;
}

.term-definition {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* Responsive for Glossary */
@media (max-width: 768px) {
    .alphabet-nav {
        gap: 8px;
        padding: 20px 15px;
        position: relative;
        top: 0;
    }
    
    .alpha-link {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .letter-heading {
        font-size: 36px;
    }
    
    .term-card {
        padding: 20px;
    }
    
    .term-title {
        font-size: 20px;
    }
    
    .term-definition {
        font-size: 15px;
    }
    
    .glossary-section {
        scroll-margin-top: 100px;
    }
}

/* ============================================
   KNOWLEDGE BASE STYLES
   ============================================ */

/* Navigation Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.has-dropdown.active .dropdown-toggle i,
.has-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 15, 0.98);
    border: 2px solid var(--neon-cyan);
    border-radius: 8px;
    min-width: 240px;
    max-height: 500px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.4), 
                0 0 20px rgba(0, 255, 255, 0.2);
}

/* Custom scrollbar for dropdown */
.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--neon-cyan);
    border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--neon-magenta);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background: rgba(0, 255, 255, 0.15);
    color: var(--neon-cyan);
    border-left-color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
    padding-left: 2rem;
}

/* Mobile dropdown adjustments */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        box-shadow: none;
        padding-left: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 0;
    }
    
    .has-dropdown.active .dropdown-menu {
        max-height: 600px;
        border-top: 1px solid rgba(0, 255, 255, 0.3);
        margin-top: 0.5rem;
    }
    
    .dropdown-menu a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* KB Wrapper */
.kb-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

/* KB Intro */
.kb-intro {
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--neon-cyan);
    border-radius: 10px;
    margin-bottom: 60px;
}

.kb-intro p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* KB Categories */
.kb-categories {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* KB Category */
.kb-category {
    scroll-margin-top: 100px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--neon-cyan);
}

.category-header i {
    font-size: 36px;
    color: var(--neon-cyan);
}

.category-header h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.article-count {
    font-size: 14px;
    color: var(--text-muted);
    padding: 6px 12px;
    background: var(--bg-darker);
    border-radius: 20px;
}

/* Article Grid */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

/* KB Article Card */
.kb-article-card {
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    transition: all var(--transition-speed);
    display: flex;
    flex-direction: column;
}

.kb-article-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-cyan);
    transform: translateY(-5px);
}

.article-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 249, 0.1);
    border: 2px solid var(--neon-cyan);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.article-icon i {
    font-size: 24px;
    color: var(--neon-cyan);
}

.kb-article-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.kb-article-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.difficulty {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.difficulty.beginner {
    background: rgba(204, 255, 0, 0.1);
    color: var(--neon-lime);
}

.difficulty.intermediate {
    background: rgba(0, 255, 249, 0.1);
    color: var(--neon-cyan);
}

.difficulty.advanced {
    background: rgba(255, 0, 110, 0.1);
    color: var(--neon-magenta);
}

.read-time {
    font-size: 13px;
    color: var(--text-muted);
}

/* KB Footer CTA */
.kb-footer-cta {
    margin-top: 80px;
    padding: 50px;
    background: var(--bg-card);
    border: 2px solid var(--neon-cyan);
    border-radius: 15px;
    text-align: center;
}

.kb-footer-cta h2 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--neon-cyan);
    margin-bottom: 15px;
}

.kb-footer-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Article Page Styles */
.article-content {
    max-width: 900px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.article-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 900;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-meta-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.breadcrumb {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
    padding-top: 10px;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--neon-cyan);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-body {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-secondary);
}

.article-body h2 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--neon-cyan);
    margin-top: 50px;
    margin-bottom: 25px;
}

.article-body h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--text-primary);
    margin-top: 35px;
    margin-bottom: 20px;
}

.article-body p {
    margin-bottom: 25px;
}

.article-body ul,
.article-body ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 12px;
}

.article-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

.tip-box,
.warning-box,
.info-box {
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid;
}

.tip-box {
    background: rgba(204, 255, 0, 0.05);
    border-color: var(--neon-lime);
}

.warning-box {
    background: rgba(255, 0, 110, 0.05);
    border-color: var(--neon-magenta);
}

.info-box {
    background: rgba(0, 255, 249, 0.05);
    border-color: var(--neon-cyan);
}

.related-articles {
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.related-articles h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--neon-cyan);
    margin-bottom: 25px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.related-link {
    padding: 20px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--transition-speed);
}

.related-link:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-3px);
}

.related-link h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.related-link p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* Responsive KB */
@media (max-width: 968px) {
    .article-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .category-header {
        flex-wrap: wrap;
    }
    
    .category-header i {
        font-size: 28px;
    }
    
    .category-header h2 {
        font-size: 26px;
    }
    
    .article-grid {
        grid-template-columns: 1fr;
    }
    
    .kb-footer-cta {
        padding: 30px 20px;
    }
    
    .kb-footer-cta h2 {
        font-size: 26px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline {
        width: 100%;
    }
    
    .article-title {
        font-size: 32px;
    }
    
    .article-body {
        font-size: 16px;
    }
    
    .article-body h2 {
        font-size: 26px;
    }
    
    .article-body h3 {
        font-size: 20px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   UTILITIES
   ============================================ */

.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0 !important;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--neon-cyan);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-magenta);
}

/* ============================================
   LAST UPDATED STYLING
   ============================================ */

/* Footer Last Updated */
.footer-last-updated {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    margin-top: 1rem;
}

.footer-last-updated .last-updated {
    color: var(--neon-cyan);
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-last-updated .last-updated i {
    color: var(--neon-magenta);
}

.footer-last-updated .last-updated span {
    font-weight: 600;
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* Article Meta Last Updated */
.article-meta-bar .read-time {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

/* ============================================
   ENHANCED FOOTER STYLING
   ============================================ */

/* Footer Brand Stats */
.footer-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.footer-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neon-cyan);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-stats i {
    color: var(--neon-magenta);
    font-size: 1rem;
}

/* Footer Mirrors Section - Full Width */
.footer-mirrors-section {
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(0, 255, 249, 0.2);
    border-bottom: 1px solid rgba(0, 255, 249, 0.2);
}

.mirrors-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    color: var(--neon-cyan);
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    justify-content: center;
}

.mirrors-title i {
    color: var(--neon-magenta);
    font-size: 1.5rem;
}

.mirrors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.mirror-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: rgba(0, 255, 249, 0.05);
    border: 2px solid rgba(0, 255, 249, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mirror-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mirror-card:hover::before {
    transform: scaleX(1);
}

.mirror-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 8px 32px rgba(0, 255, 249, 0.3);
    transform: translateY(-5px);
}

.mirror-card.clearnet-alt {
    background: rgba(0, 255, 249, 0.03);
}

.mirror-card.onion {
    background: rgba(255, 0, 110, 0.05);
    border-color: rgba(255, 0, 110, 0.2);
}

.mirror-card.onion:hover {
    border-color: var(--neon-magenta);
    box-shadow: 0 8px 32px rgba(255, 0, 110, 0.3);
}

.mirror-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 249, 0.1);
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mirror-card.onion .mirror-icon {
    background: rgba(255, 0, 110, 0.1);
    border-color: var(--neon-magenta);
}

.mirror-icon i {
    font-size: 28px;
    color: var(--neon-cyan);
}

.mirror-card.onion .mirror-icon i {
    color: var(--neon-magenta);
}

.mirror-card:hover .mirror-icon {
    transform: scale(1.1) rotate(5deg);
}

.mirror-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.mirror-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.mirror-url {
    font-size: 1rem;
    color: var(--neon-cyan);
    font-family: 'Share Tech Mono', monospace;
    font-weight: 600;
    word-break: break-all;
}

.mirror-card.onion .mirror-url {
    color: var(--neon-magenta);
    font-size: 0.7rem;
    line-height: 1.4;
}

.mirror-status {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mirror-status.online {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .mirrors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .mirrors-grid {
        grid-template-columns: 1fr;
    }
    
    .mirror-card {
        padding: 1.5rem;
    }
}

/* Footer Column Headers */
.footer-column h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column h4 i {
    color: var(--neon-magenta);
    font-size: 1.2rem;
}

/* Footer Links Enhanced */
.footer-column ul li a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 1rem;
}

.footer-column ul li a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--neon-magenta);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--neon-cyan);
    padding-left: 1.5rem;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.footer-column ul li a:hover::before {
    opacity: 1;
}

/* Footer Bottom Enhanced */
.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 255, 255, 0.3);
}

.footer-disclaimer {
    background: rgba(255, 0, 255, 0.05);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-disclaimer i {
    color: var(--neon-magenta);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.footer-disclaimer p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer-copyright p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-tagline {
    color: var(--neon-cyan) !important;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem !important;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-stats {
        gap: 1rem;
    }
    
    .footer-stats span {
        font-size: 0.85rem;
    }
    
    .footer-column h4 {
        font-size: 1rem;
    }
    
    .footer-last-updated .last-updated {
        font-size: 0.85rem;
    }
    
    .footer-disclaimer {
        padding: 1rem;
    }
    
    .footer-disclaimer p {
        font-size: 0.85rem;
    }
}

/* ============================================
   CAPTCHA STYLING (Contact Form)
   ============================================ */

.captcha-group {
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid var(--neon-cyan);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.captcha-group label {
    color: var(--neon-cyan);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: block;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.captcha-question {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 2px solid var(--neon-magenta);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
}

.captcha-question i {
    color: var(--neon-magenta);
    font-size: 1.5rem;
}

.math-problem {
    color: var(--neon-cyan);
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.captcha-container input[type="text"] {
    flex: 1;
    max-width: 250px;
    min-width: 200px;
    background: var(--bg-darker);
    border: 2px solid var(--neon-cyan);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    color: var(--neon-cyan);
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    text-align: center;
    transition: all 0.3s ease;
}

.captcha-container input[type="text"]:focus {
    outline: none;
    border-color: var(--neon-magenta);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transform: scale(1.05);
}

.captcha-help {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.captcha-help i {
    color: var(--neon-cyan);
}

.captcha-error {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff0040;
    border-radius: 8px;
    padding: 1rem;
    color: #ff0040;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.captcha-error i {
    font-size: 1.3rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .captcha-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .captcha-question {
        justify-content: center;
    }
    
    .captcha-container input[type="text"] {
        max-width: 100%;
    }
    
    .math-problem {
        font-size: 1.1rem;
    }
}

/* Email Contact Inline Display */
.email-contact-box {
    background: linear-gradient(135deg, rgba(0, 255, 249, 0.05), rgba(255, 0, 110, 0.05));
    border: 2px solid rgba(0, 255, 249, 0.3);
}

.email-display-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 249, 0.2);
}

.email-address {
    flex: 1;
    text-align: center;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.1rem;
    color: var(--neon-cyan);
    padding: 0.5rem;
    background: transparent;
    user-select: all;
    cursor: text;
}


.copy-btn-inline:hover {
    background: rgba(0, 255, 249, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 249, 0.3);
}

.copy-btn-inline i {
    font-size: 0.9rem;
}

.email-note {
    margin-top: 0.5rem;
    opacity: 0.8;
}

.email-note small {
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 640px) {
    .email-display-inline {
        flex-direction: column;
        align-items: stretch;
    }
    
