/**
 * Voidlust — desktop web landing (reference layout)
 * Scoped to: body.crave-unified-home.crave-site-mode.crave-desktop-ui
 * Loaded only in desktop site mode via crave-display-mode.js
 */

/* ── Full-width desktop canvas ── */
body.crave-unified-home.crave-site-mode.crave-desktop-ui {
    --vl-desktop-max: min(1320px, 96vw);
    --vl-sidebar-w: 308px;
    --vl-gold: rgba(201, 167, 106, 0.92);
    --vl-bordeaux: rgba(120, 20, 20, 0.38);
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(80, 14, 14, 0.22), transparent 55%),
        #030203;
}

/* home-main is nested in #pwaAppShell — shell must not stay display:none on desktop site */
body.crave-unified-home.crave-site-mode.crave-desktop-ui #pwaAppShell.pwa-app-shell {
    display: block !important;
    width: 100%;
    max-width: 100%;
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui #pwaAppShell > header,
body.crave-unified-home.crave-site-mode.crave-desktop-ui #pwaAppShell > #pwaBottomNav,
body.crave-unified-home.crave-site-mode.crave-desktop-ui #pwaAppShell > .pwa-app-header,
body.crave-unified-home.crave-site-mode.crave-desktop-ui #pwaAppShell > nav.pwa-bottom-nav {
    display: none !important;
}

/* ── Header — 3-column grid, no overlap ── */
body.crave-unified-home.crave-site-mode.crave-desktop-ui .site-header.site-header-pill {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--vl-desktop-max);
    z-index: 30;
    padding: 16px 28px 0;
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .site-header.site-header-pill .header-pill {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    background: rgba(6, 4, 6, 0.58);
    border-color: rgba(120, 20, 20, 0.34);
    backdrop-filter: blur(18px) saturate(1.15);
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.42);
    overflow: visible;
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .header-pill-left {
    grid-column: 1;
    justify-self: start;
    min-width: 0;
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .site-header.site-header-pill .logo {
    position: static;
    left: auto;
    transform: none;
    grid-column: 2;
    justify-self: center;
    margin: 0;
    padding: 0 8px;
    max-width: 100%;
    white-space: nowrap;
    pointer-events: none;
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .header-pill-right {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    min-width: 0;
    max-width: none;
    margin-left: 0;
    overflow: visible;
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .header-pwa-crystals {
    flex-shrink: 0;
    max-width: none;
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .logo-site-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    color: #f0ebe4;
}

/* ── Main grid: hero full + cards | sidebar ── */
body.crave-unified-home.crave-site-mode.crave-desktop-ui .home-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--vl-sidebar-w);
    column-gap: 28px;
    row-gap: 0;
    align-items: start;
    max-width: var(--vl-desktop-max);
    margin: 0 auto;
    padding: 0 28px 56px !important;
    min-height: 100dvh;
    background:
        radial-gradient(ellipse 100% 45% at 50% 0%, rgba(70, 12, 12, 0.14), transparent 58%),
        linear-gradient(180deg, #040304 0%, #080606 38%, #0a0808 100%) !important;
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .voidlust-cinematic-hero {
    grid-column: 1 / -1;
    grid-row: 1;
    height: min(640px, max(480px, 78vh));
    min-height: 480px;
    margin: 0 -28px;
    width: calc(100% + 56px);
    border-radius: 0 0 28px 28px;
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.55),
        inset 0 -1px 0 rgba(201, 167, 106, 0.08);
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .voidlust-cinematic-hero__img {
    object-position: 62% 22%;
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .voidlust-cinematic-hero__overlay {
    background:
        linear-gradient(to right,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.72) 28%,
            rgba(0, 0, 0, 0.18) 58%,
            rgba(0, 0, 0, 0.42) 100%),
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.08) 35%,
            rgba(0, 0, 0, 0.65) 82%,
            #040304 100%),
        radial-gradient(ellipse 70% 55% at 18% 88%,
            rgba(100, 16, 16, 0.42) 0%,
            transparent 68%);
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .voidlust-cinematic-hero__content {
    align-items: flex-start;
    text-align: left;
    justify-content: center;
    top: 0;
    bottom: 0;
    padding: 108px max(48px, 5vw) 48px max(48px, 5vw);
    max-width: min(520px, 46%);
    gap: 16px;
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .voidlust-cinematic-hero__brand {
    margin: 0 0 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #f4efe8;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.9);
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .voidlust-cinematic-hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4.2vw, 3.35rem);
    font-weight: 400;
    line-height: 1.14;
    max-width: 12ch;
    color: #f8f3ec;
    text-shadow: 0 4px 48px rgba(0, 0, 0, 0.85);
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .voidlust-cinematic-hero__subtitle {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--vl-gold);
    max-width: 36ch;
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .voidlust-cinematic-hero__actions {
    justify-content: flex-start;
    margin-top: 12px;
    gap: 12px;
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .voidlust-cinematic-hero__cta {
    min-height: 48px;
    padding: 13px 28px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
}

/* ── Sidebar column ── */
body.crave-unified-home.crave-site-mode.crave-desktop-ui .vl-desktop-sidebar {
    grid-column: 2;
    grid-row: 2 / 4;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    top: auto;
    align-self: start;
    padding-top: 24px;
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .home-characters-heading {
    grid-column: 1;
    grid-row: 2;
    margin: 28px 0 18px;
    padding: 0 2px;
    text-align: left;
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.36em;
    color: var(--vl-gold);
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .characters-grid {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
    margin-bottom: 32px !important;
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .home-main .characters-grid .char-card {
    height: min(360px, 42vh) !important;
    min-height: 300px !important;
    border-radius: 22px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .home-main .characters-grid .char-card:hover {
    transform: translateY(-4px);
}

/* ── Sidebar cards ── */
.vl-sidebar-card {
    display: block;
    padding: 16px 16px 18px;
    border-radius: 20px;
    background: rgba(8, 6, 8, 0.78);
    border: 1px solid rgba(120, 20, 20, 0.28);
    box-shadow:
        0 10px 36px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px) saturate(1.1);
    -webkit-backdrop-filter: blur(16px) saturate(1.1);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

a.vl-sidebar-card:hover,
a.vl-sidebar-card:focus-visible {
    border-color: rgba(179, 0, 0, 0.45);
    box-shadow:
        0 14px 44px rgba(0, 0, 0, 0.52),
        0 0 28px rgba(120, 0, 0, 0.18);
    transform: translateY(-2px);
}

.vl-sidebar-card__eyebrow {
    display: block;
    margin-bottom: 6px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(201, 167, 106, 0.72);
}

.vl-sidebar-card__title {
    margin: 0 0 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.22rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #f0ebe4;
}

.vl-sidebar-card__text {
    margin: 0 0 12px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(220, 210, 200, 0.68);
}

.vl-sidebar-card__link {
    display: inline-flex;
    align-items: center;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(210, 180, 140, 0.88);
}

.vl-sidebar-card__link--gold {
    color: rgba(212, 173, 88, 0.95);
}

.vl-sidebar-continue {
    border-color: rgba(148, 168, 196, 0.28);
    background: linear-gradient(145deg, rgba(10, 12, 16, 0.88), rgba(8, 6, 10, 0.82));
}

.vl-sidebar-continue:hover,
.vl-sidebar-continue:focus-visible {
    border-color: rgba(148, 168, 196, 0.42);
    box-shadow:
        0 14px 44px rgba(0, 0, 0, 0.52),
        0 0 24px rgba(108, 128, 158, 0.14);
}

/* ── Goddess block — crown + crystal, no character ── */
.vl-sidebar-goddess {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(160, 24, 24, 0.42);
    background: rgba(6, 4, 6, 0.92);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.55),
        0 0 40px rgba(100, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 200, 120, 0.06);
    animation: vlGoddessPulse 4s ease-in-out infinite;
}

@keyframes vlGoddessPulse {
    0%, 100% {
        box-shadow:
            0 12px 48px rgba(0, 0, 0, 0.55),
            0 0 32px rgba(100, 0, 0, 0.14),
            inset 0 1px 0 rgba(255, 200, 120, 0.06);
    }
    50% {
        box-shadow:
            0 16px 56px rgba(0, 0, 0, 0.58),
            0 0 56px rgba(160, 20, 20, 0.28),
            inset 0 1px 0 rgba(255, 200, 120, 0.1);
    }
}

.vl-sidebar-goddess__art {
    position: relative;
    height: 148px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 90% at 50% 110%, rgba(120, 16, 16, 0.55), transparent 62%),
        radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201, 167, 106, 0.12), transparent 70%),
        linear-gradient(180deg, rgba(12, 8, 10, 0.4) 0%, rgba(4, 2, 4, 0.95) 100%);
}

.vl-sidebar-goddess__glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 50% 70%, rgba(212, 173, 88, 0.22), transparent 55%);
    pointer-events: none;
}

.vl-sidebar-goddess__smoke {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(80, 0, 0, 0.35), transparent 70%),
        radial-gradient(ellipse 40% 35% at 80% 70%, rgba(60, 0, 0, 0.28), transparent 68%);
    opacity: 0.85;
    pointer-events: none;
}

.vl-sidebar-goddess__ornament {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 180px;
    height: 180px;
    transform: translate(-50%, -42%);
    border-radius: 50%;
    border: 1px solid rgba(201, 167, 106, 0.18);
    box-shadow:
        inset 0 0 40px rgba(201, 167, 106, 0.08),
        0 0 48px rgba(120, 0, 0, 0.2);
    pointer-events: none;
}

.vl-sidebar-goddess__ornament::before,
.vl-sidebar-goddess__ornament::after {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    border: 1px solid rgba(201, 167, 106, 0.1);
}

.vl-sidebar-goddess__ornament::after {
    inset: 36px;
    border-color: rgba(179, 0, 0, 0.2);
}

.vl-sidebar-goddess__crystal {
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    width: 88px;
    height: 88px;
    object-fit: contain;
    filter:
        drop-shadow(0 0 24px rgba(80, 140, 255, 0.45))
        drop-shadow(0 8px 32px rgba(0, 0, 0, 0.65));
    pointer-events: none;
}

.vl-sidebar-goddess__crown {
    position: absolute;
    left: 50%;
    top: 18px;
    transform: translateX(-50%);
    font-size: 2rem;
    line-height: 1;
    color: rgba(212, 173, 88, 0.95);
    text-shadow:
        0 0 24px rgba(212, 173, 88, 0.55),
        0 4px 16px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.vl-sidebar-goddess__body {
    padding: 16px 16px 18px;
    text-align: center;
}

.vl-sidebar-goddess__eyebrow {
    display: block;
    margin-bottom: 4px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(201, 167, 106, 0.75);
}

.vl-sidebar-goddess__title {
    margin: 0 0 6px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #f4efe8;
}

.vl-sidebar-goddess__sub {
    margin: 0 0 14px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.76rem;
    line-height: 1.45;
    color: rgba(220, 210, 200, 0.65);
}

.vl-sidebar-goddess__features {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    text-align: left;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.76rem;
    line-height: 1.5;
    color: rgba(220, 210, 200, 0.82);
}

.vl-sidebar-goddess__features li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 6px;
}

.vl-sidebar-goddess__features li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.5rem;
    color: rgba(201, 167, 106, 0.65);
}

.vl-sidebar-goddess__features strong {
    color: #e85a5a;
    font-weight: 600;
}

.vl-sidebar-goddess__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 12px 20px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(145deg, #a30d0d 0%, #6f0808 100%);
    color: #f0ebe4;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(147, 11, 11, 0.38);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.vl-sidebar-goddess__cta:hover,
.vl-sidebar-goddess__cta:focus-visible {
    transform: scale(1.02);
    box-shadow: 0 10px 36px rgba(200, 24, 24, 0.48);
    filter: brightness(1.08);
}

.vl-sidebar-goddess__note {
    margin: 10px 0 0;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.68rem;
    color: rgba(200, 190, 180, 0.48);
}

.vl-sidebar-crystals {
    border-color: rgba(212, 173, 88, 0.22);
    background: linear-gradient(145deg, rgba(14, 10, 8, 0.88), rgba(8, 6, 8, 0.82));
}

.vl-sidebar-crystals:hover,
.vl-sidebar-crystals:focus-visible {
    border-color: rgba(212, 173, 88, 0.42);
    box-shadow:
        0 14px 44px rgba(0, 0, 0, 0.52),
        0 0 28px rgba(212, 173, 88, 0.12);
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .vl-desktop-sidebar .site-ad-slot--sidebar {
    margin-top: 0;
}

/* ── Lower blocks — hide duplicate premium/shop in landing ── */
body.crave-unified-home.crave-site-mode.crave-desktop-ui .vl-landing-stack {
    grid-column: 1 / -1;
    grid-row: 4;
    display: block !important;
    margin: 8px 0 0;
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .vl-landing-stack .vl-desktop-premium,
body.crave-unified-home.crave-site-mode.crave-desktop-ui .vl-landing-stack .vl-desktop-shop {
    display: none !important;
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .vl-landing-stack .vl-desktop-how {
    padding: 32px 36px 36px;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(10, 8, 10, 0.88), rgba(6, 4, 6, 0.92));
    border: 1px solid rgba(120, 20, 20, 0.28);
    box-shadow:
        0 16px 56px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    position: relative;
    z-index: 2;
}

.vl-how-intro {
    margin: 0 0 28px;
    max-width: 720px;
}

.vl-how-intro p {
    margin: 0 0 14px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    line-height: 1.58;
    color: rgba(232, 224, 216, 0.82);
}

.vl-how-intro p:last-child {
    margin-bottom: 0;
}

.vl-how-intro__accent {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.12rem !important;
    font-style: italic;
    line-height: 1.5 !important;
    color: rgba(240, 235, 228, 0.94) !important;
    text-shadow: 0 0 24px rgba(201, 167, 106, 0.12);
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .vl-how-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 0;
    padding-top: 24px;
    border-top: 1px solid rgba(120, 20, 20, 0.2);
    list-style: none;
    counter-reset: vl-how;
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .vl-how-step {
    padding: 0;
    border: none;
    counter-increment: vl-how;
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .vl-how-step__title {
    display: block;
    margin-bottom: 8px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(240, 235, 228, 0.94);
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .vl-how-step__title::before {
    content: counter(vl-how) '. ';
    color: rgba(201, 167, 106, 0.75);
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .vl-how-step__text {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.92rem;
    line-height: 1.48;
    color: rgba(232, 224, 216, 0.68);
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .hero-cta-after {
    display: none !important;
}

/* ── Footer — full stage ── */
body.crave-unified-home.crave-site-mode.crave-desktop-ui .site-footer {
    display: block !important;
    max-width: var(--vl-desktop-max);
    margin: 0 auto;
    padding: 32px 28px 40px;
    border-top: 1px solid rgba(120, 20, 20, 0.24);
    background: linear-gradient(180deg, transparent, rgba(6, 4, 6, 0.75));
    text-align: center;
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .footer-age {
    margin: 12px 0 0;
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: rgba(201, 167, 106, 0.55);
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
}

/* ── Card polish (desktop reference density) ── */
body.crave-unified-home.crave-site-mode.crave-desktop-ui .home-main .characters-grid .char-bg {
    background-position: center 10% !important;
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .home-main .characters-grid .char-card::before {
    background: linear-gradient(to top,
        rgba(4, 3, 5, 0.98) 0%,
        rgba(4, 3, 5, 0.78) 28%,
        rgba(4, 3, 5, 0.22) 55%,
        transparent 78%);
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .home-main .characters-grid .char-name,
body.crave-unified-home.crave-site-mode.crave-desktop-ui .home-main .characters-grid .char-name-rail {
    bottom: 132px !important;
    font-size: 1.2rem !important;
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .home-main .characters-grid .char-hero-type {
    bottom: 110px;
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .home-main .characters-grid .char-glass-hint {
    display: none !important;
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .home-main .characters-grid .char-hook {
    display: block !important;
    opacity: 1 !important;
    font-size: 0.82rem;
    margin-bottom: 10px !important;
}

@media (min-width: 769px) and (max-width: 1080px) {
    body.crave-unified-home.crave-site-mode.crave-desktop-ui {
        --vl-sidebar-w: 272px;
        --vl-desktop-max: min(1180px, 96vw);
    }

    body.crave-unified-home.crave-site-mode.crave-desktop-ui .voidlust-cinematic-hero__title {
        font-size: clamp(2rem, 3.8vw, 2.6rem);
    }

    body.crave-unified-home.crave-site-mode.crave-desktop-ui .home-main .characters-grid .char-card {
        min-height: 280px !important;
    }

    body.crave-unified-home.crave-site-mode.crave-desktop-ui .vl-how-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ── Glass install prompt (desktop website) ── */
body.crave-unified-home.crave-site-mode.crave-desktop-ui .pwa-install-toast {
    right: max(22px, env(safe-area-inset-right, 0px));
    bottom: max(22px, env(safe-area-inset-bottom, 0px));
    left: auto;
    width: min(360px, calc(100vw - 44px));
    transform: translateY(18px) scale(0.96);
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .pwa-install-toast.is-entering,
body.crave-unified-home.crave-site-mode.crave-desktop-ui .pwa-install-toast.is-visible {
    transform: translateY(0) scale(1);
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .pwa-install-toast.is-leaving {
    transform: translateY(12px) scale(0.98);
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .pwa-install-toast__inner {
    border-radius: 18px;
    background: rgba(8, 5, 8, 0.9);
    border-color: rgba(139, 21, 25, 0.35);
    box-shadow:
        0 16px 42px rgba(0, 0, 0, 0.58),
        0 0 32px rgba(139, 21, 25, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .pwa-install-toast__icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(90, 12, 12, 0.55), rgba(30, 6, 6, 0.75));
    border: 1px solid rgba(203, 169, 110, 0.24);
    font-size: 0;
}

body.crave-unified-home.crave-site-mode.crave-desktop-ui .pwa-install-toast__icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(80, 140, 255, 0.35));
}
