:root {
    --bg-deep: #000b4a;
    --bg-darker: #00062a;
    --gold-primary: #ffcc33;
    --gold-secondary: #ffe599;
    --text-light: #f0f0f0;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-darker);
    color: var(--text-light);
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Continuous Mild Animation: Mesh Gradient Background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 30%, #001a8c 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, #000836 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, #000b4a 0%, transparent 100%);
    filter: blur(100px);
    animation: bgMovement 20s infinite alternate ease-in-out;
}

@keyframes bgMovement {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.2) translate(5%, 5%); }
}

/* Star/Dust Particles */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, #fff, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 100px 150px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 300px 400px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 500px 100px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 700px 600px, #fff, rgba(0,0,0,0));
    background-size: 800px 800px;
    opacity: 0.3;
    animation: starPulse 10s infinite alternate;
}

@keyframes starPulse {
    from { opacity: 0.2; transform: translateY(0); }
    to { opacity: 0.5; transform: translateY(-20px); }
}

.content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

/* Logo Section */
.logo-wrapper {
    position: relative;
    margin-bottom: 3rem;
    animation: float 6s infinite ease-in-out;
    overflow: hidden; /* Restrict shimmer to logo area */
    border-radius: 40px; /* Match logo's rounded corners */
    display: inline-flex;
}

.logo {
    display: block;
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 204, 51, 0.2));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Shiny Shimmer Effect on Logo */
.shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shimmerEffect 4s infinite;
}

@keyframes shimmerEffect {
    0% { left: -150%; }
    30% { left: 150%; }
    100% { left: 150%; }
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--gold-primary), var(--gold-secondary), #fff, var(--gold-primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 6s linear infinite;
}

@keyframes textGradient {
    to { background-position: 200% center; }
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 204, 51, 0.1);
    border: 1px solid rgba(255, 204, 51, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    color: var(--gold-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.footer {
    position: fixed;
    bottom: 2rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
    z-index: 20;
    pointer-events: none;
}

@media (max-width: 600px) {
    .logo { max-width: 250px; }
    h1 { font-size: 1.8rem; }
    .glass-card { padding: 2rem; }
}
