@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Rajdhani:wght@300;500;700&family=Share+Tech+Mono&display=swap');

:root {
    --space-navy: #030a16;
    --oceanic-teal: #00B4D8;
    --neon-cyan: #00F0FF;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--space-navy);
    color: #e0fbfc;
    font-family: 'Rajdhani', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Deep Space Background Effects */
.stars, .twinkling {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    display: block;
}

.stars {
    background: #000 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><circle cx="20" cy="20" r="1" fill="white" opacity="0.5"/><circle cx="150" cy="80" r="1.5" fill="white" opacity="0.8"/><circle cx="80" cy="150" r="0.5" fill="white" opacity="0.3"/></svg>') repeat top center;
    z-index: 0;
}

.twinkling {
    background: transparent url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><rect width="400" height="400" fill="url(%23g)"/><defs><radialGradient id="g" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="rgba(0,180,216,0.1)"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs></svg>') repeat top center;
    z-index: 1;
    animation: move-twink-back 200s linear infinite;
}

.container {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    width: 90%;
    padding: 3rem 2rem;
    background: rgba(3, 10, 22, 0.65);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.05), inset 0 0 20px rgba(0, 240, 255, 0.02);
    backdrop-filter: blur(8px);
}

.dolphin-graphic {
    width: 180px;
    margin: 0 auto 20px auto;
    animation: float 5s ease-in-out infinite;
}

.dolphin-svg {
    filter: drop-shadow(0 0 8px var(--neon-cyan));
}

h1.glow-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.2rem;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px rgba(0, 180, 216, 0.8), 0 0 40px rgba(0, 180, 216, 0.4);
    letter-spacing: 3px;
    text-transform: uppercase;
}

h2.sub-text {
    font-size: 1.4rem;
    color: var(--oceanic-teal);
    font-weight: 500;
    margin-top: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.terminal-box {
    background: rgba(0, 0, 0, 0.4);
    border-left: 3px solid var(--neon-cyan);
    padding: 15px;
    margin: 30px auto;
    text-align: left;
    max-width: 400px;
    font-family: 'Share Tech Mono', monospace;
}

.status {
    font-size: 1rem;
    color: #90e0ef;
    margin: 5px 0;
}

.blink {
    animation: blinker 1s linear infinite;
}

.progress-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px 0;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 25%;
    background: var(--neon-cyan);
    box-shadow: 0 0 15px var(--neon-cyan);
    animation: scanning 4s ease-in-out infinite alternate;
}

.footer-text {
    font-size: 0.85rem;
    color: rgba(224, 251, 252, 0.4);
    letter-spacing: 1px;
    margin-top: 20px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes blinker {
    50% { opacity: 0; }
}

@keyframes scanning {
    0% { left: 0; width: 10%; }
    50% { width: 30%; }
    100% { left: 90%; width: 10%; }
}

@keyframes move-twink-back {
    from {background-position: 0 0;}
    to {background-position: -10000px 5000px;}
}
