/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Rajdhani', sans-serif;
    background: #000000;
    color: #ccfaff;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Enhanced Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 204, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 225, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 74, 51, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 30%, rgba(138, 43, 226, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #001122 25%, #000a0f 50%, #001122 75%, #000000 100%);
    animation: bgPulse 12s ease-in-out infinite alternate;
}

@keyframes bgPulse {
    0% { 
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
    100% { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced Vertical Navigation Sidebar */
.nav-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 17, 34, 0.95) 50%, rgba(0, 0, 0, 0.98) 100%);
    backdrop-filter: blur(15px);
    border-right: 3px solid transparent;
    border-image: linear-gradient(180deg, #00ffcc, #00ffe1, #ff4a33) 1;
    z-index: 1000;
    padding: 2rem 0;
    box-shadow: 
        0 0 40px rgba(0, 255, 204, 0.4),
        inset 0 0 20px rgba(0, 255, 204, 0.05);
    transition: all 0.3s ease;
}

.nav-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 204, 0.02) 50%, transparent 70%);
    pointer-events: none;
}

.nav-logo {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
    position: relative;
}

.logo-glow {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #00ffcc;
    text-shadow: 
        0 0 10px #00ffcc,
        0 0 20px #00ffcc,
        0 0 30px #00ffcc,
        0 0 40px #00ffcc;
    animation: logoFlicker 4s ease-in-out infinite alternate;
    position: relative;
}

.logo-glow::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 204, 0.1), transparent);
    border-radius: 8px;
    z-index: -1;
    animation: logoHalo 6s linear infinite;
}

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

.logo-sub {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    color: #00ffe1;
    margin-top: 0.5rem;
    letter-spacing: 4px;
    text-shadow: 0 0 10px #00ffe1;
}

@keyframes logoFlicker {
    0%, 100% { 
        opacity: 1;
        text-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc, 0 0 30px #00ffcc, 0 0 40px #00ffcc;
    }
    25% { 
        opacity: 0.9;
        text-shadow: 0 0 15px #00ffcc, 0 0 25px #00ffcc, 0 0 35px #00ffcc, 0 0 45px #00ffcc;
    }
    50% { 
        opacity: 0.8;
        text-shadow: 0 0 20px #00ffcc, 0 0 30px #00ffcc, 0 0 40px #00ffcc, 0 0 50px #00ffcc;
    }
    75% { 
        opacity: 0.9;
        text-shadow: 0 0 15px #00ffcc, 0 0 25px #00ffcc, 0 0 35px #00ffcc, 0 0 45px #00ffcc;
    }
}

.nav-menu {
    list-style: none;
    padding: 0;
}

.nav-menu li {
    margin: 0.3rem 0;
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.5rem;
    color: #ccfaff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 204, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.nav-link:hover {
    color: #00ffcc;
    border-left-color: #00ffcc;
    background: rgba(0, 255, 204, 0.12);
    box-shadow: 
        inset 0 0 25px rgba(0, 255, 204, 0.15),
        0 0 15px rgba(0, 255, 204, 0.3);
    transform: translateX(8px);
}

.nav-link.active {
    color: #00ffcc;
    border-left-color: #00ffcc;
    background: rgba(0, 255, 204, 0.18);
    box-shadow: 
        inset 0 0 30px rgba(0, 255, 204, 0.25),
        0 0 20px rgba(0, 255, 204, 0.4);
    transform: translateX(12px);
}

.nav-icon {
    font-size: 1.3rem;
    margin-right: 1.2rem;
    width: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.nav-link:hover .nav-icon,
.nav-link.active .nav-icon {
    transform: scale(1.2);
    text-shadow: 0 0 10px currentColor;
}

.nav-text {
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

/* Enhanced Main Content */
.main-content {
    margin-left: 300px;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 255, 204, 0.01) 50%, transparent 100%);
    pointer-events: none;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    font-weight: 700;
    color: #00ffcc;
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ffcc, transparent);
    border-radius: 2px;
}

