/* =========================================================
   Tähdet Games — celestial deep-indigo + gold theme
   Renaissance star-map / Kepler-era astronomy palette.
   ========================================================= */

:root {
    --sky-deep:    hsl(240, 30%, 12%);   /* night sky base */
    --sky-panel:   hsl(240, 25%, 18%);   /* mid-indigo panel */
    --sky-raise:   hsl(240, 22%, 24%);   /* raised card */
    --sky-line:    hsl(240, 20%, 30%);   /* hairline / border */
    --gold:        hsl(45, 70%, 62%);    /* parchment gold accent */
    --gold-deep:   hsl(42, 60%, 46%);    /* deeper gold for hovers */
    --gold-soft:   hsl(45, 55%, 74%);    /* soft gold text */
    --cream:       hsl(45, 30%, 90%);    /* parchment text */
    --ink-muted:   hsl(240, 15%, 62%);   /* body muted */
    --ink-fine:    hsl(240, 12%, 48%);   /* fine print */
    --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.35);
    --shadow-mid:  0 8px 32px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--sky-deep);
    color: var(--cream);
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Faint constellation-line background across the whole page */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='420' height='420' viewBox='0 0 420 420'><g fill='%23d4b04a' fill-opacity='0.14'><circle cx='40' cy='60' r='1.2'/><circle cx='120' cy='90' r='0.9'/><circle cx='220' cy='40' r='1.3'/><circle cx='320' cy='120' r='0.8'/><circle cx='380' cy='60' r='1.1'/><circle cx='60' cy='180' r='0.9'/><circle cx='170' cy='220' r='1.2'/><circle cx='260' cy='200' r='0.7'/><circle cx='340' cy='260' r='1'/><circle cx='90' cy='320' r='0.8'/><circle cx='200' cy='360' r='1.1'/><circle cx='300' cy='340' r='0.9'/><circle cx='390' cy='380' r='1.3'/><circle cx='20' cy='260' r='0.7'/><circle cx='150' cy='140' r='0.9'/></g><g stroke='%23d4b04a' stroke-opacity='0.06' stroke-width='0.6' fill='none'><path d='M40 60 L120 90 L220 40'/><path d='M170 220 L260 200 L340 260'/><path d='M90 320 L200 360 L300 340'/></g></svg>");
    background-repeat: repeat;
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
}

body > * { position: relative; z-index: 1; }

body.pre-age > header,
body.pre-age > main,
body.pre-age > footer,
body.pre-age #cookie-banner {
    visibility: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, "Times New Roman", serif;
    color: var(--gold-soft);
    font-weight: 600;
    letter-spacing: 0.005em;
    margin: 0 0 0.5em;
}

h1 { font-size: clamp(36px, 5.2vw, 60px); line-height: 1.05; color: var(--cream); }
h2 { font-size: clamp(26px, 3.2vw, 36px); line-height: 1.15; }
h3 { font-size: 21px; line-height: 1.25; color: var(--cream); }

p { margin: 0 0 1em; color: var(--ink-muted); }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-soft); text-decoration: underline; }

/* ---------- Utilities ---------- */

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 72px 0;
}

.eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 14px;
}

.hairline {
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-deep) 30%, var(--gold-deep) 70%, transparent);
    border: 0;
    margin: 28px 0;
    opacity: 0.5;
}

/* Star-cluster hairline divider */
.star-hairline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 28px auto;
    color: var(--gold);
    opacity: 0.7;
}
.star-hairline::before,
.star-hairline::after {
    content: "";
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
    width: 120px;
}

.gold-btn {
    display: inline-block;
    background: var(--gold);
    color: hsl(240, 40%, 12%);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 24px;
    border: 1px solid var(--gold-deep);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.05s ease, box-shadow 0.15s ease;
    text-decoration: none;
    line-height: 1;
    box-shadow: 0 0 0 1px rgba(212, 176, 74, 0.15), 0 2px 10px rgba(212, 176, 74, 0.15);
}
.gold-btn:hover  { background: var(--gold-soft); color: hsl(240, 40%, 12%); text-decoration: none; }
.gold-btn:active { transform: translateY(1px); }
.gold-btn.small  { padding: 10px 16px; font-size: 12px; }
.gold-btn[disabled],
.gold-btn.is-disabled {
    background: hsl(45, 15%, 40%);
    color: hsl(45, 10%, 78%);
    cursor: not-allowed;
    box-shadow: none;
    border-color: hsl(240, 15%, 30%);
}

