:root {
    --bg-black: #0a0a0a;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
}

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

body {
    background: var(--bg-black);
    color: var(--text-white);
    font-family: "halyard-text", sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

.coming-soon-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1200px;
}

/* Animated background */
.coming-soon-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.06;
    animation: orb-float 25s ease-in-out infinite;
}

.bg-orb-1 {
    width: 800px;
    height: 800px;
    top: -400px;
    left: -300px;
    background: radial-gradient(circle, #ffffff 0%, transparent 60%);
}

.bg-orb-2 {
    width: 600px;
    height: 600px;
    bottom: -300px;
    right: -200px;
    background: radial-gradient(circle, #ffffff 0%, transparent 60%);
    animation-delay: -12s;
    animation-direction: reverse;
}

.bg-orb-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, #ffffff 0%, transparent 60%);
    animation-delay: -6s;
    opacity: 0.03;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(60px, -40px) scale(1.05); }
    50% { transform: translate(20px, 50px) scale(0.95); }
    75% { transform: translate(-40px, 20px) scale(1.02); }
}

/* Grid pattern overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none;
}

/* Coming Soon Container */
.coming-soon-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 520px;
    padding: 2rem;
}

/* Coming Soon Card */
.coming-soon-card {
    position: relative;
    padding: 3rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px);
    box-shadow: 
        0 50px 150px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transform-style: preserve-3d;
    text-align: center;
}

.coming-soon-content {
    opacity: 0;
    animation: fadeInDown 0.6s ease-out 0.2s forwards;
}

.coming-soon-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-family: "halyard-display", sans-serif;
}

.coming-soon-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.coming-soon-icon {
    font-size: 4rem;
    margin: 0 auto 2rem;
    display: inline-block;
    opacity: 0;
    animation: fadeInDown 0.6s ease-out 0.15s forwards, float 3s ease-in-out infinite;
    animation-delay: 0.15s, 0.15s;
}

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

.cta-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    animation: fadeInDown 0.6s ease-out 0.3s forwards;
}

.login-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #ffffff;
    color: var(--bg-black);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.login-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.login-btn:active {
    transform: translateY(0px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.15);
}

.footer-link {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 20;
}

.footer-link a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    opacity: 0;
    animation: fadeInDown 0.6s ease-out 0.4s forwards;
}

.footer-link a:hover {
    color: var(--text-white);
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: float-up linear infinite;
    will-change: transform;
    bottom: -50px;
}

@keyframes float-up {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(100vh);
    }
}

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

/* Mobile adjustments */
@media (max-width: 640px) {
    .coming-soon-container {
        padding: 1.5rem;
    }

    .coming-soon-card {
        padding: 2.5rem 2rem;
        border-radius: 24px;
    }

    .coming-soon-title {
        font-size: 2.25rem;
    }

    .coming-soon-subtitle {
        font-size: 1rem;
    }

    .bg-orb {
        opacity: 0.04;
    }

    .footer-link {
        bottom: 1.5rem;
        right: 1.5rem;
    }
}