.neon-glow {
    text-shadow: 
        0 0 10px #00ffcc,
        0 0 20px #00ffcc,
        0 0 30px #00ffcc,
        0 0 40px #00ffcc,
        0 0 50px #00ffcc;
    animation: neonPulse 3s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    0% { 
        text-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc, 0 0 30px #00ffcc, 0 0 40px #00ffcc;
        transform: scale(1);
    }
    100% { 
        text-shadow: 0 0 20px #00ffcc, 0 0 30px #00ffcc, 0 0 40px #00ffcc, 0 0 50px #00ffcc, 0 0 60px #00ffcc;
        transform: scale(1.02);
    }
}

/* Enhanced Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 255, 204, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(0, 255, 225, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 17, 34, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2300ffcc" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4.5rem;
    font-weight: 900;
    color: #00ffcc;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    position: relative;
}

.glitch-text {
    position: relative;
    animation: glitch 3s infinite;
}

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

.glitch-text::before {
    animation: glitch-1 0.8s infinite;
    color: #ff4a33;
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 0.8s infinite;
    color: #00ffe1;
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    10% { transform: translate(-3px, 3px); }
    20% { transform: translate(3px, -3px); }
    30% { transform: translate(-3px, -3px); }
    40% { transform: translate(3px, 3px); }
    50% { transform: translate(-2px, 2px); }
    60% { transform: translate(2px, -2px); }
    70% { transform: translate(-2px, -2px); }
    80% { transform: translate(2px, 2px); }
    90% { transform: translate(-1px, 1px); }
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    10% { transform: translate(-2px, -2px); }
    20% { transform: translate(2px, 2px); }
    30% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    50% { transform: translate(-1px, -1px); }
    60% { transform: translate(1px, 1px); }
    70% { transform: translate(-1px, 1px); }
    80% { transform: translate(1px, -1px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    10% { transform: translate(2px, 2px); }
    20% { transform: translate(-2px, -2px); }
    30% { transform: translate(2px, -2px); }
    40% { transform: translate(-2px, 2px); }
    50% { transform: translate(1px, 1px); }
    60% { transform: translate(-1px, -1px); }
    70% { transform: translate(1px, -1px); }
    80% { transform: translate(-1px, 1px); }
}

.hero-subtitle {
    font-size: 1.6rem;
    color: #ccfaff;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(204, 250, 255, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 1.5rem;
    background: rgba(0, 255, 204, 0.05);
    border: 1px solid rgba(0, 255, 204, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 255, 204, 0.1);
    border-color: #00ffcc;
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.3);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    font-weight: 700;
    color: #00ffe1;
    text-shadow: 0 0 15px #00ffe1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #ccfaff;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Enhanced Onion Links Section */
.onion-section {
    background: 
        linear-gradient(135deg, rgba(0, 255, 204, 0.03) 0%, transparent 50%, rgba(0, 255, 204, 0.03) 100%);
    border-top: 2px solid rgba(0, 255, 204, 0.3);
    border-bottom: 2px solid rgba(0, 255, 204, 0.3);
    position: relative;
}

.onion-container {
    max-width: 900px;
    margin: 0 auto;
}

.onion-warning {
    background: linear-gradient(135deg, rgba(255, 74, 51, 0.15) 0%, rgba(255, 74, 51, 0.08) 100%);
    border: 2px solid #ff4a33;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.onion-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 74, 51, 0.2), transparent);
    animation: warningPulse 3s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.onion-warning p {
    color: #ff4a33;
    font-weight: 700;
    margin: 0;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255, 74, 51, 0.5);
    position: relative;
    z-index: 2;
}

.onion-links-block {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 17, 34, 0.8) 50%, rgba(0, 0, 0, 0.9) 100%);
    border: 3px solid transparent;
    border-image: linear-gradient(135deg, #00ffcc, #00ffe1, #00ffcc) 1;
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 
        0 0 30px rgba(0, 255, 204, 0.4),
        inset 0 0 30px rgba(0, 255, 204, 0.08);
    position: relative;
}

.onion-links-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 204, 0.03) 50%, transparent 70%);
    border-radius: 13px;
    pointer-events: none;
}

