/* ============================================================
   APP INTEGRATION - Liquid Glass Nav, Mood Logger, Decay Demo
   ============================================================ */

/* ============================================================
   1. LIQUID GLASS BOTTOM NAV BAR (iOS 26 Style)
   ============================================================ */
.liquid-glass-nav {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 8000;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 32px;
    /* Liquid Glass Effect */
    background: rgba(28, 28, 30, 0.55);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 0 0 0.5px rgba(255, 255, 255, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* BART Circle Button */
.nav-bart-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #111;
    border: 2px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav-bart-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.bart-mini-eyes {
    display: flex;
    gap: 6px;
    align-items: center;
}

.bart-mini-eye {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.bart-mini-pupil {
    width: 4px;
    height: 4px;
    background: #111;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
}

/* Nav Tabs */
.nav-tabs {
    display: flex;
    gap: 4px;
}

.nav-tab {
    padding: 10px 18px;
    border-radius: 20px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: var(--font-stack);
}

.nav-tab:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.08);
}

.nav-tab.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}


/* ============================================================
   2. MOOD LOGGER - iOS App Exact Replica
   ============================================================ */
.mood-logger-section {
    padding-top: 100px;
    padding-bottom: 160px;
    /* Extra padding for bottom nav */
}

.mood-logger-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 24px;
}

/* iOS-style light card */
.ios-mood-card {
    background: #f9f9fb;
    border-radius: 32px;
    padding: 28px 24px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.15),
        0 1px 4px rgba(0, 0, 0, 0.08);
    border: none;
}

/* Date Pill - matching iOS capsule style */
.mood-date-pill {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: #1c1c1e;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    margin-bottom: 16px;
    font-family: var(--font-stack);
}

