/* ==========================================================================
    Quiz — fixed-width portal column (398px on desktop, fluid on mobile)
   Dark theme; the empty space either side is where AdSense side rails land.
   ========================================================================== */

/* Poppins is loaded from inc/header.php with preconnect hints, NOT @import.
   An @import here chains requests — the browser must finish downloading this
   file before it even discovers the font URL — which delays first paint on
   mobile by a full round trip. */

:root {
    --accent:       #4C9EFF;
    --accent-2:     #6EB4FF;
    --accent-dark:  #2F7FE0;
    --gradient:     linear-gradient(135deg, #4C9EFF 0%, #F0629B 100%);
    --ink:          #E8E9EE;
    --muted:        #9A9AA6;
    --line:         #2A2B36;
    --gold:         #E0A93B;
    --gold-2:       #C98F1E;
    --green:        #35C778;
    --play-blue:    #5AA5FF;
    --play-chip:    #1D2130;
    --play-ink:     #E8E9EE;
    --play-muted:   #9C9FAA;

    /* Surfaces — page background vs. raised cards. */
    --bg:           #0E0F14;
    --surface:      #171923;

    /* Width of the page column — the bottom nav matches it exactly. */
    --col-w:        398px;

    /* Single source of truth for the sticky tab bar. The safe-area inset is
       the home-indicator strip on notched iPhones; it must be added to the
       tap-target height, not just used as padding, or the last slice of page
       content ends up hidden behind the bar. */
    --nav-tap:      56px;
    --nav-h:        calc(var(--nav-tap) + env(safe-area-inset-bottom, 0px));
}

* { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    overscroll-behavior-y: none;
}

body {
    margin: 0;
    /* `dvh` tracks the *visible* viewport as the mobile URL bar hides and
       shows. Plain `vh` is locked to the tallest state, which makes the page
       overshoot and jitter while scrolling. `vh` stays as the fallback. */
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background-color: var(--bg);
    background-image: none;
    background-size: auto;
    /* NOTE: no `background-attachment: fixed` here. On a long page it forces a
       full-height composited layer that Chrome drops mid-scroll, blanking the
       page to white. Scrolling the pattern with the page is the safe default. */
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* The page column. Stays narrow so ad side-rails have room to render. */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 12px 20px;
    position: relative;
    z-index: 1;
    border: 0;
    background-color: var(--bg);
    background-image: none;
    background-size: auto;
    /* `overflow-x: clip` contains the negative-margin sections without creating
       a scroll container, which is what broke painting on long pages. */
    overflow-x: clip;
}

@media (min-width: 480px) {
    .container {
        max-width: 398px;
        padding: 0 16px 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
    }
}

/* --------------------------------------------------------------- header -- */

/* Brand row was removed, so the header no longer needs to hold space for it. */
.site-header { padding-top: 4px; }

/* -------------------------------------------------------- detail chrome -- */

.store-detail-main {
    margin: 0 -12px;
    padding: 0 24px 20px;
    overflow: hidden;
}
@media (min-width: 480px) {
    .store-detail-main { margin: 0 -16px; }
}
.store-detail-header { padding: 18px 0 8px; }
.store-detail-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 42px;
    margin: 18px 0;
}
.store-detail-actions > div { display: flex; align-items: center; gap: 12px; min-width: 0; }
.store-back {
    position: relative;
    width: 38px;
    height: 38px;
    border: 0;
    font: inherit;
    color: var(--play-muted);
    font-size: 2.7rem;
    line-height: .7;
    background: transparent;
    cursor: pointer;
}

/* -------------------------------------------------------------- titles -- */

.all-games-section { text-align: center; padding-top: 14px; }

.section-title {
    display: inline-block;
    width: auto;
    margin: 0 0 4px;
    padding-bottom: 8px;
    font-size: 1.4em;
    font-weight: 600;
    color: var(--ink);
    border-bottom: 4px solid;
    border-image-slice: 1;
    border-image-source: var(--gradient);
}
.section-title .count {
    margin-left: 6px;
    font-size: .6em;
    font-weight: 700;
    color: var(--muted);
}