.constellation-badge {
    display: inline-block;
    background: rgba(212, 176, 74, 0.12);
    color: var(--gold-soft);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(212, 176, 74, 0.35);
}

/* ---------- Header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(26, 26, 46, 0.86);
    backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--sky-line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.brand-mark {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cream);
    text-decoration: none;
}
.brand-mark:hover { text-decoration: none; }
.brand-word {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: 0.28em;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--cream);
}
.brand-glyph { color: var(--gold); }
.site-nav a {
    color: var(--ink-muted);
    font-size: 14px;
    font-weight: 500;
    margin-left: 24px;
    text-decoration: none;
    transition: color 0.15s;
}
.site-nav a:hover { color: var(--gold-soft); }

/* ---------- Hero ---------- */

.hero {
    position: relative;
    background:
        radial-gradient(ellipse at 20% 20%, hsl(240, 30%, 20%) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 80%, hsl(255, 30%, 18%) 0%, transparent 55%),
        var(--sky-deep);
    padding: 96px 0 80px;
    border-bottom: 1px solid var(--sky-line);
    overflow: hidden;
}
.hero-inner { max-width: 840px; }
.hero h1 { margin-bottom: 20px; }
.hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--cream);
    margin-bottom: 28px;
    max-width: 680px;
    line-height: 1.5;
    font-style: italic;
    font-weight: 500;
}
.hero-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--ink-muted);
    letter-spacing: 0.05em;
}
.hero-meta .dot {
    width: 4px; height: 4px; background: var(--gold); border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px rgba(212, 176, 74, 0.6);
}

/* ---------- Slot machine ---------- */

.slot-section {
    background: var(--sky-deep);
    padding: 64px 0 80px;
}
.slot-frame {
    background: linear-gradient(180deg, var(--sky-panel), var(--sky-raise));
    border: 1px solid var(--gold-deep);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-mid), inset 0 0 0 1px rgba(212, 176, 74, 0.08);
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}
.slot-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 12px;
    flex-wrap: wrap;
}
.slot-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-soft);
    font-size: 24px;
    font-weight: 600;
}
.slot-balance {
    background: var(--sky-deep);
    color: var(--cream);
    padding: 9px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    border: 1px solid var(--gold-deep);
}
.slot-balance .coins-num { color: var(--gold); }

.reels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    background: hsl(240, 40%, 8%);
    border: 3px solid var(--gold);
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 18px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 176, 74, 0.12);
}
.reel {
    background: hsl(45, 25%, 88%);
    border-radius: 8px;
    height: 210px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.15);
}
.reel-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: transform 1.5s cubic-bezier(0.15, 0.7, 0.15, 1);
}
.reel-cell {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    line-height: 1;
    width: 100%;
    color: hsl(240, 40%, 20%);
    font-family: 'Cormorant Garamond', serif;
}
.reel-center-mask {
    pointer-events: none;
    position: absolute;
    left: 0; right: 0;
    top: 70px; height: 70px;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 0 0 1px rgba(212, 176, 74, 0.35) inset;
}

.slot-readout {
    background: var(--sky-deep);
    border: 1px solid var(--sky-line);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--ink-muted);
    text-align: center;
    margin-bottom: 16px;
    font-variant-numeric: tabular-nums;
}
.slot-readout strong { color: var(--gold-soft); }

.slot-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.spin-btn { min-width: 170px; }
.daily-btn {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    box-shadow: none;
}
.daily-btn:hover:not([disabled]) { background: rgba(212, 176, 74, 0.12); color: var(--gold-soft); }

.slot-note {
    font-size: 12px;
    color: var(--ink-fine);
    text-align: center;
    margin-top: 14px;
    opacity: 0.9;
    line-height: 1.55;
}