.onion-link {
    display: block;
    color: #00ffe1;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-size: 1.15rem;
    padding: 1rem 1.5rem;
    margin: 0.8rem 0;
    background: linear-gradient(135deg, rgba(0, 255, 225, 0.08) 0%, rgba(0, 255, 225, 0.03) 100%);
    border: 2px solid rgba(0, 255, 225, 0.3);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.onion-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 225, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.onion-link:hover {
    color: #ffaa88;
    background: linear-gradient(135deg, rgba(255, 170, 136, 0.15) 0%, rgba(255, 170, 136, 0.08) 100%);
    border-color: #ffaa88;
    box-shadow: 
        0 0 20px rgba(255, 170, 136, 0.4),
        inset 0 0 20px rgba(255, 170, 136, 0.1);
    transform: translateX(15px) scale(1.02);
}

.onion-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: #00ffcc;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem;
    background: rgba(0, 255, 204, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 204, 0.2);
}

.status-indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #00ffcc;
    box-shadow: 
        0 0 15px #00ffcc,
        inset 0 0 5px rgba(255, 255, 255, 0.3);
    animation: statusPulse 2.5s ease-in-out infinite;
    position: relative;
}

.status-indicator::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #00ffcc;
    border-radius: 50%;
    opacity: 0.5;
    animation: statusRing 2.5s ease-in-out infinite;
}

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

@keyframes statusRing {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: scale(1.3);
        opacity: 0.2;
    }
}

/* Enhanced About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.9;
    color: #ccfaff;
    text-align: justify;
    position: relative;
    padding-left: 1rem;
}

.about-text p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #00ffcc, transparent);
    border-radius: 2px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.08) 0%, rgba(0, 255, 204, 0.03) 100%);
    border: 2px solid rgba(0, 255, 204, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 204, 0.05) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.15) 0%, rgba(0, 255, 204, 0.08) 100%);
    border-color: #00ffcc;
    box-shadow: 
        0 0 30px rgba(0, 255, 204, 0.3),
        inset 0 0 20px rgba(0, 255, 204, 0.1);
    transform: translateY(-8px) scale(1.02);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    text-shadow: 0 0 15px currentColor;
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffcc;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.feature-card p {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Enhanced Registration Section */
.registration-flow {
    max-width: 1000px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.05) 0%, rgba(0, 255, 204, 0.02) 100%);
    border-left: 5px solid #00ffcc;
    border-radius: 0 16px 16px 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.flow-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #00ffcc, #00ffe1, #00ffcc);
    animation: stepGlow 3s ease-in-out infinite alternate;
}

@keyframes stepGlow {
    0% { box-shadow: 0 0 10px #00ffcc; }
    100% { box-shadow: 0 0 20px #00ffcc, 0 0 30px #00ffcc; }
}

.flow-step:hover {
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1) 0%, rgba(0, 255, 204, 0.05) 100%);
    box-shadow: 
        0 0 30px rgba(0, 255, 204, 0.2),
        inset 0 0 20px rgba(0, 255, 204, 0.05);
    transform: translateX(10px);
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00ffcc 0%, #00ffe1 100%);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 
        0 0 25px rgba(0, 255, 204, 0.6),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #00ffcc;
    border-radius: 50%;
    opacity: 0.5;
    animation: numberRing 3s ease-in-out infinite;
}

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

.step-content h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffe1;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(0, 255, 225, 0.5);
}

.step-content p {
    line-height: 1.8;
    color: #ccfaff;
    font-size: 1.05rem;
}

/* Enhanced Security Section */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.security-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 17, 34, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
    border: 3px solid rgba(0, 255, 204, 0.4);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.security-card:hover {
    border-color: #00ffcc;
    box-shadow: 
        0 0 40px rgba(0, 255, 204, 0.4),
        inset 0 0 20px rgba(0, 255, 204, 0.1);
    transform: translateY(-8px) scale(1.02);
}

.security-card h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffcc;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.security-card p {
    line-height: 1.8;
    color: #ccfaff;
    font-size: 1.05rem;
}

/* Enhanced Monero Section */
.monero-section {
    background: linear-gradient(135deg, rgba(255, 74, 51, 0.03) 0%, transparent 50%, rgba(255, 74, 51, 0.03) 100%);
    position: relative;
}

.monero-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(17, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    border-radius: 24px;
    border: 3px solid rgba(255, 74, 51, 0.4);
    position: relative;
    overflow: hidden;
}

