:root {
    --bg-color: #020617;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    
    /* User Provided Colors */
    --color-1: #2d4899;
    --color-2: #4da83c;
    --color-3: #005e81;
    --color-4: #12b9b3;
    --color-5: #a0c460;
    --color-6: #f57e20;
    --color-7: #006993;
    --color-8: #c71d4b;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* AI-Feel Animated Background (Minimal) */
.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #0f172a 0%, #020617 100%);
}

.ai-orb {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--color-1), transparent 70%);
    opacity: 0.15;
    filter: blur(100px);
    animation: moveOrb 20s infinite alternate ease-in-out;
}

.ai-orb-2 {
    position: absolute;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--color-4), transparent 70%);
    opacity: 0.1;
    filter: blur(80px);
    bottom: -10%;
    right: -10%;
    animation: moveOrb 25s infinite alternate-reverse ease-in-out;
}

@keyframes moveOrb {
    from { transform: translate(-10%, -10%); }
    to { transform: translate(10%, 10%); }
}

main {
    text-align: center;
    padding: 2rem;
    z-index: 1;
}

.hero {
    max-width: 800px;
}

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

.gradient-text {
    background: linear-gradient(90deg, 
        var(--color-1), 
        var(--color-4), 
        var(--color-6), 
        var(--color-8)
    );
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: wave 8s linear infinite;
}

@keyframes wave {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    font-weight: 400;
    opacity: 0.8;
}

.url-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 2rem;
}

code {
    color: var(--color-4);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* Minimal Progress Bar */
.progress-container {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 2rem auto;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--color-4), var(--color-1));
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

footer {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.dashboard-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.dashboard-btn:hover {
    background: white;
    color: var(--bg-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 0.75rem;
    color: #475569;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Entry Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
