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

body {
    background: #000;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Starfield Canvas */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Vignette Overlay */
.vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 40%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.8) 100%
    );
    pointer-events: none;
    z-index: 1;
    animation: vignettePulse 8s ease-in-out infinite;
}

@keyframes vignettePulse {
    0%, 100% {
        background: radial-gradient(
            ellipse at center,
            transparent 0%,
            transparent 40%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(0, 0, 0, 0.8) 100%
        );
    }
    50% {
        background: radial-gradient(
            ellipse at center,
            transparent 0%,
            transparent 35%,
            rgba(0, 0, 0, 0.5) 65%,
            rgba(0, 0, 0, 0.85) 100%
        );
    }
}

/* Main Content */
.content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

/* Singularity Visual */
.logo-container {
    margin-bottom: 3rem;
}

.singularity {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.event-horizon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 50%;
    box-shadow:
        0 0 60px 20px rgba(0, 0, 0, 0.9),
        0 0 100px 40px rgba(0, 0, 0, 0.6),
        inset 0 0 30px 10px rgba(0, 0, 0, 1);
    z-index: 2;
}

.accretion {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 255, 255, 0.1) 60deg,
        rgba(255, 255, 255, 0.3) 120deg,
        rgba(255, 255, 255, 0.1) 180deg,
        transparent 240deg,
        rgba(255, 255, 255, 0.05) 300deg,
        transparent 360deg
    );
    animation: accretionSpin 20s linear infinite;
    z-index: 1;
}

@keyframes accretionSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Typography */
.company-name {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 900;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(255, 255, 255, 0.1);
    animation: textGlow 4s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow:
            0 0 10px rgba(255, 255, 255, 0.3),
            0 0 40px rgba(255, 255, 255, 0.1);
    }
    50% {
        text-shadow:
            0 0 20px rgba(255, 255, 255, 0.5),
            0 0 60px rgba(255, 255, 255, 0.2);
    }
}

.motto {
    font-size: clamp(1rem, 3vw, 1.4rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 3rem;
}

/* Status Indicator */
.status {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.03);
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.status-text {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Footer */
.footer {
    position: fixed;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
}

.footer p {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    opacity: 0.4;
}

/* Responsive */
@media (max-width: 600px) {
    .company-name {
        letter-spacing: 0.15em;
    }

    .motto {
        letter-spacing: 0.1em;
    }

    .singularity {
        width: 100px;
        height: 100px;
    }

    .event-horizon {
        width: 50px;
        height: 50px;
    }

    .accretion {
        width: 100px;
        height: 100px;
    }
}