.no-results { margin: 20px 0; font-size: .9rem; color: var(--muted); }
.no-results[hidden] { display: none; }

/* ---------------------------------------------------------------- misc -- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 15px;
    border: 0;
    border-radius: 1rem;
    font: inherit;
    font-size: .8rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    cursor: pointer;
    transition: all .2s;
}
.btn:hover { background: var(--accent-2); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--wide { width: 100%; padding: .75rem 1rem; }

/* Ad slots — matched to the reference placements. */
.ad-slot { margin: 10px 0; text-align: center; }
.ad-slot.ad-top { min-height: 280px; }
.ad-slot.ad-mid { min-height: 250px; }
.ad-slot.ad-bottom { min-height: 250px; }
.ad-slot > div[id^="gpt-ad-"] { min-height: inherit; }

.ad-placeholder {
    display: grid;
    place-items: center;
    min-height: 100px;
    border: 1px dashed #383A48;
    border-radius: 10px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6B6E7C;
    background: #161822;
}
.ad-top .ad-placeholder { min-height: 280px; }
.ad-mid .ad-placeholder,
.ad-bottom .ad-placeholder { min-height: 250px; }

.site-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 20px 16px 0;
    margin-top: 20px;
    border-top: 1px solid var(--line);
}
.footer-copy { width: 100%; text-align: center; font-size: .68rem; color: #6B6E7C; }

.reward-section {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 18px;
    padding: 10px;
    border: 1px solid rgba(76, 158, 255, .75);
    border-radius: 8px;
    background: var(--surface);
}
.coin-display {
    display: inline-flex;
    flex: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 82px;
    min-height: 44px;
    padding: 7px 10px;
    border: 1px solid var(--accent);
    border-radius: 22px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--gold);
    background: var(--bg);
}
.earn-coins-btn {
    position: relative;
    display: inline-flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 0;
    min-height: 46px;
    padding: 8px 24px 8px 14px;
    border: 0;
    border-radius: 23px;
    font: inherit;
    font-size: .82rem;
    font-weight: 800;
    color: #fff;
    background: var(--accent-dark);
    cursor: pointer;
}
.earn-coins-btn:hover { background: var(--accent); }
.earn-coins-btn:disabled { opacity: .65; cursor: wait; }
.earn-coins-btn .btn-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ad-tag {
    position: absolute;
    top: 3px;
    right: 8px;
    font-size: .48rem;
    font-weight: 700;
    letter-spacing: .5px;
    color: rgba(255, 255, 255, .7);
    pointer-events: none;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 22px;
    z-index: 200;
    transform: translateX(-50%);
    padding: 11px 20px;
    border-radius: 20px;
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
    background: var(--accent-2);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .25);
    animation: popIn .2s ease;
}
.toast[hidden] { display: none; }

/* ------------------------------------------------------------- a11y ----- */

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---------------------------------------------------------- footer ------ */

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 14px;
    width: 100%;
}
.footer-links a {
    font-size: .74rem;
    font-weight: 600;
    color: var(--accent);
}
.footer-links a:hover { text-decoration: underline; }

/* -------------------------------------------------------------- quiz ---- */

.quiz-header-heading { flex: 1; }
.quiz-header-title {
    overflow: hidden;
    font-size: 1rem;
    font-weight: 700;
    color: var(--play-ink);
    text-overflow: ellipsis;
    white-space: nowrap;
}
.quiz-coin-balance {
    display: inline-flex;
    flex: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 78px;
    min-height: 38px;
    padding: 7px 13px;
    border: 1px solid rgba(224, 169, 59, .35);
    border-radius: 20px;
    font-family: inherit;
    font-size: .9rem;
    font-weight: 800;
    color: var(--ink);
    background: rgba(224, 169, 59, .1);
    cursor: pointer;
    transition: border-color .15s, background .15s;
}
.quiz-coin-balance:hover { border-color: var(--gold); background: rgba(224, 169, 59, .16); }
.quiz-coin-balance:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.quiz-coin-icon,
.coin-3d {
    position: relative;
    width: 22px;
    height: 22px;
    border: 2px solid #F6CD62;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD86B, var(--gold-2));
    box-shadow: inset 0 0 0 2px rgba(145, 91, 7, .24);
}
.quiz-coin-icon::after,
.coin-3d::after {
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(139, 84, 0, .4);
    border-radius: 50%;
    content: "";
}
.coin-3d { flex: none; width: 25px; height: 25px; }
.coin-3d.sm { width: 21px; height: 21px; }
.coin-3d.lg { width: 42px; height: 42px; border-width: 3px; }
.coin-3d.lg::after { inset: 9px; border-width: 2px; }

