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

body {
    background-color: #020205; /* Space Black */
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

/* --- CANVAS --- */
#webgl {
    position: fixed;
    top: 0; left: 0;
    z-index: 1;
}

/* --- UI LAYER --- */
.interface {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none; /* Allows rotating the planet */
    background: radial-gradient(circle, transparent 20%, #000000 120%); /* Vignette for focus */
}

/* --- TOP STATUS --- */
.top-status {
    position: absolute;
    top: 30px;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #aaa;
    display: flex;
    align-items: center;
}

.dot {
    width: 8px; height: 8px;
    background: #00ff88; /* Active Green */
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px #00ff88;
}
.blinking { animation: pulse 2s infinite; }

/* --- CENTER CARD --- */
.center-card {
    pointer-events: auto; /* Enable buttons */
    text-align: center;
    padding: 3rem;
    /* Glass Effect */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    transform: translateY(0);
    transition: transform 0.3s;
}

.small-header {
    color: #00ccff; /* Tech Blue */
    font-size: 1rem;
    letter-spacing: 5px;
    margin-bottom: 10px;
    font-weight: bold;
}

.main-title {
    font-family: 'Oswald', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.divider {
    height: 2px;
    width: 80px;
    background: #00ccff;
    margin: 20px auto;
}

.sub-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: #ddd;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.desc {
    color: #aaa;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* --- BUTTON --- */
.mission-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #ffffff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
    border: 2px solid #fff;
}

.mission-btn:hover {
    background: transparent;
    color: #fff;
    box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

/* --- BOTTOM DATA --- */
.bottom-data {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    font-size: 0.8rem;
    color: #555;
    letter-spacing: 2px;
}

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

/* --- MOBILE --- */
@media (max-width: 768px) {
    .main-title { font-size: 3rem; }
    .sub-title { font-size: 1.4rem; }
    .center-card { padding: 2rem; width: 85%; }
    .bottom-data { flex-direction: column; align-items: center; gap: 5px; }
}