:root {
    --primary-cyan: #00f0ff;
    --neon-green: #00ff88;
    --electric-green: #39ff14;
    --primary-purple: #8b5cf6;
    --accent-green: #00ff88;
    --dark-bg: #000000;
    --dark-secondary: #0a0a0f;
    --dark-tertiary: #12121a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --glow-cyan: rgba(0, 240, 255, 0.5);
    --glow-green: rgba(0, 255, 136, 0.5);
    --glow-electric: rgba(57, 255, 20, 0.5);
}

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

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
    cursor: none; /* Hide default cursor on desktop */
}

/* Show default cursor on mobile */
@media (max-width: 768px) {
    body {
        cursor: auto !important;
    }
}

/* Ensure clickable elements work with custom cursor */
@media (min-width: 769px) {
    a, button, .cta-btn, .nav-link, .feature-card, .scroll-indicator {
        cursor: none;
    }
    
    input, textarea {
        cursor: text;
    }
}

/* Scanlines Effect */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    animation: scanline 8s linear infinite;
    opacity: 0.05;
}

@keyframes scanline {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

/* Ambient Particles */
.ambient-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
}

.logo-icon {
    color: var(--primary-cyan);
    font-size: 1.5rem;
    animation: rotate 10s linear infinite;
}

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

.logo-text {
    background: linear-gradient(135deg, var(--primary-cyan), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logo-glitch 12s ease-in-out infinite;
}

@keyframes logo-glitch {
    0%, 97%, 100% {
        transform: translate(0, 0);
        filter: none;
    }
    98% {
        transform: translate(-1px, 0);
        filter: hue-rotate(20deg);
    }
    99% {
        transform: translate(1px, 0);
        filter: hue-rotate(-20deg);
    }
}

.logo-status {
    font-size: 0.65rem;
    color: var(--accent-green);
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--accent-green);
    border-radius: 4px;
    letter-spacing: 1px;
    animation: pulse-status 2s ease-in-out infinite;
}

@keyframes pulse-status {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--neon-green));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

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

.nav-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

#matrix-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000000;
    display: block;
    opacity: 1;
    filter: blur(0.8px);
}

.hero-blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0.1;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
    height: 1px;
    width: 100%;
    animation: grid-move 8s ease-in-out infinite;
}

.grid-line-1 { top: 20%; animation-delay: 0s; }
.grid-line-2 { top: 50%; animation-delay: 2s; }
.grid-line-3 { top: 80%; animation-delay: 4s; }

@keyframes grid-move {
    0%, 100% { transform: translateY(0); opacity: 0.1; }
    50% { transform: translateY(20px); opacity: 0.3; }
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--primary-cyan);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    animation: badge-float 3s ease-in-out infinite, badge-glitch 10s ease-in-out infinite;
}

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

@keyframes badge-glitch {
    0%, 95%, 100% {
        text-shadow: none;
    }
    96% {
        text-shadow: 2px 0 var(--neon-green), -2px 0 var(--primary-cyan);
    }
    97% {
        text-shadow: -2px 0 var(--neon-green), 2px 0 var(--primary-cyan);
    }
    98% {
        text-shadow: none;
    }
}

.badge-text {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--primary-cyan);
    text-shadow: 0 0 20px var(--glow-cyan);
    animation: text-flicker 5s ease-in-out infinite;
}

@keyframes text-flicker {
    0%, 96%, 100% {
        opacity: 1;
    }
    97% {
        opacity: 0.8;
    }
    98% {
        opacity: 1;
    }
    99% {
        opacity: 0.9;
    }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    position: relative;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-cyan) 50%, var(--neon-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px var(--glow-cyan)) drop-shadow(0 0 60px var(--glow-green));
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        filter: drop-shadow(0 0 40px var(--glow-cyan)) drop-shadow(0 0 60px var(--glow-green));
    }
    50% {
        filter: drop-shadow(0 0 50px var(--glow-green)) drop-shadow(0 0 70px var(--glow-cyan));
    }
}

.title-accent {
    color: var(--neon-green);
    text-shadow: 0 0 40px var(--glow-green), 0 0 80px var(--glow-green);
}

.title-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-cyan), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glitch-effect 8s ease-in-out infinite;
}