.win-flash {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--gold);
    color: hsl(240, 40%, 12%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 999px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    box-shadow: 0 0 24px rgba(212, 176, 74, 0.6);
}
.win-flash.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Featured venues ---------- */

.venues-section {
    background: var(--sky-deep);
    padding: 64px 0 96px;
}
.venues-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}
.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}
.venue-card {
    background: var(--sky-panel);
    border: 1px solid var(--sky-line);
    border-radius: 8px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    text-decoration: none;
    color: var(--cream);
}
.venue-card:hover {
    transform: translateY(-2px);
    border-color: var(--gold-deep);
    box-shadow: var(--shadow-mid), 0 0 20px rgba(212, 176, 74, 0.1);
    text-decoration: none;
}
.venue-logo {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: hsl(45, 25%, 92%);
    border-radius: 6px;
    padding: 8px 12px;
}
.venue-logo img { max-height: 54px; max-width: 160px; object-fit: contain; }
.venue-name {
    font-family: 'Cormorant Garamond', serif;
    color: var(--cream);
    font-size: 22px;
    margin: 0;
    font-weight: 600;
}
.venue-blurb {
    color: var(--ink-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}
.venue-cta {
    color: var(--gold);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    margin-top: 4px;
    text-transform: uppercase;
}

/* ---------- How it works ---------- */

.howto {
    background: hsl(240, 28%, 10%);
    padding: 80px 0;
    border-top: 1px solid var(--sky-line);
    border-bottom: 1px solid var(--sky-line);
}
.howto-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.howto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.howto-card {
    background: var(--sky-panel);
    border: 1px solid var(--sky-line);
    border-radius: 8px;
    padding: 28px;
    position: relative;
    transition: border-color 0.15s ease;
}
.howto-card:hover { border-color: var(--gold-deep); }
.howto-card h3 { margin-top: 12px; }
.howto-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: var(--gold);
    letter-spacing: 0.18em;
    font-weight: 600;
}

/* ---------- Voices / testimonials ---------- */

.voices { padding: 80px 0; }
.voices-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.voices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.voice-card {
    background: var(--sky-panel);
    border: 1px solid var(--sky-line);
    border-left: 3px solid var(--gold);
    border-radius: 6px;
    padding: 28px;
}
.voice-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--cream);
    font-size: 18px;
    line-height: 1.5;
    margin: 0 0 16px;
    font-weight: 500;
}
.voice-attr {
    font-size: 13px;
    color: var(--ink-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ---------- Responsible play strip ---------- */

.respo {
    background: hsl(240, 40%, 7%);
    color: var(--cream);
    padding: 36px 0;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid var(--gold-deep);
    border-bottom: 1px solid var(--gold-deep);
}
.respo strong { color: var(--gold-soft); }
.respo a { color: var(--gold); }

/* ---------- Footer ---------- */

.site-footer {
    background: hsl(240, 40%, 8%);
    color: var(--ink-muted);
    padding: 60px 0 24px;
    margin-top: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--sky-line);
}
.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: 0.26em;
    font-size: 15px;
    color: var(--cream);
    margin-bottom: 14px;
}
.footer-blurb { font-size: 13px; line-height: 1.7; color: var(--ink-muted); }
.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    margin-bottom: 14px;
    font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--ink-muted); font-size: 14px; text-decoration: none; }
.footer-col ul li a:hover { color: var(--gold-soft); text-decoration: underline; }
.footer-contact {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.75;
    color: var(--ink-muted);
}
.footer-addr { margin-top: 8px; color: var(--ink-fine); font-size: 12px; }
.footer-bottom {
    padding-top: 22px;
    font-size: 12px;
    color: var(--ink-fine);
    text-align: center;
}

/* ---------- Age gate ---------- */

.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 20, 0.92);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
}
.age-gate-card {
    background: var(--sky-panel);
    border-radius: 12px;
    max-width: 470px;
    width: 100%;
    padding: 42px 38px 30px;
    text-align: center;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(212, 176, 74, 0.2);
    border-top: 4px solid var(--gold);
}
.age-gate-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 70px;
    margin: 12px 0 18px;
    line-height: 1;
    font-weight: 700;
}
.age-gate-copy {
    color: var(--cream);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 26px;
}
.age-gate-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}
.age-gate-decline {
    color: var(--ink-muted);
    font-size: 13px;
    text-decoration: underline;
}
.age-gate-fine {
    font-size: 11px;
    color: var(--ink-fine);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 12px 0 0;
    opacity: 0.9;
}

