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

body {
    background-color: #0b0e14; /* Deep dark background */
    color: #e2e8f0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

/* --- Container & Layout --- */
.container {
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 10px;
}

h1 span {
    color: #38bdf8; /* Accent blue color */
    animation: blink 1.5s infinite;
}

.status-text {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 30px;
    font-weight: 300;
}

/* --- Animation Elements --- */
.loader-wrapper {
    width: 180px;
    height: 2px;
    background: #1e293b;
    margin: 0 auto 40px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.loader-bar {
    position: absolute;
    width: 40%;
    height: 100%;
    background: #38bdf8;
    animation: slide 2s ease-in-out infinite;
}

/* --- Footer Links --- */
.back-link {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.back-link:hover {
    color: #38bdf8;
    border-bottom: 1px solid #38bdf8;
}

/* --- Keyframes --- */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

@keyframes slide {
    0% { left: -40%; }
    100% { left: 110%; }
}