:root {
    --bg-color: #fff0e6;
    --text-color: #a34700;
    --accent-color: #f4dac3;
    --accent-light: #fff8f2;
    --font-main: 'Outfit', sans-serif;
}

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

html,
body {
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    display: grid;
    place-items: center;
    position: relative;
    /* Static flat background */
}

/* ============================================
   STATIC BACKGROUND (Visible but Still)
   ============================================ */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: multiply;
    /* User requested apparent blobs, keeping opacity up */
    opacity: 0.85;
    filter: blur(60px);
    /* NO ANIMATION or TRANSITION */
}

/* Static positions for blobs */
.blob-1 {
    width: 50vmax;
    height: 50vmax;
    background: #f4dac3;
    top: 10%;
    left: 10%;
}

.blob-2 {
    width: 40vmax;
    height: 40vmax;
    background: #ffe0cc;
    bottom: 10%;
    right: 10%;
}

.blob-3 {
    width: 30vmax;
    height: 30vmax;
    background: rgba(163, 71, 0, 0.1);
    top: 30%;
    left: 40%;
}

.blob-4 {
    width: 35vmax;
    height: 35vmax;
    background: #fff8f2;
    top: 60%;
    left: -10%;
}

.blob-5 {
    width: 25vmax;
    height: 25vmax;
    background: #ffd4b8;
    top: -10%;
    right: 20%;
}

/* ============================================
   MAIN CONTENT (STATIC)
   ============================================ */
.scene-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100%;
}

/* Glass Card */
.glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: clamp(24px, 5vw, 48px);
    padding: clamp(2rem, 8vw, 5rem);
    text-align: center;
    width: min(90vw, 800px);
    box-shadow:
        0 30px 60px -12px rgba(163, 71, 0, 0.1),
        inset 0 0 50px rgba(255, 255, 255, 0.2);
    overflow: hidden;
    /* STRICTLY STATIC */
    transform: none !important;
}

/* Static Glare */
.glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 5;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    opacity: 0.3;
}

/* Logo */
.logo-container {
    margin-bottom: 2rem;
}

.floating-logo {
    width: clamp(120px, 30vw, 220px);
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(163, 71, 0, 0.3));
}

/* Typography */
h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 800;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3em;
    line-height: 1.2;
}

.word {
    display: inline-block;
    background: linear-gradient(135deg, var(--text-color) 0%, #ff8533 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: reveal 0.8s backwards var(--delay);
}

.emoji {
    -webkit-text-fill-color: initial;
}

p {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.5;
    opacity: 0;
    animation: fadeUp 1s forwards var(--delay);
}

/* Page Load Animations */
@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

/* Mascot Styling (Controlled by JS) */
.mascot {
    position: fixed;
    top: 0;
    left: 0;
    width: clamp(80px, 15vw, 150px);
    height: auto;
    z-index: 100;
    pointer-events: none;
    filter: drop-shadow(0 10px 20px rgba(163, 71, 0, 0.2));
    opacity: 0.9;
    /* Initial state before JS takes over */
    transform: translate(-50%, -50%);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .glass-card {
        padding: 1.5rem 1rem;
        width: 90vw;
        border-radius: 20px;
    }

    .mascot {
        width: 120px;
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .logo-container {
        margin-bottom: 1rem;
    }

    p {
        font-size: 1rem;
    }
}