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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(35deg, #0c1445 0%, #0c1445 50%, #1a2980 200%);
    background-attachment: fixed;
    color: white;
    overflow-x: hidden;
}

.container {
    position: relative;
    min-height: 100vh;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.site-title {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-family: "Orbitron", sans-serif;
    font-size: 4rem;
    color: #0d1440;
    text-align: center;
    margin: 0;
    filter: drop-shadow(0 0 1.25rem rgba(255, 255, 255, 0.5));
}

.controls {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.controls h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.controls p {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    opacity: 0.8;
}

.loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 10px;
}

.spinner {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #87ceeb;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem auto;
}

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

@media (max-width: 768px) {
    .controls {
        top: 10px;
        right: 10px;
        padding: 0.5rem;
        font-size: 0.8rem;
    }
} 


.orbitron-400 {
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }