:root {
    --brand-yellow: #fad429;
    --bg-dark: #0f1115;
    /* Much cleaner, deeper dark */
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* Soft glowing spotlight in the very center background */
    background-image: radial-gradient(circle at center, rgba(250, 212, 41, 0.05) 0%, transparent 50%);
}

.app-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.logo-container {
    padding: 3rem 0 1rem;
    display: flex;
    justify-content: center;
}

.brand-logo {
    height: 40px;
    /* Bright white logo for high contrast on dark bg */
    filter: brightness(0) invert(1) drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.hero-minimal {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 3rem;
    padding: 2rem 0 4rem;
}

.mascot-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Subtle, clean glow behind mascot */
.mascot-wrapper::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    background: var(--brand-yellow);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    z-index: 0;
}

.app-mascot {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
    z-index: 1;
    position: relative;
}

.floating {
    animation: gentle-float 6s ease-in-out infinite;
}

@keyframes gentle-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
}

.status-badge {
    display: inline-block;
    color: var(--brand-yellow);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.headline {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.text-gradient {
    /* Subtle gradient to brand yellow */
    background: linear-gradient(to right, #ffffff, var(--brand-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.footer-minimal {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive constraints */
@media (max-width: 768px) {
    .headline {
        font-size: 3rem;
    }

    .description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .mascot-wrapper {
        width: 200px;
        height: 200px;
    }
}