/* 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;
}

/* 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.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 225, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 74, 51, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #001122 50%, #000000 100%);
    animation: bgPulse 8s ease-in-out infinite alternate;
}

@keyframes bgPulse {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Vertical Navigation Sidebar */
.nav-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-right: 2px solid #00ffcc;
    z-index: 1000;
    padding: 2rem 0;
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.3);
}

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

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

.logo-sub {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    color: #00ffe1;
    margin-top: 0.5rem;
    letter-spacing: 3px;
}

@keyframes logoFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

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

.nav-menu li {
    margin: 0.5rem 0;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: #ccfaff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.nav-link:hover {
    color: #00ffcc;
    border-left-color: #00ffcc;
    background: rgba(0, 255, 204, 0.1);
    box-shadow: inset 0 0 20px rgba(0, 255, 204, 0.1);
}

.nav-link.active {
    color: #00ffcc;
    border-left-color: #00ffcc;
    background: rgba(0, 255, 204, 0.15);
    box-shadow: 
        inset 0 0 20px rgba(0, 255, 204, 0.2),
        0 0 10px rgba(0, 255, 204, 0.3);
}

.nav-icon {
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 24px;
    text-align: center;
}

.nav-text {
    font-weight: 600;
    font-size: 1rem;
}

/* Main Content */
.main-content {
    margin-left: 280px;
    min-height: 100vh;
}

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

.section {
    padding: 4rem 0;
    position: relative;
}

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

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

@keyframes neonPulse {
    0% { text-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc, 0 0 30px #00ffcc; }
    100% { text-shadow: 0 0 20px #00ffcc, 0 0 30px #00ffcc, 0 0 40px #00ffcc, 0 0 50px #00ffcc; }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: 
        linear-gradient(45deg, rgba(0, 255, 204, 0.05) 0%, transparent 50%),
        radial-gradient(circle at center, rgba(0, 255, 225, 0.1) 0%, transparent 70%);
}

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

.glitch-text {
    position: relative;
    animation: glitch 2s 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.5s infinite;
    color: #ff4a33;
    z-index: -1;
}

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

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

@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); }
}

@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); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ccfaff;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

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

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

.stat-label {
    font-size: 1rem;
    color: #ccfaff;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Onion Links Section */
.onion-section {
    background: rgba(0, 255, 204, 0.02);
    border-top: 1px solid rgba(0, 255, 204, 0.2);
    border-bottom: 1px solid rgba(0, 255, 204, 0.2);
}

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

.onion-warning {
    background: rgba(255, 74, 51, 0.1);
    border: 1px solid #ff4a33;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.onion-warning p {
    color: #ff4a33;
    font-weight: 600;
    margin: 0;
}

.onion-links-block {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ffcc;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 
        0 0 20px rgba(0, 255, 204, 0.3),
        inset 0 0 20px rgba(0, 255, 204, 0.05);
}

.onion-link {
    display: block;
    color: #00ffe1;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
    margin: 0.5rem 0;
    background: rgba(0, 255, 225, 0.05);
    border: 1px solid rgba(0, 255, 225, 0.2);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.onion-link:hover {
    color: #ffaa88;
    background: rgba(255, 170, 136, 0.1);
    border-color: #ffaa88;
    box-shadow: 0 0 15px rgba(255, 170, 136, 0.3);
    transform: translateX(10px);
}

.onion-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #00ffcc;
    font-weight: 600;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00ffcc;
    box-shadow: 0 0 10px #00ffcc;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #ccfaff;
}

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

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

.feature-card:hover {
    background: rgba(0, 255, 204, 0.1);
    border-color: #00ffcc;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffcc;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(0, 255, 204, 0.03);
    border-left: 4px solid #00ffcc;
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease;
}

.flow-step:hover {
    background: rgba(0, 255, 204, 0.08);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.1);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #00ffcc;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
}

.step-content h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffe1;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-content p {
    line-height: 1.7;
    color: #ccfaff;
}

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

.security-card {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 255, 204, 0.3);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    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.1), transparent);
    transition: left 0.5s ease;
}

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

.security-card:hover {
    border-color: #00ffcc;
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.3);
    transform: translateY(-5px);
}

.security-card h3 {
    font-family: 'Orbitron', monospace;
    color: #00ffcc;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.security-card p {
    line-height: 1.7;
    color: #ccfaff;
}

/* Monero Section */
.monero-section {
    background: rgba(255, 74, 51, 0.02);
}

.monero-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    border: 2px solid rgba(255, 74, 51, 0.3);
}

.monero-logo {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: #ff4a33;
    text-shadow: 
        0 0 10px #ff4a33,
        0 0 20px #ff4a33,
        0 0 30px #ff4a33;
    animation: moneroGlow 3s ease-in-out infinite alternate;
}