@keyframes glitch-effect {
    0%, 88%, 100% { 
        opacity: 0;
        transform: translate(0, 0);
    }
    89% {
        opacity: 0.8;
        transform: translate(-3px, 3px);
        text-shadow: 3px -3px 0 var(--primary-cyan), -3px 3px 0 var(--neon-green);
    }
    90% {
        opacity: 0.8;
        transform: translate(3px, -3px);
        text-shadow: -3px 3px 0 var(--neon-green), 3px -3px 0 var(--primary-cyan);
    }
    91% {
        opacity: 0.8;
        transform: translate(-3px, -3px);
        text-shadow: 3px 3px 0 var(--electric-green), -3px -3px 0 var(--primary-cyan);
    }
    92% {
        opacity: 0;
        transform: translate(0, 0);
    }
    94% {
        opacity: 0.9;
        transform: translate(2px, -2px);
        text-shadow: -2px 2px 0 var(--neon-green), 2px -2px 0 var(--primary-cyan);
    }
    95% {
        opacity: 0;
    }
}

.hero-subtitle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.subtitle-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
}

.hero-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--text-secondary);
}

.subtitle-highlight {
    color: var(--primary-cyan);
    font-weight: 600;
    text-shadow: 0 0 20px var(--glow-cyan);
    animation: text-pulse 3s ease-in-out infinite;
}

@keyframes text-pulse {
    0%, 100% {
        text-shadow: 0 0 20px var(--glow-cyan);
    }
    50% {
        text-shadow: 0 0 30px var(--glow-cyan), 0 0 40px var(--glow-green);
    }
}

.subtitle-separator {
    margin: 0 1rem;
    color: var(--neon-green);
}

.subtitle-text {
    color: var(--text-primary);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(20px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-cyan), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--primary-cyan), transparent);
}

.cta-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    position: relative;
    padding: 1.2rem 2.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    color: var(--text-primary);
    border: 1px solid var(--primary-cyan);
}

.cta-secondary {
    background: transparent;
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.cta-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-btn:hover .btn-glow {
    left: 100%;
}

.cta-primary:hover {
    box-shadow: 0 0 40px var(--glow-cyan), 0 0 80px var(--glow-purple);
    transform: translateY(-2px);
}

.cta-secondary:hover {
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 40px var(--glow-green);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-text {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--primary-cyan);
}

.scroll-arrow {
    animation: bounce-arrow 2s ease-in-out infinite;
}

.scroll-arrow svg {
    width: 32px;
    height: 32px;
    color: var(--primary-cyan);
    filter: drop-shadow(0 0 10px var(--glow-cyan));
}

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

/* About Section */
.about-section {
    position: relative;
    min-height: 100vh;
    padding: 8rem 3rem;
    overflow: hidden;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

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

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at 20% 50%,
        rgba(139, 92, 246, 0.15) 0%,
        transparent 50%
    ),
    radial-gradient(
        ellipse at 80% 50%,
        rgba(0, 240, 255, 0.15) 0%,
        transparent 50%
    );
    backdrop-filter: blur(80px);
}

.section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--primary-purple);
    border-radius: 50px;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--primary-purple);
    margin-bottom: 2rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    color: var(--text-primary);
}

.title-gradient {
    display: block;
    background: linear-gradient(135deg, var(--primary-cyan), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.features-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    position: relative;
    padding: 3rem 2.5rem;
    background: rgba(18, 18, 26, 0.6);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 240, 255, 0.1) 50%,
        transparent 100%
    );
    transition: top 0.7s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    top: 100%;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glow-cyan) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.card-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--neon-green));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.5s;
}

.feature-card:hover .card-glow {
    opacity: 0.1;
}

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

.card-neuralink:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.3);
}

.card-token:hover {
    transform: translateY(-10px) rotate(1deg) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
}

.card-community:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
}

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

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-neuralink .card-icon svg { color: var(--primary-cyan); }
.card-token .card-icon svg { color: var(--accent-green); }
.card-community .card-icon svg { color: var(--neon-green); }

.card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.card-neuralink .card-title { color: var(--primary-cyan); }
.card-token .card-title { color: var(--accent-green); }
.card-community .card-title { color: var(--neon-green); }

.card-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.card-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

.card-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: gap 0.3s;
}

.card-link:hover {
    gap: 1rem;
}

.link-arrow {
    transition: transform 0.3s;
}

.card-link:hover .link-arrow {
    transform: translateX(5px);
}

/* Footer */
.footer {
    position: relative;
    padding: 4rem 3rem 2rem;
    background: var(--dark-secondary);
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    overflow: hidden;
}

.footer-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

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

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-logo span {
    color: var(--neon-green);
}

.footer-tagline {
    color: var(--text-secondary);
    letter-spacing: 2px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    box-shadow: 0 0 20px var(--glow-cyan);
    transform: translateY(-5px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-cyan);
}