.quiz-reward-hook {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin: 0 0 16px;
    padding: 14px 16px;
    border-left: 3px solid var(--gold);
    background: rgba(224, 169, 59, .1);
}
.quiz-reward-hook strong { font-size: .9rem; color: var(--ink); }
.quiz-reward-hook span { font-size: .72rem; color: var(--play-muted); }

/* Contest "join" card — play & win entry screen. */
.contest-card {
    padding: 28px 20px;
    border-radius: 18px;
    text-align: center;
    background: var(--surface);
    box-shadow: 0 6px 20px rgba(0,0,0,.35);
    margin-bottom: 16px;
}
.contest-icon { display: block; font-size: 2.2rem; margin-bottom: 6px; }
.contest-kicker { margin: 0; font-size: .74rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--play-muted); }
.contest-prize { margin: 6px 0 10px; font-size: 1.3rem; color: var(--ink); }
.coin-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
    vertical-align: middle;
}
.contest-meta { margin: 0 0 10px; font-size: .78rem; color: var(--play-muted); }
.contest-entry { margin: 0 0 18px; font-size: .82rem; color: var(--play-muted); }
.contest-entry strong { color: var(--ink); }
.contest-saved-result {
    margin: -8px 0 16px;
    padding: 9px 10px;
    border-left: 3px solid var(--green);
    font-size: .74rem;
    line-height: 1.45;
    text-align: left;
    color: var(--play-ink);
    background: rgba(53, 199, 120, .1);
}
.contest-actions { display: flex; flex-direction: column; gap: 10px; }

/* Step 1: quick, unscored preference questions. */
.pref-progress { margin: 0 0 8px; font-size: .74rem; font-weight: 600; color: var(--play-muted); }

/* Step 2: pick-a-contest list (each card reuses .contest-card styling). */
.contest-list-title { margin: 4px 0 14px; font-size: 1.05rem; color: var(--ink); }

/* Timed play screen. */
.quiz-pips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
}
.quiz-pip {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: .68rem;
    font-weight: 700;
    color: var(--play-muted);
    background: var(--play-chip);
}
.quiz-pip.is-current { background: var(--accent); color: #fff; }
.quiz-pip.is-answered { background: var(--green); color: #fff; }

.quiz-play-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
    font-size: .8rem;
    color: var(--play-muted);
}
.quiz-timer {
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
    color: var(--ink);
    background: var(--play-chip);
}
.quiz-live-score strong { color: var(--ink); }
.quiz-lifeline {
    padding: 4px 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    font: inherit;
    font-size: .74rem;
    font-weight: 700;
    color: var(--gold);
    background: transparent;
    cursor: pointer;
}
.quiz-lifeline:disabled { opacity: .4; cursor: not-allowed; }

.quiz-card {
    padding: 20px 18px;
    border-radius: 16px;
    background: var(--surface);
    box-shadow: 0 6px 20px rgba(0,0,0,.35);
    margin-bottom: 16px;
}
.quiz-question { margin: 0 0 16px; font-size: 1.05rem; line-height: 1.4; color: var(--play-ink); }
.quiz-question-media {
    width: min(100%, 360px);
    aspect-ratio: 2 / 1;
    margin: 0 auto 16px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .22);
    border-radius: 8px;
    background: #0f172a;
    box-shadow: 0 14px 30px rgba(2, 6, 23, .32);
}
.quiz-question-media img { display: block; width: 100%; height: 100%; object-fit: cover; }