@keyframes moneroGlow {
    0% { text-shadow: 0 0 10px #ff4a33, 0 0 20px #ff4a33, 0 0 30px #ff4a33; }
    100% { text-shadow: 0 0 20px #ff4a33, 0 0 30px #ff4a33, 0 0 40px #ff4a33, 0 0 50px #ff4a33; }
}

.monero-text h3 {
    font-family: 'Orbitron', monospace;
    color: #ff4a33;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.monero-text p {
    font-size: 1.2rem;
    color: #ccfaff;
}

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

.advantage-item {
    background: rgba(255, 74, 51, 0.05);
    border: 1px solid rgba(255, 74, 51, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: rgba(255, 74, 51, 0.1);
    border-color: #ff4a33;
    box-shadow: 0 0 20px rgba(255, 74, 51, 0.2);
}

.advantage-item h4 {
    font-family: 'Orbitron', monospace;
    color: #ff4a33;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.advantage-item p {
    line-height: 1.7;
    color: #ccfaff;
}

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

.level-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

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

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

.level-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

.level-3:hover {
    box-shadow: 0 20px 40px rgba(0, 255, 204, 0.3);
}

.level-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 0.9rem;
}

.level-1 .level-badge {
    background: #ff4a33;
    color: #000000;
}

.level-2 .level-badge {
    background: #ffaa88;
    color: #000000;
}

.level-3 .level-badge {
    background: #00ffcc;
    color: #000000;
}

.level-card h4 {
    font-family: 'Orbitron', monospace;
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
}

.level-1 h4 {
    color: #ff4a33;
}

.level-2 h4 {
    color: #ffaa88;
}

.level-3 h4 {
    color: #00ffcc;
}

.level-card p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #ccfaff;
}

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

.level-features span {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #00ffcc, #00ffe1, #ff4a33);
}

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

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #00ffcc;
    background: #000000;
}

.timeline-item.completed .timeline-marker {
    background: #00ffcc;
    box-shadow: 0 0 15px #00ffcc;
}

.timeline-item.current .timeline-marker {
    background: #00ffe1;
    border-color: #00ffe1;
    box-shadow: 0 0 15px #00ffe1;
    animation: currentPulse 2s ease-in-out infinite;
}

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

.timeline-content {
    background: rgba(0, 255, 204, 0.05);
    border: 1px solid rgba(0, 255, 204, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: rgba(0, 255, 204, 0.1);
    border-color: #00ffcc;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
}

.timeline-content h4 {
    font-family: 'Orbitron', monospace;
    color: #00ffcc;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.timeline-content p {
    line-height: 1.7;
    color: #ccfaff;
}

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

.warning-card {
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.critical {
    background: rgba(255, 74, 51, 0.1);
    border: 2px solid #ff4a33;
}

.critical::before {
    background: #ff4a33;
}

.high {
    background: rgba(255, 170, 136, 0.1);
    border: 2px solid #ffaa88;
}

.high::before {
    background: #ffaa88;
}

.medium {
    background: rgba(0, 255, 225, 0.1);
    border: 2px solid #00ffe1;
}

.medium::before {
    background: #00ffe1;
}

.info {
    background: rgba(0, 255, 204, 0.1);
    border: 2px solid #00ffcc;
}

.info::before {
    background: #00ffcc;
}

.warning-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.warning-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.critical h3 {
    color: #ff4a33;
}

.high h3 {
    color: #ffaa88;
}

.medium h3 {
    color: #00ffe1;
}

.info h3 {
    color: #00ffcc;
}

.warning-card p {
    line-height: 1.6;
    color: #ccfaff;
}

/* Security Disclaimer */
.security-disclaimer {
    background: rgba(255, 74, 51, 0.1);
    border-top: 2px solid #ff4a33;
    padding: 3rem 0;
    margin-top: 4rem;
}

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

.disclaimer-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.disclaimer-text h3 {
    font-family: 'Orbitron', monospace;
    color: #ff4a33;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.disclaimer-text p {
    color: #ccfaff;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-sidebar {
        width: 250px;
    }
    
    .main-content {
        margin-left: 250px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-sidebar.open {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .flow-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .monero-hero {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .monero-logo {
        font-size: 3rem;
    }
    
    .disclaimer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .nav-link {
        padding: 0.8rem 1rem;
    }
    
    .nav-text {
        font-size: 0.9rem;
    }
    
    .escrow-levels,
    .security-grid,
    .warnings-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1001;
    background: rgba(0, 255, 204, 0.2);
    border: 2px solid #00ffcc;
    border-radius: 8px;
    padding: 0.5rem;
    color: #00ffcc;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(0, 255, 204, 0.3);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
}

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

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #00ffcc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00ffe1;
}

/* Selection Styling */
::selection {
    background: rgba(0, 255, 204, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(0, 255, 204, 0.3);
    color: #ffffff;
}