/* "HOW ARE YOU FEELING?" label */
.ios-mood-card .mood-question {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #8e8e93;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* BART Character - Matching iOS MoodBartCharacter exactly */
.ios-mood-card .mood-bart-face {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 16px;
    position: relative;
    border: none;
    /* Dark mode glow - outer ring */
    box-shadow:
        0 0 0 1.5px rgba(255, 255, 255, 0.25),
        0 0 12px 4px rgba(255, 255, 255, 0.08),
        0 4px 10px rgba(0, 0, 0, 0.4);
    /* RadialGradient: dark gray top-left to black */
    background: radial-gradient(circle at 25% 25%,
            rgb(56, 56, 56) 0%,
            rgb(26, 26, 26) 40%,
            rgb(0, 0, 0) 80%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Subtle shine highlight (matching iOS LinearGradient) */
.ios-mood-card .mood-bart-face::before {
    content: '';
    position: absolute;
    width: 75%;
    height: 75%;
    top: 6%;
    left: 6%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.ios-mood-card .mood-bart-face:active {
    transform: scale(1.15);
}

.ios-mood-card .bart-mood-body {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Eyes - iOS Pixar-style expressive eyes */
.ios-mood-card .bart-mood-eye {
    position: absolute;
    width: 36%;
    height: 36%;
    background: white;
    border-radius: 50%;
    top: 32%;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.ios-mood-card .bart-mood-eye.left {
    left: 17%;
}

.ios-mood-card .bart-mood-eye.right {
    right: 17%;
}

.ios-mood-card .bart-mood-eyelid {
    position: absolute;
    top: -100%;
    left: -2px;
    right: -2px;
    height: 100%;
    background: #111;
    border-radius: 0 0 50% 50%;
    z-index: 3;
    transition: top 0.4s ease, transform 0.4s ease;
}

.ios-mood-card .bart-mood-pupil {
    width: 40%;
    height: 40%;
    background: #111;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: 2;
}

/* Pupil highlight/shine */
.ios-mood-card .bart-mood-pupil::after {
    content: '';
    position: absolute;
    width: 35%;
    height: 35%;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    top: 15%;
    right: 15%;
}

/* Blush marks - hidden by default via opacity, shown for happy moods */
.bart-mood-blush {
    position: absolute;
    width: 14%;
    height: 7%;
    background: rgba(255, 107, 107, 0.6);
    /* Visible color */
    border-radius: 50%;
    top: 63%;
    z-index: 2;
    opacity: 0;
    /* Controlled by JS */
    transition: opacity 0.4s ease;
}

.bart-mood-blush.left {
    left: 12%;
}

.bart-mood-blush.right {
    right: 12%;
}

/* Mood Label */
.ios-mood-card .mood-label-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
}

.ios-mood-card .mood-emoji {
    font-size: 24px;
}

.ios-mood-card .mood-text {
    font-size: 20px;
    font-weight: 700;
    color: #1c1c1e;
}

/* BART's response text */
.ios-mood-card .mood-response {
    font-size: 12px;
    font-weight: 500;
    color: #8e8e93;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Mood Slider - iOS gradient with glow */
.ios-mood-card .mood-slider-wrapper {
    position: relative;
    margin: 0 auto 6px;
    max-width: 300px;
    padding: 0 4px;
}

/* iOS-matching gradient: Red → Yellow → Green */
.ios-mood-card .mood-gradient-track {
    position: absolute;
    top: 50%;
    left: 4px;
    right: 4px;
    height: 6px;
    transform: translateY(-50%);
    border-radius: 3px;
    background: linear-gradient(90deg,
            #f87171 0%,
            #f87171 15%,
            #fbbf24 40%,
            #fbbf24 55%,
            #4ade80 85%,
            #4ade80 100%);
    pointer-events: none;
}

.ios-mood-card .mood-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: transparent;
    outline: none;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

/* Bubble thumb - matching iOS liquid glass style */
.ios-mood-card .mood-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    /* White bubble with radial gradient */
    background: radial-gradient(circle at center,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(200, 200, 200, 0.4) 100%);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.05),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ios-mood-card .mood-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(0, 0, 0, 0.05),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Firefox thumb */
.ios-mood-card .mood-slider::-moz-range-thumb {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    background: radial-gradient(circle at center,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(200, 200, 200, 0.4) 100%);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* Range labels - matching iOS */
.ios-mood-card .mood-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 8px;
    font-weight: 700;
    color: #8e8e93;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Mood Particles */
.mood-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.mood-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: particle-float 2s ease-out forwards;
    opacity: 0;
}

@keyframes particle-float {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-40px) scale(0);
    }
}

/* ---- Phase Selector (iOS "TO LOG FOR:") ---- */
.mood-phase-section {
    text-align: left;
    margin-bottom: 16px;
}

.mood-phase-label {
    font-size: 10px;
    font-weight: 700;
    color: #8e8e93;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.ios-mood-card .mood-phase-selector {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    margin-bottom: 0;
}

.ios-mood-card .mood-phase {
    padding: 10px 14px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #f2f2f7;
    color: #1c1c1e;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-stack);
}

.ios-mood-card .mood-phase:hover {
    border-color: rgba(0, 0, 0, 0.15);
    background: #e5e5ea;
}

.ios-mood-card .mood-phase.active {
    background: #1c1c1e;
    color: #fff;
    border-color: #1c1c1e;
}

/* ---- Voice Note (matching iOS layout) ---- */
.ios-mood-card .mood-voice-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
    margin-top: 16px;
    color: #8e8e93;
    font-size: 12px;
    font-weight: 600;
}

.ios-mood-card .voice-hint {
    font-size: 10px;
    font-weight: 500;
    color: #aeaeb2;
}

.ios-mood-card .voice-record-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #f2f2f7;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 8px auto 16px;
}

.ios-mood-card .voice-record-btn:hover {
    background: #e5e5ea;
    transform: scale(1.05);
}

/* ---- Text Input (matching iOS rounded rect) ---- */
.ios-mood-card .mood-text-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #f2f2f7;
    color: #1c1c1e;
    font-size: 14px;
    font-family: var(--font-stack);
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.ios-mood-card .mood-text-input:focus {
    border-color: rgba(0, 0, 0, 0.2);
}

.ios-mood-card .mood-text-input::placeholder {
    color: #c7c7cc;
}

/* ---- Action Buttons (iOS Cancel/Save) ---- */
.mood-action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.mood-btn-cancel,
.mood-btn-save {
    flex: 1;
    padding: 14px;
    border-radius: 16px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-stack);
}

.mood-btn-cancel {
    background: #e5e5ea;
    color: #8e8e93;
}

.mood-btn-cancel:hover {
    background: #d1d1d6;
}

.mood-btn-save {
    background: #1c1c1e;
    color: #fff;
}

.mood-btn-save:hover {
    background: #2c2c2e;
}


/* ============================================================
   3. DECAY DEMO INTERACTIVE CARD
   ============================================================ */
.decay-demo-section {
    padding: 100px 0;
}

.decay-demo {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    /* Context for absolute fly container */
}

/* Container for interactive flies */
.decay-fly-container {
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

.decay-fly-container .fly {
    position: absolute;
    font-size: 24px;
    animation-duration: 3s;
    /* Faster for interactive feel */
}

.decay-task-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 20px;
    background: rgba(28, 28, 30, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 16px;
}

.decay-task-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.task-icon {
    font-size: 1.8rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    flex-shrink: 0;
}

.task-content {
    flex: 1;
}

.task-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 4px;
}

.task-meta {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.decay-indicator {
    font-weight: 600;
}

.checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Decay States */
.decay-task-card[data-decay="stale"] {
    background: rgba(60, 50, 20, 0.5);
    border-color: rgba(200, 150, 50, 0.3);
}

.decay-task-card[data-decay="stale"] .decay-indicator {
    color: #c8963c;
}

.decay-task-card[data-decay="rotting"] {
    background: rgba(80, 30, 10, 0.5);
    border-color: rgba(200, 80, 30, 0.3);
    filter: blur(0.3px);
}

.decay-task-card[data-decay="rotting"] .decay-indicator {
    color: #c85020;
}

.decay-task-card[data-decay="decomposed"] {
    background: rgba(40, 15, 5, 0.6);
    border-color: rgba(120, 40, 15, 0.3);
    filter: blur(0.6px);
    opacity: 0.85;
}

.decay-task-card[data-decay="decomposed"] .decay-indicator {
    color: #8b2e0f;
}

.decay-label {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 16px;
}

.decay-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.decay-btn {
    padding: 12px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-stack);
}

.decay-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.decay-btn.burn-task-btn {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.decay-btn.burn-task-btn:hover {
    background: rgba(34, 197, 94, 0.25);
}


/* ============================================================
   4. APP DEMO HEADER
   ============================================================ */
.app-demo-header {
    text-align: center;
    margin-bottom: 40px;
}

.app-demo-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.app-demo-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.45);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}


