* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #7c3aed;
    --secondary-purple: #a855f7;
    --accent-pink: #ec4899;
    --dark-bg: #0f0f23;
    --darker-bg: #050507;
    --card-bg: rgba(15, 15, 35, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --border-subtle: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--darker-bg);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Aurora-style background instead of matrix */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    z-index: -2;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    z-index: -1;
}

/* Top Navigation */
.top-nav {
    background: rgba(15, 15, 35, 0.9);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--primary-purple);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-purple);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
    animation: pulse 2s infinite;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-item {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: #888;
}

/* Main Container */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Terminal Window */
.terminal-window {
    background: #1a1a1a;
    border: 1px solid var(--primary-purple);
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
}

.terminal-header {
    background: #2a2a2a;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--primary-purple);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 8px 8px 0 0;
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn.red { background: #ff5f56; }
.btn.yellow { background: var(--accent-pink); }
.btn.green { background: var(--secondary-purple); }

.terminal-title {
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary-purple);
    font-size: 0.9rem;
}

.terminal-body {
    padding: 2rem;
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.6;
}

.terminal-line {
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.prompt {
    color: var(--primary-purple);
    font-weight: 600;
}

.command {
    color: #ffffff;
    margin-left: 0.5rem;
}

.terminal-output {
    margin: 1rem 0 2rem 0;
    padding-left: 1rem;
    border-left: 2px solid #333;
}

.status-line {
    color: #888;
    margin-bottom: 0.5rem;
}

.status-active {
    color: var(--primary-purple);
    font-weight: 600;
}

.loading-text {
    color: #0099ff;
    line-height: 1.8;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
    transform: translateY(-2px);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover::before {
    opacity: 1;
}

.card-icon {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #888;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.metric {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.metric-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Launch Section */
.launch-section {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.launch-content h2 {
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary-purple);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.launch-content p {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.progress-container {
    max-width: 400px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    width: 12%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-pink), var(--secondary-purple));
    border-radius: 4px;
    animation: progress-glow 2s ease-in-out infinite alternate;
}

.progress-text {
    font-family: 'JetBrains Mono', monospace;
    color: var(--accent-pink);
    font-size: 0.9rem;
}

.timeline {
    margin-top: 2rem;
}

.timeline-text {
    font-family: 'JetBrains Mono', monospace;
    color: #888;
    font-size: 1rem;
}

.timeline-date {
    color: var(--primary-purple);
    font-weight: 600;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid #333;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: var(--primary-purple);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-info, .status-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item, .status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.contact-label {
    color: #666;
    min-width: 80px;
}

.contact-value {
    color: var(--primary-purple);
    font-weight: 600;
}

.status-dot.green {
    background: var(--secondary-purple);
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.8);
}

.status-dot.yellow {
    background: var(--accent-pink);
    box-shadow: 0 0 5px rgba(255, 189, 46, 0.8);
}

.ecosystem-link {
    color: #0099ff;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.ecosystem-link:hover {
    color: var(--primary-purple);
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes progress-glow {
    0% { box-shadow: 0 0 5px rgba(255, 189, 46, 0.5); }
    100% { box-shadow: 0 0 15px rgba(255, 189, 46, 0.8), 0 0 25px rgba(255, 149, 0, 0.3); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .main-container {
        padding: 2rem 1rem;
    }
    
    .terminal-body {
        padding: 1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .launch-section {
        padding: 2rem 1rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-section {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .terminal-header {
        padding: 0.5rem;
    }
    
    .terminal-title {
        font-size: 0.8rem;
    }
    
    .launch-content h2 {
        font-size: 1.5rem;
    }
}