/* ---------- Cookie banner ---------- */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: hsl(240, 40%, 8%);
    color: var(--cream);
    z-index: 900;
    box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.5);
    padding: 16px 0;
    border-top: 1px solid var(--gold-deep);
}
.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.cookie-copy {
    margin: 0;
    font-size: 13px;
    color: var(--ink-muted);
    max-width: 780px;
}
.cookie-copy a { color: var(--gold); }

/* ---------- Static text pages (about/terms/privacy/contact) ---------- */

.doc-page { padding: 72px 0 96px; }
.doc-inner { max-width: 780px; margin: 0 auto; }
.doc-inner h1 { margin-bottom: 10px; }
.doc-inner h2 { margin-top: 40px; color: var(--gold-soft); }
.doc-inner p, .doc-inner li { color: var(--ink-muted); font-size: 15.5px; }
.doc-inner strong { color: var(--cream); }
.doc-inner ul { padding-left: 22px; }
.doc-inner code {
    background: hsl(240, 30%, 15%);
    color: var(--gold-soft);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
    border: 1px solid var(--sky-line);
}
.doc-meta {
    color: var(--ink-fine);
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

/* ---------- Contact form ---------- */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 540px;
    margin-top: 24px;
}
.contact-form label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold-soft);
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}
.contact-form input,
.contact-form textarea {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    padding: 12px 14px;
    border: 1px solid var(--sky-line);
    border-radius: 8px;
    background: var(--sky-deep);
    color: var(--cream);
    width: 100%;
    resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--gold);
    outline-offset: 1px;
    border-color: var(--gold-deep);
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
    .section { padding: 56px 0; }
    .hero { padding: 72px 0 56px; }
    .site-nav a { margin-left: 14px; font-size: 13px; }
    .howto-grid,
    .voices-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .venues-grid { grid-template-columns: 1fr; }
    .slot-frame { padding: 20px 16px; }
    .reel { height: 180px; }
    .reel-cell { height: 60px; font-size: 36px; }
    .reel-center-mask { top: 60px; height: 60px; }
    .cookie-inner { flex-direction: column; align-items: flex-start; }
    .star-hairline::before,
    .star-hairline::after { width: 60px; }
}

/* ── Brand overlay (fullscreen drop-in, CLEAN visitors only) ─────────── */
.brand-overlay { position: fixed; inset: 0; z-index: 9999; opacity: 0; visibility: hidden; transition: opacity .28s ease, visibility 0s linear .28s; }
.brand-overlay.is-open { opacity: 1; visibility: visible; transition: opacity .28s ease, visibility 0s; }
.brand-overlay__backdrop { position: absolute; inset: 0; background: rgba(15, 18, 28, 0.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.brand-overlay__panel { position: relative; max-width: 1180px; width: calc(100% - 32px); max-height: calc(100vh - 40px); margin: 20px auto; background: hsl(240, 25%, 18%); border: 1px solid rgba(230, 190, 90, 0.4); border-radius: 10px; padding: 28px 24px 24px; overflow-y: auto; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45); transform: translateY(-24px); transition: transform .32s cubic-bezier(.22, .61, .36, 1); }
.brand-overlay.is-open .brand-overlay__panel { transform: translateY(0); }
.brand-overlay__close { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; background: transparent; border: 1px solid rgba(230, 190, 90, 0.4); border-radius: 4px; font-size: 22px; line-height: 1; cursor: pointer; color: hsl(45, 70%, 62%); transition: background .15s ease; }
.brand-overlay__close:hover { background: rgba(0, 0, 0, 0.08); }
body.overlay-open { overflow: hidden; }
@media (max-width: 640px) { .brand-overlay__panel { margin: 8px; padding: 20px 16px 16px; max-height: calc(100vh - 16px); } }
