body {
    background: #000814;
    color: #e0e0e0;
    font-family: monospace;
    padding: 80px;
    overflow-x: hidden;
    position: relative;
}

/* Deep space starfield */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,255,255,0.4) 1px, transparent 1px);
    background-size: 120px 120px;
    opacity: 0.15;
    z-index: -2;
    animation: driftStars 120s linear infinite;
}

/* Subtle cosmic glow */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,180,216,0.05), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* Slow star drift */
@keyframes driftStars {
    from { transform: translate(0,0); }
    to { transform: translate(-200px, -200px); }
}

/* Voyager heading glow */
h1 { 
    color: #00b4d8;
    letter-spacing: 3px;
    text-shadow:
        0 0 8px #00b4d8,
        0 0 18px rgba(0,180,216,0.6),
        0 0 35px rgba(0,180,216,0.3);
}

/* Warning signal pulse */
.warning { 
    color: #ff3c3c;
    text-shadow:
        0 0 8px #ff3c3c,
        0 0 20px rgba(255,60,60,0.6);
    animation: warningPulse 2.5s infinite ease-in-out;
}

@keyframes warningPulse {
    0%,100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Signal link styling */
a { 
    color: #00f7ff; 
    text-decoration: none;
    position: relative;
    transition: 0.3s ease;
}

a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: #00f7ff;
    transition: 0.3s ease;
}

a:hover { 
    text-decoration: underline;
    text-shadow: 0 0 10px #00f7ff;
}

a:hover::after {
    width: 100%;
}

/* Subtle ambient ship glow */
@keyframes shipPulse {
    0%,100% { box-shadow: 0 0 0 rgba(0,180,216,0); }
    50% { box-shadow: 0 0 160px rgba(0,180,216,0.04); }
}

body {
    animation: shipPulse 8s infinite ease-in-out;
}

/* Responsive polish */
@media (max-width: 768px) {
    body {
        padding: 40px 20px;
    }
}