.quiz-options { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.quiz-option {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    font: inherit;
    font-size: .88rem;
    text-align: left;
    color: var(--play-ink);
    cursor: pointer;
    transition: all .15s;
}
.quiz-option:hover { border-color: var(--accent-2); }
.quiz-option.is-selected { border-color: var(--play-blue); background: var(--play-chip); font-weight: 600; }
.quiz-option.is-correct { border-color: var(--green); background: rgba(53, 199, 120, .16); }
.quiz-option.is-wrong { border-color: #E0455B; background: rgba(224, 69, 91, .16); }
.quiz-option.is-eliminated { opacity: .35; }
.quiz-option:disabled { cursor: default; }

.quiz-fact {
    margin: 0 0 16px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    background: var(--play-chip);
}
.quiz-fact h3 { margin: 0 0 5px; font-size: .8rem; color: var(--gold); }
.quiz-fact p { margin: 0; font-size: .78rem; line-height: 1.55; color: var(--play-muted); }

/* Color-swatch preference options (edge category). */
.quiz-option-color { display: flex; align-items: center; gap: 12px; }
.quiz-swatch { flex: none; width: 32px; height: 32px; border-radius: 50%; }

/* Slider preference options (edge category: thickness, speed…). */
.quiz-slider-wrap { display: flex; align-items: center; gap: 12px; }
.quiz-slider { flex: 1; accent-color: var(--accent); }
.quiz-slider-value { flex: none; min-width: 44px; text-align: right; font-weight: 700; color: var(--ink); }

/* Difficulty badge shown on each contest question. */
.quiz-difficulty {
    display: inline-block;
    margin: 0 0 10px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.quiz-difficulty-silly  { color: #35C778; background: rgba(53, 199, 120, .16); }
.quiz-difficulty-easy   { color: var(--accent-2); background: rgba(76, 158, 255, .16); }
.quiz-difficulty-medium { color: var(--gold); background: rgba(224, 169, 59, .16); }
.quiz-difficulty-hard   { color: #E0455B; background: rgba(224, 69, 91, .16); }

/* Live "edge" preview panel — an animated gradient border, adapted from the
   original edge.snaptiksaver.com border-glow technique, driven entirely by
   CSS custom properties that quiz.js updates as you answer each question. */
.edge-preview {
    --edge-colors: #00e7ff, #4361ee, #d800ff, #ff3d00, #00ff7b, #00e7ff;
    --edge-size: 6px;
    --edge-radius: 24px;
    --line-speed: 2s;
    position: relative;
    height: 150px;
    margin: 0 0 18px;
    border-radius: var(--edge-radius);
    background: #0b0c12;
    overflow: hidden;
}
.edge-preview::before {
    position: absolute;
    inset: 0;
    padding: var(--edge-size);
    border-radius: var(--edge-radius);
    background:
        linear-gradient(90deg, var(--edge-colors)) top left / 240px var(--edge-size) repeat-x,
        linear-gradient(180deg, var(--edge-colors)) top right / var(--edge-size) 240px repeat-y,
        linear-gradient(270deg, var(--edge-colors)) bottom right / 240px var(--edge-size) repeat-x,
        linear-gradient(0deg, var(--edge-colors)) bottom left / var(--edge-size) 240px repeat-y;
    content: "";
    pointer-events: none;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: edge-flow var(--line-speed) linear infinite;
}
.edge-preview-label {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: .78rem;
    font-weight: 600;
    color: var(--play-muted);
}
@keyframes edge-flow {
    from { background-position: 0 0, 100% 0, 100% 100%, 0 100%; }
    to   { background-position: 240px 0, 100% 240px, calc(100% - 240px) 100%, 0 calc(100% - 240px); }
}

.quiz-btn-secondary { background: var(--play-chip); color: var(--play-ink); }
.quiz-btn-secondary:hover { background: var(--line); }
.quiz-claim-btn { background: #16865c; }
.quiz-claim-btn:hover { background: #10704c; }
.quiz-claim-btn[hidden] { display: none; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none !important; }

.quiz-result { text-align: center; padding: 32px 16px; }
.quiz-result h2 { margin: 0 0 8px; }
.quiz-score { font-size: 1.4rem; font-weight: 700; color: var(--play-blue); margin: 0 0 12px; }
.quiz-result-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin: 0 0 16px;
}
.quiz-result-stats span { display: flex; flex-direction: column; gap: 2px; }
.quiz-result-stats strong { font-size: 1.1rem; color: var(--ink); }
.quiz-result-stats small { font-size: .68rem; color: var(--play-muted); }
.quiz-result .contest-actions { margin: 18px 0; }

.reward-dialog {
    width: min(420px, calc(100% - 32px));
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--surface);
    text-align: center;
}
.reward-dialog::backdrop { background: rgba(0, 0, 0, .72); }
.reward-dialog h2 { margin: 0 28px 8px; font-size: 1.15rem; }
.reward-dialog p { margin: 0 0 16px; color: var(--play-muted); }
.reward-dialog-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border: 0;
    color: var(--play-muted);
    background: transparent;
    font-size: 1.4rem;
    cursor: pointer;
}
.reward-ad-preview { min-height: 220px; margin-bottom: 16px; }

.coin-wallet-dialog {
    width: min(360px, calc(100% - 32px));
    padding: 28px 24px 24px;
    border: 1px solid rgba(224, 169, 59, .4);
    border-radius: 8px;
    color: var(--ink);
    background: var(--surface);
    text-align: center;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
}
.coin-wallet-dialog::backdrop { background: rgba(0, 0, 0, .78); }
.coin-wallet-dialog h2 { margin: 14px 28px 8px; font-size: 1.2rem; }
.coin-wallet-dialog p { margin: 0 0 18px; font-size: .84rem; line-height: 1.55; color: var(--play-muted); }
.coin-wallet-dialog small { display: block; margin-top: 14px; font-size: .64rem; line-height: 1.45; color: var(--play-muted); }
.coin-wallet-balance {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 130px;
    padding: 10px 18px;
    border: 1px solid rgba(224, 169, 59, .45);
    border-radius: 32px;
    color: var(--ink);
    background: rgba(224, 169, 59, .1);
}
.coin-wallet-balance strong { font-size: 1.45rem; }
.coin-wallet-earn { width: 100%; min-height: 50px; }

.discover-quizzes { margin: 24px 0 8px; padding: 20px 2px 0; border-top: 1px solid var(--line); text-align: left; }
.discover-quizzes h2 { margin: 0 0 8px; font-size: 1.05rem; color: var(--ink); }
.discover-quizzes p { margin: 0 0 10px; font-size: .82rem; line-height: 1.55; color: var(--play-muted); }
.discover-quizzes ul { margin: 0; padding-left: 18px; }
.discover-quizzes li { margin-bottom: 6px; font-size: .78rem; line-height: 1.5; color: var(--play-muted); }
.discover-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.discover-links a { padding: 7px 10px; border: 1px solid var(--line); font-size: .72rem; font-weight: 600; color: var(--accent-2); }



/* Category landing grid on the homepage. */
.quiz-category-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 18px 0;
}
.quiz-category-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: 0 6px 20px rgba(0,0,0,.35);
    transition: transform .15s, border-color .15s;
}
.quiz-category-card:hover { transform: translateY(-2px); border-color: var(--accent-2); }
.quiz-category-icon {
    display: grid;
    place-items: center;
    flex: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 1.4rem;
    background: var(--gradient);
}
.quiz-category-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.quiz-category-card h2 { margin: 0; font-size: 1rem; color: var(--play-ink); }
.quiz-category-meta { font-size: .74rem; color: var(--play-muted); }
.quiz-category-arrow { flex: none; font-size: 1.4rem; color: var(--play-muted); }

/* Simple content pages: about / contact / privacy / 404. */
.content-main { padding-top: 6px; }
.content-copy { padding: 4px 2px 20px; color: var(--play-ink); }
.content-copy h2 { margin: 22px 0 8px; font-size: 1.05rem; }
.content-copy p { margin: 0 0 12px; font-size: .88rem; line-height: 1.65; color: var(--play-muted); }
.content-copy a { color: var(--accent); text-decoration: underline; }
.contact-list { display: flex; flex-direction: column; gap: 6px; }
.contact-item h2 { margin: 18px 0 6px; font-size: .95rem; }
