/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: #1e1e1e;
    --text-primary: #e0e0e0;
    --text-secondary: #b0b0b0;
    --text-accent: #00ff41;
    --border-color: #333;
    --shadow-color: rgba(0, 255, 65, 0.1);
    --danger-color: #ff4444;
    --warning-color: #ffaa00;
    --font-primary: 'Orbitron', monospace;
    --font-secondary: 'Source Code Pro', monospace;
    --font-display: 'Creepster', cursive;
}

body {
    font-family: var(--font-secondary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Matrix background effect */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 65, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 65, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 255, 65, 0.03) 0%, transparent 50%);
    z-index: -1;
    animation: matrixPulse 10s ease-in-out infinite;
}

@keyframes matrixPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-accent);
    text-shadow: 0 0 10px var(--text-accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

@keyframes blink {
    0%, 90% { opacity: 1; }
    95% { opacity: 0.3; }
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-accent);
    background: rgba(0, 255, 65, 0.1);
    box-shadow: 0 0 10px var(--shadow-color);
}

/* Main content */
.main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

.page {
    display: none;
}

.page.active {
    display: block;
}

/* Hero section */
.hero {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--danger-color);
    text-shadow: 0 0 20px var(--danger-color);
    margin-bottom: 1rem;
    animation: flicker 3s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
    75% { opacity: 0.9; }
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--text-accent);
    margin-bottom: 1rem;
}

.date-display {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: var(--text-secondary);
    background: var(--bg-card);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid var(--border-color);
}

/* Conspiracy card */
.conspiracy-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.conspiracy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--text-accent), transparent);
    animation: scan 3s infinite;
}

@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.loading {
    text-align: center;
    padding: 2rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--text-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.conspiracy-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
    font-weight: 400;
}

.conspiracy-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--text-accent), #00cc33);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px rgba(0, 255, 65, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 65, 0.4);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--border-color);
    transform: translateY(-2px);
}

/* Social sharing */
.social-share {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 255, 65, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.social-share h4 {
    margin-bottom: 1rem;
    color: var(--text-accent);
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-btn.twitter {
    background: #1da1f2;
    color: white;
}

.social-btn.facebook {
    background: #4267b2;
    color: white;
}

.social-btn.reddit {
    background: #ff4500;
    color: white;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Disclaimer */
.disclaimer {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid var(--danger-color);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    color: var(--text-primary);
}

/* Page headers */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--text-accent);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

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

.archive-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.archive-item:hover {
    border-color: var(--text-accent);
    box-shadow: 0 4px 15px var(--shadow-color);
    transform: translateY(-2px);
}

.archive-date {
    font-family: var(--font-primary);
    color: var(--text-accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.archive-theory {
    color: var(--text-primary);
    line-height: 1.6;
}

/* About content */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.about-section h3 {
    font-family: var(--font-primary);
    color: var(--text-accent);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.about-section p {
    color: var(--text-primary);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-secondary);
}

.footer p {
    margin-bottom: 0.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .conspiracy-card {
        padding: 1.5rem;
    }

    .conspiracy-text {
        font-size: 1.1rem;
    }

    .conspiracy-actions {
        flex-direction: column;
        align-items: center;
    }

    .social-buttons {
        flex-direction: column;
        align-items: center;
    }

    .archive-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .conspiracy-card {
        padding: 1rem;
    }

    .conspiracy-text {
        font-size: 1rem;
    }
}