.monero-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 74, 51, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.monero-logo {
    font-family: 'Orbitron', monospace;
    font-size: 5rem;
    font-weight: 900;
    color: #ff4a33;
    text-shadow: 
        0 0 15px #ff4a33,
        0 0 30px #ff4a33,
        0 0 45px #ff4a33,
        0 0 60px #ff4a33;
    animation: moneroGlow 4s ease-in-out infinite alternate;
    position: relative;
    z-index: 2;
}

.monero-logo::after {
    content: 'XMR';
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(255, 74, 51, 0.3);
    animation: moneroEcho 4s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes moneroGlow {
    0% { 
        text-shadow: 0 0 15px #ff4a33, 0 0 30px #ff4a33, 0 0 45px #ff4a33;
        transform: scale(1);
    }
    100% { 
        text-shadow: 0 0 25px #ff4a33, 0 0 40px #ff4a33, 0 0 55px #ff4a33, 0 0 70px #ff4a33;
        transform: scale(1.05);
    }
}

@keyframes moneroEcho {
    0% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    100% { 
        transform: translate(5px, 5px) scale(1.1);
        opacity: 0.1;
    }
}

.monero-text {
    position: relative;
    z-index: 2;
}

.monero-text h3 {
    font-family: 'Orbitron', monospace;
    color: #ff4a33;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 74, 51, 0.5);
}

.monero-text p {
    font-size: 1.3rem;
    color: #ccfaff;
    line-height: 1.7;
}

.monero-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.advantage-item {
    background: linear-gradient(135deg, rgba(255, 74, 51, 0.08) 0%, rgba(255, 74, 51, 0.03) 100%);
    border: 2px solid rgba(255, 74, 51, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 74, 51, 0.15), transparent);
    transition: left 0.5s ease;
}

.advantage-item:hover::before {
    left: 100%;
}

.advantage-item:hover {
    background: linear-gradient(135deg, rgba(255, 74, 51, 0.15) 0%, rgba(255, 74, 51, 0.08) 100%);
    border-color: #ff4a33;
    box-shadow: 
        0 0 30px rgba(255, 74, 51, 0.3),
        inset 0 0 20px rgba(255, 74, 51, 0.1);
    transform: translateY(-5px);
}

.advantage-item h4 {
    font-family: 'Orbitron', monospace;
    color: #ff4a33;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(255, 74, 51, 0.5);
}

.advantage-item p {
    line-height: 1.8;
    color: #ccfaff;
    font-size: 1.05rem;
}

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

.level-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 17, 34, 0.6) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.level-1 {
    border: 3px solid #ff4a33;
}

.level-2 {
    border: 3px solid #ffaa88;
}

.level-3 {
    border: 3px solid #00ffcc;
}

.level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 17px;
}

.level-1::before {
    background: linear-gradient(135deg, rgba(255, 74, 51, 0.1) 0%, rgba(255, 74, 51, 0.05) 100%);
}

.level-2::before {
    background: linear-gradient(135deg, rgba(255, 170, 136, 0.1) 0%, rgba(255, 170, 136, 0.05) 100%);
}

.level-3::before {
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1) 0%, rgba(0, 255, 204, 0.05) 100%);
}

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

.level-card:hover {
    transform: translateY(-12px) scale(1.02);
}

.level-1:hover {
    box-shadow: 0 25px 50px rgba(255, 74, 51, 0.4);
}

.level-2:hover {
    box-shadow: 0 25px 50px rgba(255, 170, 136, 0.4);
}

.level-3:hover {
    box-shadow: 0 25px 50px rgba(0, 255, 204, 0.4);
}