/* ============================================================
   5. NEW LAYOUTS: Side-by-Side Sections
   ============================================================ */

/* --- DECAY DEMO LAYOUT (Phone + Interactive) --- */
.decay-demo-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 60px auto 0;
    padding: 0 24px;
}

.decay-phone-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.decay-phone-wrapper .spotlight-phone {
    position: relative;
    z-index: 2;
}

.decay-demo-interactive {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* --- ANIMATED FLIES --- */
.fly {
    position: absolute;
    font-size: 18px;
    z-index: 10;
    pointer-events: none;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.fly-1 {
    top: 10%;
    left: 15%;
    animation: fly-buzz-1 4s infinite;
}

.fly-2 {
    top: 25%;
    right: 10%;
    animation: fly-buzz-2 3.5s 0.5s infinite;
}

.fly-3 {
    bottom: 20%;
    left: 20%;
    animation: fly-buzz-3 5s 1s infinite;
}

.fly-4 {
    top: 50%;
    right: 20%;
    animation: fly-buzz-4 3.8s 1.5s infinite;
    font-size: 14px;
}

.fly-5 {
    bottom: 30%;
    right: 15%;
    animation: fly-buzz-5 4.2s 0.8s infinite;
    font-size: 12px;
}

@keyframes fly-buzz-1 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    15% {
        transform: translate(20px, -15px) rotate(30deg) scale(0.9);
    }

    30% {
        transform: translate(-10px, -25px) rotate(-15deg) scale(1.1);
    }

    50% {
        transform: translate(30px, 5px) rotate(45deg) scale(0.85);
    }

    70% {
        transform: translate(-15px, 15px) rotate(-30deg) scale(1.05);
    }

    85% {
        transform: translate(10px, -10px) rotate(20deg) scale(0.95);
    }

    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

@keyframes fly-buzz-2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    20% {
        transform: translate(-25px, 10px) rotate(-40deg);
    }

    40% {
        transform: translate(15px, -20px) rotate(25deg);
    }

    60% {
        transform: translate(-20px, -5px) rotate(-20deg);
    }

    80% {
        transform: translate(10px, 15px) rotate(35deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes fly-buzz-3 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(30px, -20px) rotate(50deg) scale(1.1);
    }

    50% {
        transform: translate(-15px, 10px) rotate(-25deg) scale(0.9);
    }

    75% {
        transform: translate(20px, 20px) rotate(35deg) scale(1.05);
    }

    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

@keyframes fly-buzz-4 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    30% {
        transform: translate(-20px, -15px) rotate(-35deg);
    }

    60% {
        transform: translate(25px, 10px) rotate(40deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes fly-buzz-5 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    20% {
        transform: translate(15px, 20px) rotate(25deg) scale(1.15);
    }

    45% {
        transform: translate(-25px, -10px) rotate(-45deg) scale(0.85);
    }

    70% {
        transform: translate(10px, -20px) rotate(15deg) scale(1);
    }

    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}


/* --- MOOD DEMO LAYOUT (Phone + Interactive) --- */
.mood-demo-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.mood-phone-wrapper {
    display: flex;
    justify-content: center;
}

.mood-phone-wrapper .spotlight-phone {
    max-width: 280px;
}

/* Override mood logger container for new layout */
.mood-demo-layout .mood-logger-container {
    max-width: 100%;
    padding: 0;
}


/* ============================================================
   6. RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .liquid-glass-nav {
        bottom: 16px;
    }

    .nav-tab {
        padding: 8px 14px;
        font-size: 12px;
    }

    .mood-logger-card {
        padding: 32px 24px;
    }

    .mood-bart-face {
        width: 100px;
        height: 100px;
    }

    .decay-demo-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mood-demo-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .decay-phone-wrapper {
        order: -1;
    }

    .mood-phone-wrapper {
        order: -1;
    }
}

@media (max-width: 480px) {
    .liquid-glass-nav {
        left: 16px;
        right: 16px;
        transform: none;
        bottom: 12px;
    }

    .nav-tab {
        padding: 8px 12px;
        font-size: 11px;
    }

    .mood-phase-selector {
        flex-wrap: wrap;
    }

    .fly {
        font-size: 14px;
    }

    .fly-4,
    .fly-5 {
        display: none;
    }
}