:root {
    --bg-color: #0f172a;
    --text-color: #f8fafc;
    --accent-1: #3b82f6;
    --accent-2: #8b5cf6;
    --accent-3: #ec4899;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 1rem;
}

/* Background Animation */
.background-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 40vw;
    height: 40vw;
    min-width: 300px;
    min-height: 300px;
    background: var(--accent-1);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 50vw;
    height: 50vw;
    min-width: 400px;
    min-height: 400px;
    background: var(--accent-2);
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
    animation-direction: alternate-reverse;
}

.orb-3 {
    width: 30vw;
    height: 30vw;
    min-width: 250px;
    min-height: 250px;
    background: var(--accent-3);
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(5%, -5%) scale(1.1); }
    66% { transform: translate(-3%, 3%) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    z-index: 10;
    position: relative;
    width: 100%;
}

/* Glassmorphism Container */
.glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3.5rem 4rem;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    position: relative;
    overflow: hidden;
}

/* Subtle inner shimmer for the glass container */
.glass-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transform: skewX(-20deg);
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Logo */
.logo-wrapper {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 500px;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 12px;
    animation: pulseLogo 4s infinite ease-in-out;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.1));
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    padding-bottom: 100%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    z-index: 1;
    border-radius: 50%;
}

@keyframes pulseLogo {
    0% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(255,255,255,0.1)); }
    50% { transform: scale(1.03); filter: drop-shadow(0 0 25px rgba(255,255,255,0.2)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(255,255,255,0.1)); }
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

p {
    font-size: 1.125rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Button */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #ffffff;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 20px -10px var(--accent-1);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px -10px var(--accent-2);
}

.button:hover::after {
    opacity: 1;
}

.button:active {
    transform: translateY(1px);
    box-shadow: 0 5px 15px -10px var(--accent-2);
}

/* Responsive */
@media (max-width: 640px) {
    .glass-container {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    .logo {
        max-width: 320px;
    }
    
    p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .button {
        width: 100%;
    }
}
