:root {
    --bg-color: #fdfaf2;
    --text-color: #1a1a1a;
    --c1: #fcd02d;
    --c2: #ff6622;
    --c3: #f531aa;
    --c4: #6622ff;
    --c5: #29aaff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-font-smoothing: antialiased;
}

.gradient-bg {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    /* Animated mesh gradient using radial gradients */
    background:
        radial-gradient(circle at var(--x1, 10%) var(--y1, 10%), var(--c1) 0%, transparent 60%),
        radial-gradient(circle at var(--x2, 90%) var(--y2, 10%), var(--c2) 0%, transparent 60%),
        radial-gradient(circle at var(--x3, 90%) var(--y3, 90%), var(--c3) 0%, transparent 60%),
        radial-gradient(circle at var(--x4, 10%) var(--y4, 90%), var(--c4) 0%, transparent 60%),
        radial-gradient(circle at var(--x5, 50%) var(--y5, 50%), var(--c5) 0%, transparent 60%);
    opacity: 0.28;
    /* Significantly less subtle as requested */
    filter: blur(100px);
    animation: moveGradient 12s ease-in-out infinite alternate;
}

@keyframes moveGradient {
    0% {
        --x1: 5%;
        --y1: 15%;
        --x2: 95%;
        --y2: 5%;
        --x3: 85%;
        --y3: 95%;
        --x4: 15%;
        --y4: 85%;
        --x5: 45%;
        --y5: 55%;
    }

    100% {
        --x1: 25%;
        --y1: -5%;
        --x2: 75%;
        --y2: 25%;
        --x3: 105%;
        --y3: 75%;
        --x4: -5%;
        --y4: 105%;
        --x5: 55%;
        --y5: 45%;
    }
}

/* For browsers that don't support custom property animation yet, we'll use a simpler background-position shift as well */
@keyframes moveBG {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

.gradient-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3BaseFilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
}

.glass-container {
    background: rgba(253, 250, 242, 0.45);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 32px;
    padding: 80px 40px;
    width: 90%;
    max-width: 440px;
    text-align: center;
    position: relative;
    z-index: 10;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.05);
}

.logo {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    /* Matching your manual change preference */
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.06em;
    margin-bottom: 4rem;
    color: var(--text-color);
}

.actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.btn {
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    letter-spacing: -0.01em;
    text-decoration: none;
}

.btn-primary {
    background: var(--text-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.4);
    color: var(--text-color);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .glass-container {
        padding: 60px 24px;
        border-radius: 24px;
    }

    .logo {
        font-size: 3rem;
        margin-bottom: 3rem;
    }
}