.level-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.level-1 .level-badge {
    background: linear-gradient(135deg, #ff4a33 0%, #ff6b54 100%);
    color: #000000;
}

.level-2 .level-badge {
    background: linear-gradient(135deg, #ffaa88 0%, #ffbb99 100%);
    color: #000000;
}

.level-3 .level-badge {
    background: linear-gradient(135deg, #00ffcc 0%, #00ffe1 100%);
    color: #000000;
}

.level-card h4 {
    font-family: 'Orbitron', monospace;
    margin: 2.5rem 0 1.5rem;
    font-size: 1.4rem;
}

.level-1 h4 {
    color: #ff4a33;
    text-shadow: 0 0 10px rgba(255, 74, 51, 0.5);
}

.level-2 h4 {
    color: #ffaa88;
    text-shadow: 0 0 10px rgba(255, 170, 136, 0.5);
}

.level-3 h4 {
    color: #00ffcc;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.level-card p {
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #ccfaff;
    font-size: 1.05rem;
}

.level-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.level-features span {
    font-size: 1rem;
    opacity: 0.95;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border-left: 3px solid currentColor;
}

/* Enhanced Roadmap Section */
.roadmap-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #00ffcc 0%, #00ffe1 50%, #ff4a33 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 100px;
}

.timeline-marker {
    position: absolute;
    left: 28px;
    top: 25px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 4px solid #00ffcc;
    background: #000000;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.5);
    transition: all 0.3s ease;
}

.timeline-item.completed .timeline-marker {
    background: #00ffcc;
    box-shadow: 
        0 0 20px #00ffcc,
        inset 0 0 10px rgba(255, 255, 255, 0.3);
}

.timeline-item.current .timeline-marker {
    background: #00ffe1;
    border-color: #00ffe1;
    box-shadow: 
        0 0 25px #00ffe1,
        inset 0 0 10px rgba(255, 255, 255, 0.3);
    animation: currentPulse 2.5s ease-in-out infinite;
}

@keyframes currentPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 25px #00ffe1, inset 0 0 10px rgba(255, 255, 255, 0.3);
    }
    50% { 
        transform: scale(1.3);
        box-shadow: 0 0 35px #00ffe1, 0 0 50px #00ffe1, inset 0 0 15px rgba(255, 255, 255, 0.5);
    }
}

.timeline-content {
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.08) 0%, rgba(0, 255, 204, 0.03) 100%);
    border: 2px solid rgba(0, 255, 204, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 204, 0.1), transparent);
    transition: left 0.5s ease;
}

.timeline-content:hover::before {
    left: 100%;
}

.timeline-content:hover {
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.15) 0%, rgba(0, 255, 204, 0.08) 100%);
    border-color: #00ffcc;
    box-shadow: 
        0 0 30px rgba(0, 255, 204, 0.3),
        inset 0 0 20px rgba(0, 255, 204, 0.1);
    transform: translateX(10px);
}

.timeline-content h4 {
    font-family: 'Orbitron', monospace;
    color: #00ffcc;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.timeline-content p {
    line-height: 1.8;
    color: #ccfaff;
    font-size: 1.05rem;
}

/* Enhanced Warnings Section */
.warnings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.warning-card {
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.warning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 16px 16px 0 0;
}

.warning-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.critical {
    background: linear-gradient(135deg, rgba(255, 74, 51, 0.12) 0%, rgba(255, 74, 51, 0.06) 100%);
    border: 2px solid #ff4a33;
}

.critical::before {
    background: linear-gradient(90deg, #ff4a33, #ff6b54);
}

.critical::after {
    background: linear-gradient(135deg, rgba(255, 74, 51, 0.1) 0%, rgba(255, 74, 51, 0.05) 100%);
}

.high {
    background: linear-gradient(135deg, rgba(255, 170, 136, 0.12) 0%, rgba(255, 170, 136, 0.06) 100%);
    border: 2px solid #ffaa88;
}

.high::before {
    background: linear-gradient(90deg, #ffaa88, #ffbb99);
}

.high::after {
    background: linear-gradient(135deg, rgba(255, 170, 136, 0.1) 0%, rgba(255, 170, 136, 0.05) 100%);
}

.medium {
    background: linear-gradient(135deg, rgba(0, 255, 225, 0.12) 0%, rgba(0, 255, 225, 0.06) 100%);
    border: 2px solid #00ffe1;
}

.medium::before {
    background: linear-gradient(90deg, #00ffe1, #00ffcc);
}

.medium::after {
    background: linear-gradient(135deg, rgba(0, 255, 225, 0.1) 0%, rgba(0, 255, 225, 0.05) 100%);
}

.info {
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.12) 0%, rgba(0, 255, 204, 0.06) 100%);
    border: 2px solid #00ffcc;
}

.info::before {
    background: linear-gradient(90deg, #00ffcc, #00ffe1);
}

.info::after {
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1) 0%, rgba(0, 255, 204, 0.05) 100%);
}

