:root {
    --bg-color: #05050a;
    --accent-color: #00f3ff;
    --text-color: #e0e0e0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
    --font-display: 'Orbitron', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Effects */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
}

/* Typography */
h1, h2, h3, .logo {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 4rem;
    background: linear-gradient(45deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
    display: inline-block;
}

/* Layout */
header {
    padding: 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(5,5,10,0.9), transparent);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}

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

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-color);
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

/* Hero Section */
#hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.subtitle {
    font-size: 1.5rem;
    color: #aaa;
    margin-top: 1rem;
}

.status-badge {
    margin-top: 2rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid var(--accent-color);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--accent-color);
    background: rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

/* Glass Panels */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 4rem;
}

/* Grid & Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.card h3 {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.card p {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.card .detail {
    font-size: 0.8rem;
    color: #aaa;
}

/* Timeline */
.timeline {
    list-style: none;
    border-left: 2px solid var(--glass-border);
    padding-left: 2rem;
}

.timeline li {
    margin-bottom: 2rem;
    position: relative;
}

.timeline li::before {
    content: '';
    position: absolute;
    left: -2.4rem;
    top: 0.4rem;
    width: 0.8rem;
    height: 0.8rem;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color);
}

.timeline .date {
    display: block;
    font-family: var(--font-display);
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

/* Theories */
.theory-block {
    margin-bottom: 2rem;
}

.theory-block h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    color: #555;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .glass-panel { padding: 1.5rem; }
}
