/**
 * ZEDEC Network Main CSS
 * Base styles for all satellite sites
 * Powered by ZEDEC & ZEDEI AI, A 36N9 Genetics LLC Thought Crime
 */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a1a;
    color: #e0e0e0;
    min-height: 100vh;
    line-height: 1.6;
}

a {
    color: #00ff88;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #8b5cf6;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ff88;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    color: #b8b8b8;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

/* Main Content */
main {
    padding-top: 80px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; color: #00ff88; }
h2 { font-size: 2rem; color: #8b5cf6; }
h3 { font-size: 1.5rem; color: #D4AF37; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff88, #8b5cf6);
    color: #000;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s;
}

.card:hover {
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-5px);
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, rgba(10, 10, 26, 0.95), rgba(5, 5, 15, 1));
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    padding: 40px 30px;
    margin-top: 60px;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
    margin: 10px 0;
}

.footer-bottom a {
    color: #00ff88;
}

/* Utilities */
.text-center { text-align: center; }
.text-gold { color: #D4AF37; }
.text-green { color: #00ff88; }
.text-purple { color: #8b5cf6; }

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
}
