/* GLOBAL RESET */
html {
    background: linear-gradient(135deg, #020617 0%, #1e1b4b 50%, #312e81 100%);
    /* Purple/Blue Deep Gradient */
    height: 100%;
}

body {
    background-color: transparent !important;
    /* Allow Shader to be seen */
    color: #f8fafc;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
}

/* SHADER CONTAINER */
/* SHADER CONTAINER */
.nebula-container,
#vfx-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    /* Above Body/HTML, Below Content */
    pointer-events: none;
}

/* APP CONTENT LAYERS - FORCE TRANSPARENCY */
.mud-layout,
.mud-main-content,
.mud-appbar,
div.mud-layout {
    background-color: transparent !important;
    background: transparent !important;
    position: relative;
    z-index: 10;
    /* Sit on top of shader (Z=1) explicitly */
}

/* --- PREMIUM EFFECTS --- */

.section-narrative {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10vh 5vw;
    position: relative;
    z-index: 15;
    /* Ensure narrative is interactable */
}

.glass-card-ultra {
    background: rgba(15, 23, 42, 0.05);
    /* Extremely low alpha for high transparency */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.glass-card-ultra:hover {
    background: rgba(30, 41, 59, 0.15);
    /* Reduced hover alpha */
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8);
}

.hero-text-giant {
    font-family: 'Outfit', sans-serif !important;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.9;
    background: linear-gradient(180deg, #fff 30%, rgba(255, 255, 255, 0.5) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2.5rem;
    filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.3));
    user-select: none;
    /* Disable selection */
    outline: none;
    /* Remove outline */
}

.papyrus-font {
    font-family: 'Papyrus', serif !important;
}

.sub-text-premium {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: #94a3b8;
    max-width: 60ch;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.glow-wrapper,
.songify-glow,
.magnolia-glow {
    position: relative;
    z-index: 10;
}

.glow-wrapper::after,
.songify-glow::after,
.magnolia-glow::after {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    z-index: -1;
    opacity: 0.6;
    filter: blur(60px);
    animation: pulse-glow 6s infinite alternate ease-in-out;
    pointer-events: none;
}

.songify-glow::after {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
}

.magnolia-glow::after {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    /* Blue */
}

@keyframes pulse-glow {
    from {
        opacity: 0.4;
        transform: scale(1);
    }

    to {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.download-btn {
    background: linear-gradient(135deg, #415A77 0%, #1B263B 100%) !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 12px 32px !important;
    transition: all 0.3s ease !important;
    font-weight: bold !important;
    letter-spacing: 1px;
}

.download-btn:hover {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6) !important;
    transform: translateY(-2px);
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%) !important;
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Inter:wght@100..900&family=Cinzel:wght@400..900&display=swap');