.divider {
    color: rgba(255, 255, 255, 0.2);
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.footer-copyright p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1.5rem 2rem;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    /* Optimize for mobile performance */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    .scanlines {
        display: none; /* Remove scanlines on mobile for performance */
    }
    
    .ambient-particles {
        display: none; /* Remove particles on mobile for performance */
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-status {
        display: none;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .hero {
        padding: 5rem 1.5rem 3rem;
        min-height: 100vh;
    }
    
    .hero-badge {
        margin-bottom: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 15vw, 5rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle-container {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .subtitle-line {
        width: 100%;
        max-width: 150px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
    
    .subtitle-separator {
        margin: 0 0.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-divider {
        width: 50px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .cta-container {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .cta-btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .scroll-indicator {
        bottom: 2rem;
    }
    
    .scroll-text {
        font-size: 0.65rem;
    }
    
    .scroll-arrow svg {
        width: 28px;
        height: 28px;
    }
    
    .about-section {
        padding: 4rem 1.5rem;
    }
    
    .section-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .card-description {
        font-size: 0.95rem;
    }
    
    .card-stats {
        gap: 1.5rem;
    }
    
    .stat-num {
        font-size: 1.3rem;
    }
    
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-social {
        gap: 1rem;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
        font-size: 0.9rem;
    }
    
    .footer-copyright p {
        font-size: 0.85rem;
    }
    
    /* Disable 3D effects on mobile */
    .feature-card {
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2rem, 12vw, 3.5rem);
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }
    
    .card-title {
        font-size: 1.3rem;
    }
}

/* Reduced motion for accessibility and performance */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .title-glitch,
    .scanlines {
        display: none;
    }
	
}	
	/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--primary-cyan);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-btn:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 20px var(--glow-cyan);
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: var(--primary-cyan);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 5px var(--glow-cyan);
}

/* Animated hamburger to X */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--glow-green);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--glow-green);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

/* Mobile Menu Container */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.98), rgba(18, 18, 26, 0.98));
    border-left: 2px solid var(--primary-cyan);
    box-shadow: -5px 0 30px rgba(0, 240, 255, 0.3);
    z-index: 1000;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 6rem 2rem 2rem;
}

.mobile-menu.active {
    right: 0;
}

/* Cyber grid background for mobile menu */
.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
}

/* Mobile menu links */
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
}

.mobile-nav-links li {
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation */
.mobile-menu.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }

.mobile-nav-links .nav-link {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mobile-nav-links .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-cyan), var(--neon-green));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-nav-links .nav-link:hover,
.mobile-nav-links .nav-link.active {
    color: var(--text-primary);
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--primary-cyan);
    padding-left: 2rem;
    box-shadow: 0 0 20px var(--glow-cyan);
}

.mobile-nav-links .nav-link:hover::before,
.mobile-nav-links .nav-link.active::before {
    transform: scaleY(1);
}

/* Mobile Status Section */
.mobile-nav-status {
    padding: 1.5rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid var(--neon-green);
    border-radius: 12px;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active .mobile-nav-status {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.mobile-status-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.mobile-status-item:last-child {
    margin-bottom: 0;
}

.mobile-status-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.mobile-status-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--neon-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Mobile Social Links */
.mobile-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 2rem 0 0;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active .mobile-social {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.mobile-social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.05);
    border: 2px solid var(--primary-cyan);
    border-radius: 12px;
    color: var(--primary-cyan);
    transition: all 0.3s;
}

.mobile-social-link:hover {
    background: rgba(0, 240, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--glow-cyan);
}

.mobile-social-link svg {
    width: 24px;
    height: 24px;
}

/* Show mobile menu elements on mobile */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-overlay,
    .mobile-menu {
        display: block;
    }
    
    /* Hide desktop nav items */
    .nav-links,
    .nav-status {
        display: none !important;
    }
    
    /* Adjust nav container for mobile button */
    .nav-container {
        justify-content: space-between;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Accessibility - Focus styles */
.mobile-menu-btn:focus,
.mobile-nav-links .nav-link:focus,
.mobile-social-link:focus {
    outline: 2px solid var(--primary-cyan);
    outline-offset: 2px;
}

/* Smooth scrolling when clicking menu links */
html {
    scroll-behavior: smooth;
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
    .mobile-menu {
        width: 90%;
    }
    
    .mobile-nav-links .nav-link {
        font-size: 1.1rem;
        padding: 0.9rem 1.2rem;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .mobile-menu {
        padding: 5rem 2rem 1rem;
    }
    
    .mobile-nav-links {
        margin-bottom: 1.5rem;
    }
    
    .mobile-nav-links li {
        margin-bottom: 0.25rem;
    }
    
    .mobile-nav-links .nav-link {
        padding: 0.75rem 1.2rem;
    }

}