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

:root {
    --primary: #00ff41;
    --secondary: #ff006e;
    --accent: #00d9ff;
    --dark-bg: #0a0e27;
    --darker-bg: #050812;
    --border: #1a2332;
    --text: #e0e0e0;
    --glow: rgba(0, 255, 65, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Courier New', monospace;
    background-color: var(--darker-bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* MATRIX BACKGROUND */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: -1;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 65, 0.1),
        rgba(0, 255, 65, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    animation: matrix-scroll 20s linear infinite;
}

@keyframes matrix-scroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 8, 18, 0.95);
    border-bottom: 2px solid var(--primary);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-icon {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 1s infinite;
    margin-left: 0.5rem;
}

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

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

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

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

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

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
    position: relative;
}

.hero-content {
    flex: 1;
    z-index: 10;
}

.glitch-text {
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    position: relative;
    animation: glitch-animation 2s infinite;
}

@keyframes glitch-animation {
    0% {
        text-shadow: 
            -2px 0 var(--secondary),
            2px 0 var(--accent);
    }
    14% {
        text-shadow: 
            -2px 0 var(--secondary),
            2px 0 var(--accent);
    }
    15% {
        text-shadow: 
            -2px 0 var(--accent),
            2px 0 var(--secondary);
    }
    49% {
        text-shadow: 
            -2px 0 var(--accent),
            2px 0 var(--secondary);
    }
    50% {
        text-shadow: 
            -2px 0 var(--secondary),
            2px 0 var(--accent);
    }
    100% {
        text-shadow: 
            -2px 0 var(--secondary),
            2px 0 var(--accent);
    }
}

.subtitle {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    border: 2px solid var(--primary);
    background: rgba(0, 255, 65, 0.05);
    border-radius: 5px;
}

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

.stat-label {
    font-size: 0.85rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.stat-value {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: bold;
    text-shadow: 0 0 10px var(--glow);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
    font-weight: bold;
}

.btn-primary {
    background: var(--primary);
    color: var(--darker-bg);
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.8), inset 0 0 20px rgba(0, 255, 65, 0.3);
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--darker-bg);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.8);
    transform: scale(1.05);
}

/* HERO VISUAL */
.hero-visual {
    flex: 1;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-core {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--primary), transparent);
    border-radius: 50%;
    box-shadow: 0 0 50px var(--primary), 0 0 100px var(--secondary);
    animation: pulse-core 3s infinite;
}

@keyframes pulse-core {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.2);
        filter: brightness(1.3);
    }
}

.orbit {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 250px;
    height: 250px;
    border-top-color: var(--primary);
    border-right-color: var(--secondary);
    animation: rotate 8s linear infinite;
}

.orbit-2 {
    width: 350px;
    height: 350px;
    border-bottom-color: var(--accent);
    border-left-color: var(--primary);
    animation: rotate 12s linear infinite reverse;
}

.orbit-3 {
    width: 450px;
    height: 450px;
    border-top-color: var(--secondary);
    border-right-color: var(--accent);
    animation: rotate 16s linear infinite;
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* SECTIONS */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    position: relative;
}

.title-underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--primary), var(--accent));
    margin: 0 auto;
    border-radius: 2px;
}

/* ABOUT */
.about {
    background: rgba(0, 255, 65, 0.02);
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
}

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

.about-card {
    padding: 2rem;
    border: 2px solid var(--primary);
    background: rgba(0, 255, 65, 0.05);
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px var(--glow), inset 0 0 20px rgba(0, 255, 65, 0.1);
    border-color: var(--accent);
}

.card-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.about-card h3 {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-card p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* TOKENOMICS */
.tokenomics {
    background: rgba(255, 0, 110, 0.02);
}

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

.tokenomics-card {
    padding: 2rem;
    border: 2px solid var(--secondary);
    background: rgba(255, 0, 110, 0.05);
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
}

.tokenomics-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.4);
    border-color: var(--accent);
}

.tokenomics-card h3 {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.big-number {
    font-size: 2rem;
    color: var(--primary);
    font-weight: bold;
    margin: 1rem 0;
    text-shadow: 0 0 10px var(--glow);
}

.description {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.token-list {
    list-style: none;
    text-align: left;
}

.token-list li {
    padding: 0.5rem 0;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
}

.token-list li::before {
    content: '→';
    color: var(--secondary);
    margin-right: 1rem;
}

/* ROADMAP */
.roadmap {
    background: rgba(0, 217, 255, 0.02);
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary), var(--accent));
    z-index: 1;
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: auto;
    width: calc(50% - 2rem);
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    width: calc(50% - 2rem);
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--darker-bg);
    border: 3px solid var(--primary);
    border-radius: 50%;
    top: 0;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item.completed .timeline-marker {
    background: var(--primary);
    box-shadow: 0 0 20px var(--glow);
}

.timeline-item.active .timeline-marker {
    background: var(--secondary);
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
}

.timeline-content {
    padding: 1.5rem;
    border: 2px solid var(--accent);
    background: rgba(0, 217, 255, 0.05);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
    transform: scale(1.02);
}

.timeline-content h3 {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text);
    font-size: 0.95rem;
}

/* COMMUNITY */
.community {
    background: rgba(0, 255, 65, 0.02);
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
}

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

.community-card {
    padding: 2rem;
    border: 2px solid var(--border);
    background: rgba(0, 255, 65, 0.02);
    border-radius: 5px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    position: relative;
}

.community-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(0, 217, 255, 0.1));
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

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

.community-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 0 30px var(--glow);
}

.platform-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    display: block;
}

.community-card h3 {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.community-card p {
    color: var(--text);
    font-size: 0.9rem;
}

/* CONTACT */
.contact {
    background: rgba(255, 0, 110, 0.02);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: rgba(26, 35, 50, 0.5);
    border: 2px solid var(--primary);
    color: var(--text);
    font-family: 'Courier New', monospace;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text);
    opacity: 0.5;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
    background: rgba(26, 35, 50, 0.7);
}

/* FOOTER */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 2px solid var(--primary);
    padding: 2rem;
    text-align: center;
}

.footer-content p {
    margin: 0.5rem 0;
    color: var(--text);
    font-size: 0.9rem;
}

.disclaimer {
    color: var(--secondary);
    font-size: 0.85rem;
}

.footer-links a {
    color: var(--primary);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px var(--glow);
}

/* TERMINAL */
.terminal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    height: 200px;
    background: rgba(5, 8, 18, 0.95);
    border: 2px solid var(--primary);
    border-radius: 5px;
    overflow: hidden;
    z-index: 100;
    display: none;
    flex-direction: column;
    box-shadow: 0 0 30px var(--glow);
    font-size: 0.75rem;
}

.terminal-content {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem;
    color: var(--primary);
    line-height: 1.4;
}

.terminal-input {
    padding: 0.5rem;
    border-top: 1px solid var(--primary);
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.terminal-prompt {
    color: var(--secondary);
}

.terminal-cursor {
    width: 8px;
    height: 12px;
    background: var(--primary);
    animation: blink 1s infinite;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        flex-direction: column;
        min-height: auto;
    }

    .hero-visual {
        height: 300px;
    }

    .glitch-text {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .about-grid,
    .tokenomics-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 10%;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0;
        width: 100%;
        margin-left: 40px;
        text-align: left;
    }

    .timeline-marker {
        left: 10%;
    }

    .section-title {
        font-size: 1.8rem;
    }
}