.warning-card:hover::after {
    opacity: 1;
}

.warning-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.critical:hover {
    box-shadow: 0 15px 40px rgba(255, 74, 51, 0.3);
}

.high:hover {
    box-shadow: 0 15px 40px rgba(255, 170, 136, 0.3);
}

.medium:hover {
    box-shadow: 0 15px 40px rgba(0, 255, 225, 0.3);
}

.info:hover {
    box-shadow: 0 15px 40px rgba(0, 255, 204, 0.3);
}

.warning-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    text-shadow: 0 0 15px currentColor;
}

.warning-card h3 {
    font-family: 'Orbitron', monospace;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.critical h3 {
    color: #ff4a33;
    text-shadow: 0 0 10px rgba(255, 74, 51, 0.5);
}

.high h3 {
    color: #ffaa88;
    text-shadow: 0 0 10px rgba(255, 170, 136, 0.5);
}

.medium h3 {
    color: #00ffe1;
    text-shadow: 0 0 10px rgba(0, 255, 225, 0.5);
}

.info h3 {
    color: #00ffcc;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.warning-card p {
    line-height: 1.7;
    color: #ccfaff;
    font-size: 1.05rem;
}

/* Enhanced Security Disclaimer */
.security-disclaimer {
    background: linear-gradient(135deg, rgba(255, 74, 51, 0.15) 0%, rgba(255, 74, 51, 0.08) 100%);
    border-top: 3px solid #ff4a33;
    padding: 4rem 0;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.security-disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 74, 51, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.disclaimer-icon {
    font-size: 4rem;
    flex-shrink: 0;
    color: #ff4a33;
    text-shadow: 0 0 20px rgba(255, 74, 51, 0.5);
    animation: disclaimerPulse 3s ease-in-out infinite;
}

@keyframes disclaimerPulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 20px rgba(255, 74, 51, 0.5);
    }
    50% { 
        transform: scale(1.1);
        text-shadow: 0 0 30px rgba(255, 74, 51, 0.7), 0 0 40px rgba(255, 74, 51, 0.5);
    }
}

.disclaimer-text h3 {
    font-family: 'Orbitron', monospace;
    color: #ff4a33;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-shadow: 0 0 15px rgba(255, 74, 51, 0.5);
}

.disclaimer-text p {
    color: #ccfaff;
    line-height: 1.7;
    font-size: 1.1rem;
    max-width: 800px;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1001;
    background: linear-gradient(135deg, #00ffcc 0%, #00ffe1 100%);
    color: #000000;
    border: none;
    border-radius: 8px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.7);
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .nav-sidebar {
        width: 280px;
    }
    
    .main-content {
        margin-left: 280px;
    }
    
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }
    
    .hero-stats {
        gap: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .monero-hero {
        gap: 3rem;
    }
    
    .monero-logo {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-sidebar {
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        width: 280px;
    }
    
    .nav-sidebar.open {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .flow-step {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .monero-hero {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 2.5rem;
    }
    
    .monero-logo {
        font-size: 3.5rem;
    }
    
    .disclaimer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .disclaimer-icon {
        font-size: 3rem;
    }
    
    .security-grid,
    .monero-advantages,
    .escrow-levels,
    .warnings-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .nav-sidebar {
        width: 260px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .monero-logo {
        font-size: 2.8rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .feature-card,
    .security-card,
    .level-card,
    .warning-card,
    .advantage-item {
        padding: 1.5rem;
    }
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
    .nav-sidebar {
        background: #000000;
        border-right-color: #ffffff;
    }
    
    .section-title,
    .nav-link.active,
    .logo-glow {
        color: #ffffff;
    }
    
    .onion-link:hover {
        color: #ffffff;
        background: #333333;
    }
}

/* Print styles */
@media print {
    .nav-sidebar,
    .nav-toggle,
    .bg-animation {
        display: none;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    .hero-section {
        height: auto;
        padding: 2rem 0;
    }
}

