/* gga-web — landing page styles.
 *
 * Visual language is lifted from i-nter.net's three-col home cards
 * (platform/web/static/app.css `.three-col` section). The relevant
 * pieces:
 *   - 3-col responsive grid of "windows"
 *   - Per-position title-bar gradient (cyan / indigo / teal)
 *   - Skewed-parallelogram CTA (.ca-btn) with conic-gradient halo on
 *     hover, using `--beam-color` per card.
 *
 * gga-web addition (per user direction): the CARD itself glows on
 * hover/focus/active — animated conic-gradient halo on the window
 * outline. i-nter.net puts that effect on the button only.
 */

:root {
    --bg: #0c0c10;
    --fg: #e6e6e9;
    --pane-bg: #ffffff;
    --pane-fg: #111114;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: Inconsolata, Menlo, "Geneva", system-ui, -apple-system, sans-serif;
    min-height: 100dvh;
}

.page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.brand {
    text-align: center;
    margin-bottom: 3rem;
}

.brand h1 {
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(3rem, 9vw, 5.5rem);
    margin: 0 0 0.5rem;
    letter-spacing: -0.04em;
    color: var(--fg);
}

.wordmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.04em;
    line-height: 0.9;
}

.wm-text { color: var(--fg); }

/* Runner — sized in em so it scales with the responsive h1 font-size.
 * Soft cyan glow ties the figure into the cyan card halos. */
.wm-runner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #22d3ee;
    width: 0.85em;
    height: 1.1em;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgb(34 211 238 / 0.65))
            drop-shadow(0 0 24px rgb(34 211 238 / 0.35));
}

/* Wordmark variant: runner stands IN PLACE OF the period — sits
 * between "gga" and "gg" so the mark reads as three glyphs instead
 * of "gga.gg" (which can mis-read as "gag"). Scaled smaller than the
 * left-of-wordmark version since here it carries the visual weight
 * of a single character, and dropped slightly so the back foot lands
 * on the baseline like a period would. */
.wm-runner-mid {
    width: 0.65em;
    height: 0.95em;
    margin: 0 -0.02em;
    align-self: center;
    /* Nudge down so the figure's visual center sits roughly on the
     * lowercase x-height midline of "gga" / "gg" rather than floating
     * above the cap-line. */
    transform: translateY(0.12em);
}

.wm-runner svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    display: block;
}

.brand p {
    margin: 0;
    opacity: 0.85;
    font-size: 1rem;
}

/* Typewriter tagline. Monospace so character widths don't reflow as
 * the string types out, and cyan tint to tie into the rest of the
 * mark. The caret is a solid block, blinking at ~1Hz. */
.tagline {
    font-family: ui-monospace, "SF Mono", Menlo, Monaco, Consolas, monospace;
    color: #22d3ee;
    letter-spacing: 0.01em;
    min-height: 1.4em;       /* prevents layout jump while empty between phrases */
}

.tagline-text { white-space: pre; }

.caret {
    display: inline-block;
    width: 0.6em;
    height: 1em;
    background: currentColor;
    margin-left: 2px;
    vertical-align: -0.12em;
    animation: caret-blink 1.05s steps(2, end) infinite;
}

@keyframes caret-blink {
    50% { opacity: 0; }
}

/* Visually-hidden text exposed only to assistive tech — used to give
 * screen readers a stable tagline instead of the typing animation. */
.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;
}

/* 3-column card grid. Mirrors .three-col from i-nter.net. */
.three-col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 720px) {
    .three-col { grid-template-columns: 1fr; }
}

/* Card container. Suppresses system.css window chrome (we don't pull
 * system.css into gga-web) and provides our own card surface. */
.window {
    background: var(--pane-bg);
    color: var(--pane-fg);
    display: flex;
    flex-direction: column;
    overflow: visible;
    position: relative;
    isolation: isolate;
}

.window-pane {
    padding: 1.25rem 1.5rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.title-bar {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
}

.title-bar .title {
    font-family: "Inter", system-ui, sans-serif;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin: 0;
}

/* Per-card theme classes. Position-class binding (not nth-child) so
 * card reordering doesn't silently swap colors. Card identity matches
 * the `.card-detail-*` siblings below. */
.window-gs .title-bar {
    background: linear-gradient(to right, #67e8f9, #22d3ee, #0891b2);
}
.window-ww .title-bar {
    background: linear-gradient(to right, #a5b4fc, #6c5ce7, #4338ca);
}
.window-pu .title-bar {
    background: linear-gradient(to right, #2dd4bf, #00b894, #0d9488);
}

.window-gs { --beam-color: #22d3ee; }
.window-ww { --beam-color: #6c5ce7; }
.window-pu { --beam-color: #00d4aa; }

/* Card-border glow — new behavior per user ask.
 *
 * Conic-gradient halo painted just outside the card outline; revealed
 * on hover/focus-within/active. Same masking trick as the i-nter.net
 * .ca-btn::after, scaled up to wrap the whole window. */
@property --card-beam-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
@keyframes card-beam-spin { to { --card-beam-angle: 360deg; } }

.three-col .window::after {
    content: '';
    position: absolute;
    inset: -7px;
    padding: 7px;
    background: conic-gradient(
        from var(--card-beam-angle) at 50% 50%,
        rgb(from var(--beam-color) r g b / 0.10)  0%,
        rgb(from var(--beam-color) r g b / 0.20) 45%,
        rgb(from var(--beam-color) r g b / 0.55) 65%,
        rgb(from var(--beam-color) r g b / 0.95) 78%,
        var(--beam-color)                         84%,
        rgb(from var(--beam-color) r g b / 0.95) 90%,
        rgb(from var(--beam-color) r g b / 0.45) 96%,
        rgb(from var(--beam-color) r g b / 0.10) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: -1;
    filter: drop-shadow(0 0 14px rgb(from var(--beam-color) r g b / 0.7))
            drop-shadow(0 0 28px rgb(from var(--beam-color) r g b / 0.45));
}

.three-col .window:hover::after,
.three-col .window:focus-within::after,
.three-col .window:active::after {
    opacity: 1;
    animation: card-beam-spin 2.5s linear infinite;
}

/* Soft outer bloom — separate layer so the halo reads even on the
 * darker page bg, and the conic-gradient ring above stays crisp. */
.three-col .window {
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.three-col .window:hover,
.three-col .window:focus-within,
.three-col .window:active {
    box-shadow:
        0 0 0 1px var(--beam-color),
        0 0 18px 2px rgb(from var(--beam-color) r g b / 0.55),
        0 0 48px 6px rgb(from var(--beam-color) r g b / 0.30);
    transform: translateY(-2px);
}

/* Parallelogram CTA — ported from i-nter.net .ca-btn. */
.ca-btn {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 22px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    position: relative;
    overflow: visible;
    z-index: 0;
}
.ca-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: skewX(-12deg);
    background: #0f0f0f;
    border: 1px solid #0f0f0f;
    transition: background 0.1s, border-color 0.1s;
    z-index: -1;
}
.ca-btn:hover::before { background: #333; border-color: #333; }

.cta-row {
    text-align: center;
    margin-top: 1rem;
}

/* Selectable card — Weekend Warrior is the first to wire this up.
 * Pattern is generic so the other cards can opt in by adding `.selectable`
 * + `:class="{ 'is-selected': open === '<id>' }"` and a card-detail
 * panel below the grid. */
.three-col .window {
    transition:
        opacity 0.30s ease,
        filter 0.30s ease,
        transform 0.30s ease,
        box-shadow 0.30s ease;
}
.three-col .selectable { cursor: pointer; }
.three-col .selectable:focus-visible {
    outline: 2px solid var(--beam-color);
    outline-offset: 4px;
}

/* Other cards while ANY selection is active — subdued, blurred, inert. */
.three-col .is-dimmed {
    opacity: 0.35;
    filter: blur(2px) saturate(0.7);
    transform: scale(0.97);
    pointer-events: none;
}

/* The selected card — pinned-on halo + slight lift + scale. Reuses
 * the same conic ring that hover normally drives, but sticks even
 * after pointer leaves. */
.three-col .is-selected {
    box-shadow:
        0 0 0 1px var(--beam-color),
        0 0 22px 3px rgb(from var(--beam-color) r g b / 0.70),
        0 0 60px 10px rgb(from var(--beam-color) r g b / 0.40);
    transform: translateY(-3px) scale(1.02);
    z-index: 1;
}
.three-col .is-selected::after {
    opacity: 1;
    animation: card-beam-spin 2.5s linear infinite;
}

/* Detail panel below the grid. Inherits the selected card's beam color
 * via a CSS var so future cards (gs / pu) can reuse the layout. */
[x-cloak] { display: none !important; }

.card-detail {
    margin-top: 1.5rem;
    background: var(--pane-bg);
    color: var(--pane-fg);
    padding: 1.5rem 2rem 2rem;
    position: relative;
    border-left: 4px solid var(--beam-color, #6c5ce7);
    box-shadow:
        0 0 0 1px rgb(from var(--beam-color, #6c5ce7) r g b / 0.40),
        0 8px 32px rgb(from var(--beam-color, #6c5ce7) r g b / 0.25);
}
.card-detail-gs { --beam-color: #22d3ee; }
.card-detail-ww { --beam-color: #6c5ce7; }
.card-detail-pu { --beam-color: #00d4aa; }

.card-detail-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}
.card-detail-head h2 {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1.5rem;
    margin: 0;
    color: var(--beam-color);
}
.card-detail-close {
    background: transparent;
    border: none;
    color: var(--pane-fg);
    font-size: 1.6rem;
    line-height: 1;
    padding: 0 0.4rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.15s ease;
}
.card-detail-close:hover { opacity: 1; }

.card-detail-body p { margin: 0 0 0.75rem; }
.card-detail-body ul { margin: 0 0 0.75rem; padding-left: 1.25rem; }
.card-detail-body li { margin-bottom: 0.25rem; }
.card-detail-body .muted { opacity: 0.55; font-size: 0.85rem; }
.card-detail-body .muted a { color: inherit; }

/* Bottom actions row inside a card-detail panel — body text on the
 * left, CTA pinned to the right. Wraps on narrow viewports. */
.card-detail-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.card-detail-actions .muted {
    margin: 0;
    flex: 1 1 18rem;
}
.card-detail-cta {
    flex-shrink: 0;
    padding: 10px 26px;
    font-size: 14px;
}

/* Wordmark link — keep the visual identical when the wordmark is
 * wrapped in <a> for navigation back to /. */
.wm-link {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.04em;
}

/* ───── Order form (Boosts flow) ──────────────────────────────────── */
.order-wrap {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* Single card hosting an order form. Reuses .window / .title-bar /
 * .window-pane shell so it matches the home cards. Per-flow themes
 * override --beam-color and the title-bar gradient below. */
.order-card {
    --beam-color: #00d4aa; /* default — PU teal */
}
.order-card .title-bar {
    background: linear-gradient(to right, #2dd4bf, #00b894, #0d9488);
}

/* Weekend Warrior rental card — indigo, matching the WW position-2
 * gradient on the home cards. */
.rental-card {
    --beam-color: #6c5ce7;
}
.rental-card .title-bar {
    background: linear-gradient(to right, #a5b4fc, #6c5ce7, #4338ca);
}
.order-card .window-pane {
    padding: 1.75rem 2rem 2rem;
}
.order-card .lead {
    margin: 0 0 1.5rem;
    opacity: 0.75;
}

/* Persistent halo on the order card — same conic-gradient ring used
 * on selected home cards, but always-on here since this IS the
 * selected flow. */
.order-card {
    position: relative;
    isolation: isolate;
    box-shadow:
        0 0 0 1px var(--beam-color),
        0 0 20px 2px rgb(from var(--beam-color) r g b / 0.45),
        0 0 50px 8px rgb(from var(--beam-color) r g b / 0.25);
}

/* Form field blocks — vertical rhythm + label-on-top pattern. */
.field-block {
    margin-bottom: 1.25rem;
}
.field-label {
    display: block;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    /* Bumped from rgba(0,0,0,0.55) (~3.6:1, fails WCAG AA) to 0.7 for
     * a 4.6:1 ratio against the white pane background. */
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 0.5rem;
}

.order-form select,
.order-form input[type="email"],
.order-form input[type="text"],
.order-form input[type="url"],
.order-form input[type="date"],
.app-login-form input[type="email"],
.app-login-form input[type="text"],
.app-settings-form input[type="text"],
.app-settings-form input[type="email"],
.app-settings-form input[type="password"],
.app-settings-form select {
    width: 100%;
    padding: 0.65rem 0.85rem;
    font: inherit;
    font-size: 0.95rem;
    background: #fafafa;
    border: 1.5px solid #d4d4d8;
    border-radius: 4px;
    color: var(--pane-fg);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.order-form select:focus,
.order-form input:focus,
.app-login-form input:focus,
.app-settings-form input:focus,
.app-settings-form select:focus {
    outline: none;
    border-color: var(--beam-color);
    box-shadow: 0 0 0 3px rgb(from var(--beam-color) r g b / 0.20);
}

/* Three-column field row — used for the Stripe-style payment form
 * (Expiry / CVC / ZIP). Collapses to single column on narrow viewports. */
.field-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.85rem;
    align-items: start;
}
@media (max-width: 600px) {
    .field-row-3 { grid-template-columns: 1fr; }
}

.field-label .optional {
    font-weight: normal;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.6;
    font-size: 0.85em;
    margin-left: 0.3em;
}
.field-help {
    margin: 0.4rem 0 0;
    font-size: 0.8rem;
    opacity: 0.55;
}

/* Tile-row radios — visually selectable cells, hide the native input. */
.tile-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.tile {
    flex: 1 1 0;
    min-width: 7rem;
    cursor: pointer;
    position: relative;
    border: 1.5px solid #d4d4d8;
    border-radius: 4px;
    padding: 0.65rem 0.85rem;
    background: #fafafa;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.tile input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.tile:hover {
    border-color: var(--beam-color);
}
.tile:has(input:focus-visible) {
    outline: 2px solid var(--beam-color);
    outline-offset: 3px;
}
.tile:has(input:checked) {
    border-color: var(--beam-color);
    background: rgb(from var(--beam-color) r g b / 0.10);
    box-shadow: inset 0 0 0 1px var(--beam-color);
}
.tile-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.95rem;
}
.tile-label small {
    font-size: 0.75rem;
    opacity: 0.6;
    font-weight: normal;
}

/* Compact variant — denser tiles for narrow rows like the rental
 * "Window" picker which lives next to the date input. */
.tile-compact {
    min-width: 0;
    padding: 0.5rem 0.6rem;
}
.tile-compact .tile-label { font-size: 0.85rem; }
.tile-compact .tile-label small { font-size: 0.7rem; }

/* Checkbox list — full-width rows with label, description, price. */
.check-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.check-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 0.9rem;
    border: 1.5px solid #d4d4d8;
    border-radius: 4px;
    background: #fafafa;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.check-row:hover { border-color: var(--beam-color); }
.check-row:has(input:focus-visible) {
    outline: 2px solid var(--beam-color);
    outline-offset: 3px;
}
.check-row:has(input:checked) {
    border-color: var(--beam-color);
    background: rgb(from var(--beam-color) r g b / 0.08);
}
.check-row input[type="checkbox"] {
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--beam-color);
    cursor: pointer;
}
.check-row-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.check-row-text small {
    font-size: 0.8rem;
    opacity: 0.6;
}
.check-row-price {
    font-family: ui-monospace, "SF Mono", Menlo, Monaco, Consolas, monospace;
    color: var(--beam-color);
    font-weight: 600;
}

/* "Included free" row — visually distinct from paid checkbox rows so
 * users don't read the vanity URL as a paid line item. Uses the same
 * grid as .check-row but swaps the checkbox slot for a "Included"
 * badge and pins the price column to FREE. */
.included-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 0.9rem;
    margin-bottom: 0.4rem;
    border: 1.5px dashed rgb(from var(--beam-color) r g b / 0.55);
    border-radius: 4px;
    background: rgb(from var(--beam-color) r g b / 0.06);
}
.included-badge {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 8px;
    border-radius: 3px;
    background: var(--beam-color);
    color: #0c0c10;
    white-space: nowrap;
}
.included-price {
    font-family: ui-monospace, "SF Mono", Menlo, Monaco, Consolas, monospace;
    color: var(--beam-color);
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* Read-only info row — used where the form previously had a picker
 * but the value is now system-determined (e.g. rental slot count =
 * game's max). Same shape as .included-row but no price column. */
.info-row {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 0.9rem;
    border: 1.5px dashed rgb(from var(--beam-color) r g b / 0.55);
    border-radius: 4px;
    background: rgb(from var(--beam-color) r g b / 0.06);
}
.info-badge {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 8px;
    border-radius: 3px;
    background: var(--beam-color);
    color: #ffffff;
    white-space: nowrap;
}
.info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.info-text small {
    font-size: 0.85rem;
    opacity: 0.75;
    line-height: 1.4;
}

/* Variant — info-row positioned above the form as expectation-setting
 * (e.g. "Console included with every rental"). Adds bottom margin so
 * it doesn't sit flush against the first form field. */
.info-row-lead {
    margin-bottom: 1.5rem;
}

/* Two info-rows side-by-side, equal width, equal height. Used at the
 * top of the rental form to pair "Slots / Console" as a single
 * value-prop block. Collapses to a single column on narrow viewports. */
.info-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    align-items: stretch;
}
.info-pair > .info-row {
    height: 100%;
}
@media (max-width: 600px) {
    .info-pair { grid-template-columns: 1fr; }
}

/* Live summary box. */
.order-summary {
    margin: 1.5rem 0 1.25rem;
    padding: 1rem 1.25rem;
    background: rgb(from var(--beam-color) r g b / 0.06);
    border-left: 3px solid var(--beam-color);
    border-radius: 0 4px 4px 0;
    font-family: ui-monospace, "SF Mono", Menlo, Monaco, Consolas, monospace;
    font-size: 0.9rem;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
}
.summary-total {
    border-top: 1px dashed rgb(from var(--beam-color) r g b / 0.5);
    padding-top: 8px;
    margin-top: 6px;
    font-weight: 700;
    font-size: 1.05rem;
}

.order-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.25rem;
}
.back-link {
    color: var(--pane-fg);
    opacity: 0.6;
    text-decoration: none;
    font-size: 0.9rem;
}
.back-link:hover { opacity: 1; }

.order-submit {
    padding: 12px 28px;
    font-size: 14px;
}
.order-submit[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
}
.order-submit[disabled]::before {
    background: #555;
    border-color: #555;
}

/* Right-aligned cluster in .order-actions — used to pair a small
 * status note next to the submit button (e.g. "Checkout coming soon")
 * without breaking the existing back-link / button layout. */
.order-actions-right {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}
.order-actions-right .muted {
    opacity: 0.6;
    font-size: 0.85rem;
    text-align: right;
    max-width: 18rem;
}
.order-actions-right .muted a { color: inherit; }

/* Success page — mock confirmation. */
.order-success .lead {
    font-size: 1.25rem;
    color: var(--beam-color);
    font-weight: 600;
}

/* ───── Reduced-motion overrides ─────────────────────────────────────
 * Honor the OS / browser "reduce motion" preference. Disables the
 * caret-blink, the conic-gradient halos that spin on hover/select, and
 * the lift transform on selected cards. The marks stay readable; only
 * the animation is removed. */
@media (prefers-reduced-motion: reduce) {
    .caret {
        animation: none;
        opacity: 1;
    }
    .three-col .window::after,
    :is(.three-col, .login-wrap) .ca-btn::after {
        animation: none !important;
    }
    .three-col .window,
    .three-col .is-selected,
    .three-col .is-dimmed {
        transition: none;
        transform: none !important;
    }
}

/* ============================================================
 * /app — gga.gg console (conceptual, no backend wiring).
 *
 * Reuses the home-page card primitives (.window, .title-bar,
 * .window-pane, .ca-btn) but pins --beam-color to cyan globally
 * since the console is the "Dedicated Game Servers" surface.
 * Slim chrome replaces the marquee brand block: smaller wordmark
 * left, page nav right.
 * ============================================================ */

.app-shell {
    --beam-color: #22d3ee;
    --beam-glow: rgb(34 211 238 / 0.45);
    background: var(--bg);
    color: var(--fg);
    min-height: 100dvh;
}

.app-chrome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgb(255 255 255 / 0.08);
    background: rgb(0 0 0 / 0.3);
}

.app-wordmark {
    display: inline-flex;
    align-items: center;
    gap: 0.04em;
    text-decoration: none;
    color: var(--fg);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}

.awm-text { color: var(--fg); }

.awm-runner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--beam-color);
    width: 0.85em;
    height: 1.05em;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgb(34 211 238 / 0.55));
}

.awm-slash {
    margin: 0 0.35em;
    color: rgb(255 255 255 / 0.25);
    font-weight: 400;
}

.awm-section {
    color: rgb(255 255 255 / 0.7);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.app-nav {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.9rem;
}

.app-user-chip {
    padding: 0.3rem 0.7rem;
    border: 1px solid rgb(255 255 255 / 0.15);
    border-radius: 4px;
    background: rgb(255 255 255 / 0.04);
    color: var(--fg);
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 0.8rem;
}

.app-signout, .app-back {
    color: rgb(255 255 255 / 0.7);
    text-decoration: none;
}

.app-signout:hover, .app-back:hover { color: var(--fg); }

.app-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 2rem 4rem;
}

/* ---------- Login screen ---------- */

.app-login-wrap {
    max-width: 440px;
    margin: 4rem auto 0;
}

.app-login-card .title-bar {
    background: linear-gradient(135deg, #67e8f9, #22d3ee 50%, #0891b2);
}

.app-login-form .field-block { margin-bottom: 1.1rem; }

.app-login-cta {
    width: 100%;
    margin-top: 0.25rem;
}

.app-login-cta:disabled,
.ca-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.app-login-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.4rem 0 1rem;
    color: var(--pane-fg);
    opacity: 0.55;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.app-login-divider::before,
.app-login-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgb(0 0 0 / 0.12);
}

.app-sso-row {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.app-sso-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    background: #fafafa;
    border: 1.5px solid #d4d4d8;
    border-radius: 4px;
    color: var(--pane-fg);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 120ms ease, color 120ms ease, background 120ms ease;
}

.app-sso-btn:not(:disabled):hover {
    border-color: var(--beam-color);
    color: var(--beam-color);
    background: #fff;
}

.app-sso-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.app-sso-btn svg { flex-shrink: 0; }

.app-login-note {
    margin-top: 1.4rem;
    text-align: center;
    font-size: 0.78rem;
}

/* ---------- Console — server list ---------- */

.app-page-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.app-page-title {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--fg);
    margin: 0;
}

.app-page-cta {
    flex-shrink: 0;
}

.app-server-list { margin-bottom: 1.25rem; }

.app-server-list .title-bar {
    background: linear-gradient(135deg, #67e8f9, #22d3ee 50%, #0891b2);
}

.app-list-pane { padding: 0; }

.app-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.92rem;
    color: var(--pane-fg);
}

.app-table thead th {
    text-align: left;
    padding: 0.7rem 1.25rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: rgb(0 0 0 / 0.55);
    border-bottom: 1px solid rgb(0 0 0 / 0.1);
    background: #fafafa;
}

.app-table tbody td {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid rgb(0 0 0 / 0.06);
}

.app-table tbody tr:last-child td {
    border-bottom: 0;
}

.app-row { transition: background 120ms ease; }

.app-row:not(.app-row-archived):hover { background: rgb(34 211 238 / 0.06); }

.app-row-name {
    color: var(--pane-fg);
    text-decoration: none;
    font-weight: 600;
}

.app-row-name:hover { color: var(--beam-color); }

.app-row code,
.app-table code {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 0.82rem;
    color: rgb(0 0 0 / 0.7);
}

.app-row-archived {
    opacity: 0.6;
}

.app-row-archived .app-row-name {
    color: rgb(0 0 0 / 0.6);
    cursor: default;
}

/* ---------- Status pills ---------- */

.app-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 0.78rem;
    text-transform: lowercase;
    color: rgb(0 0 0 / 0.7);
}

.app-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.app-status-live { color: #0d7a3c; }
.app-status-idle { color: #b45309; }
.app-status-off  { color: rgb(0 0 0 / 0.4); }

/* ---------- Per-server detail ---------- */

.app-server-id {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.app-crumb {
    color: rgb(255 255 255 / 0.55);
    text-decoration: none;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.95rem;
}

.app-crumb:hover { color: var(--fg); }

.app-crumb-sep {
    color: rgb(255 255 255 / 0.25);
}

.app-server-actions {
    display: inline-flex;
    gap: 0.5rem;
}

.ca-btn-ghost::before {
    background: rgb(255 255 255 / 0.06) !important;
    border: 1px solid rgb(255 255 255 / 0.18);
}

.ca-btn-ghost:hover::before {
    background: rgb(255 255 255 / 0.1) !important;
}

.app-tabs {
    display: flex;
    gap: 0.25rem;
    margin: 1rem 0 1.5rem;
    border-bottom: 1px solid rgb(255 255 255 / 0.08);
    overflow-x: auto;
}

.app-tab {
    padding: 0.65rem 1rem;
    color: rgb(255 255 255 / 0.55);
    text-decoration: none;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    white-space: nowrap;
    transition: color 120ms ease, border-color 120ms ease;
}

.app-tab:hover { color: var(--fg); }

.app-tab.is-active {
    color: var(--beam-color);
    border-bottom-color: var(--beam-color);
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.app-span-2 { grid-column: 1 / -1; }

@media (max-width: 760px) {
    .app-grid { grid-template-columns: 1fr; }
    .app-span-2 { grid-column: auto; }
}

.app-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.5rem;
    margin: 0;
}

.app-fact {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.app-fact dt {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgb(0 0 0 / 0.55);
}

.app-fact dd {
    margin: 0;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.95rem;
    color: var(--pane-fg);
}

.app-fact dd code {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 0.85rem;
}

.app-players {
    list-style: none;
    margin: 0 0 0.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.app-players li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.4rem;
    border-bottom: 1px dashed rgb(0 0 0 / 0.08);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.9rem;
}

.app-players li:last-child { border-bottom: 0; }

.app-pname {
    color: var(--pane-fg);
    font-weight: 500;
}

.app-feed {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.92rem;
    color: var(--pane-fg);
}

.app-feed li {
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed rgb(0 0 0 / 0.08);
}

.app-feed li:last-child { border-bottom: 0; }

.app-feed-time {
    display: inline-block;
    width: 5.5rem;
    color: rgb(0 0 0 / 0.5);
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 0.78rem;
}

.app-feed code {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 0.84rem;
    color: rgb(0 0 0 / 0.75);
}

.muted { color: rgb(0 0 0 / 0.55); }
.muted.small,
.app-server-wrap .small { font-size: 0.82rem; }

/* ---------- Server detail — Assets tab ---------- */

.app-assets-grid {
    grid-template-columns: 360px 1fr;
}

@media (max-width: 860px) {
    .app-assets-grid { grid-template-columns: 1fr; }
}

.app-drop-zone {
    border: 2px dashed rgb(0 0 0 / 0.18);
    border-radius: 6px;
    padding: 1.6rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 120ms ease, background 120ms ease;
}

.app-drop-zone:hover,
.app-drop-zone:focus-visible {
    border-color: var(--beam-color);
    background: rgb(34 211 238 / 0.04);
    outline: none;
}

.app-drop-icon {
    font-size: 1.6rem;
    color: var(--beam-color);
    margin-bottom: 0.4rem;
}

.app-drop-prompt {
    margin: 0 0 0.3rem;
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 500;
    color: var(--pane-fg);
}

.app-drop-note {
    margin-top: 0.8rem;
    text-align: center;
}

.app-tag {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: rgb(0 0 0 / 0.06);
    color: rgb(0 0 0 / 0.7);
}

.app-tag-map    { background: rgb(34 211 238 / 0.18); color: #0e7490; }
.app-tag-cfg    { background: rgb(0 0 0 / 0.08); color: rgb(0 0 0 / 0.7); }
.app-tag-plugin { background: rgb(108 92 231 / 0.18); color: #4338ca; }
.app-tag-pak    { background: rgb(0 184 148 / 0.18); color: #047857; }

.app-row-actions {
    text-align: right;
    white-space: nowrap;
}

.app-row-btn {
    padding: 0.3rem 0.7rem;
    margin-left: 0.3rem;
    background: #fafafa;
    border: 1px solid #d4d4d8;
    border-radius: 3px;
    color: var(--pane-fg);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.78rem;
    cursor: pointer;
    transition: border-color 120ms ease, color 120ms ease;
}

.app-row-btn:not(:disabled):hover {
    border-color: var(--beam-color);
    color: var(--beam-color);
}

.app-row-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.app-row-btn-warn:not(:disabled):hover {
    border-color: #b91c1c;
    color: #b91c1c;
}

/* ---------- Server detail — RCON tab ---------- */

.app-rcon-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: auto;
    color: rgb(255 255 255 / 0.85);
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 0.78rem;
    text-transform: lowercase;
}

.app-rcon-status .app-dot { background: #4ade80; }

.app-rcon-window { margin-bottom: 1.25rem; }

.app-rcon-pane { padding: 0; }

.app-terminal {
    background: #0c0c10;
    color: #d4d4d8;
    padding: 1rem 1.25rem;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 0.82rem;
    line-height: 1.5;
    max-height: 360px;
    overflow-y: auto;
}

.app-term-line {
    color: #67e8f9;
    margin-top: 0.6rem;
}

.app-term-line:first-child { margin-top: 0; }

.app-term-prompt {
    color: #22d3ee;
    margin-right: 0.5rem;
    user-select: none;
}

.app-term-out {
    margin: 0.2rem 0 0 1.4rem;
    color: #cbd5e1;
    white-space: pre-wrap;
    font-family: inherit;
    font-size: inherit;
}

.app-rcon-input-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.25rem;
    background: #0c0c10;
    border-top: 1px solid rgb(255 255 255 / 0.08);
}

.app-rcon-input-row .app-term-prompt {
    color: #22d3ee;
    margin-right: 0;
}

.app-rcon-input {
    flex: 1;
    padding: 0.55rem 0.75rem;
    background: rgb(255 255 255 / 0.05);
    border: 1px solid rgb(255 255 255 / 0.12);
    border-radius: 3px;
    color: #f5f5f5;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 0.85rem;
}

.app-rcon-input:focus {
    outline: none;
    border-color: var(--beam-color);
    box-shadow: 0 0 0 2px rgb(34 211 238 / 0.25);
}

.app-rcon-input::placeholder {
    color: rgb(255 255 255 / 0.35);
}

.ca-btn-sm {
    transform: scale(0.85);
    transform-origin: right center;
}

.app-rcon-pane > .muted {
    padding: 0.6rem 1.25rem 0.85rem;
    margin: 0;
    background: #0c0c10;
    color: rgb(255 255 255 / 0.45);
}

.app-rcon-pane > .muted kbd {
    padding: 0.05rem 0.35rem;
    background: rgb(255 255 255 / 0.08);
    border: 1px solid rgb(255 255 255 / 0.18);
    border-radius: 3px;
    font-family: inherit;
    font-size: 0.75rem;
}

.app-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
}

/* ---------- Server detail — Players tab ---------- */

.app-table-players td:nth-child(1),
.app-table-players td:nth-child(3),
.app-table-players td:nth-child(4),
.app-table-players td:nth-child(5) {
    white-space: nowrap;
}

/* ---------- Server detail — Mods tab ---------- */

.app-table-mods td:first-child {
    width: 48px;
    padding-right: 0;
}

.app-toggle {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 18px;
    cursor: pointer;
}

.app-toggle input { opacity: 0; width: 0; height: 0; }

.app-toggle span {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #d4d4d8;
    border-radius: 18px;
    transition: background 120ms ease;
}

.app-toggle span::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    top: 2px;
    left: 2px;
    background: #fff;
    border-radius: 50%;
    transition: transform 120ms ease;
}

.app-toggle input:checked + span {
    background: var(--beam-color);
}

.app-toggle input:checked + span::before {
    transform: translateX(14px);
}

.app-toggle input:disabled + span {
    cursor: not-allowed;
    opacity: 0.7;
}

.app-search {
    width: 100%;
    padding: 0.55rem 0.85rem;
    background: #fafafa;
    border: 1.5px solid #d4d4d8;
    border-radius: 4px;
    color: var(--pane-fg);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.92rem;
    margin: 0.6rem 0;
}

.app-search:focus {
    outline: none;
    border-color: var(--beam-color);
    box-shadow: 0 0 0 3px rgb(34 211 238 / 0.20);
}

.app-search:disabled { opacity: 0.55; cursor: not-allowed; }

.app-link {
    color: var(--beam-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ---------- Server detail — Logs tab ---------- */

.app-logs-window { margin-bottom: 1.25rem; }

.app-log-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.app-log-controls .app-row-btn {
    background: rgb(255 255 255 / 0.08);
    border-color: rgb(255 255 255 / 0.18);
    color: rgb(255 255 255 / 0.85);
}

.app-log-pane { padding: 0; }

.app-log-stream {
    margin: 0;
    padding: 1rem 1.25rem;
    background: #0c0c10;
    color: #cbd5e1;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 0.78rem;
    line-height: 1.55;
    max-height: 480px;
    overflow-y: auto;
    white-space: pre-wrap;
    word-break: break-word;
}

.app-log-time {
    color: rgb(255 255 255 / 0.45);
    margin-right: 0.5rem;
}

.app-log-level {
    display: inline-block;
    width: 3.5rem;
    color: #22d3ee;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
}

.app-log-warn { color: #fbbf24; }
.app-log-err  { color: #f87171; }

.app-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
}

.app-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.7rem;
    background: #fafafa;
    border: 1.5px solid #d4d4d8;
    border-radius: 18px;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.82rem;
    color: var(--pane-fg);
    cursor: pointer;
}

.app-chip input { margin: 0; cursor: pointer; }

.app-chip:has(input:checked) {
    background: rgb(34 211 238 / 0.10);
    border-color: var(--beam-color);
    color: var(--beam-color);
}

/* ---------- Server detail — Settings tab ---------- */

.app-settings-form .field-block:last-child { margin-bottom: 0; }

.app-settings-form input:disabled,
.app-settings-form select:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.app-danger-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.9rem 0;
    border-bottom: 1px dashed rgb(0 0 0 / 0.1);
}

.app-danger-row-final { border-bottom: 0; padding-bottom: 0; }

.app-danger-row > div { flex: 1; }

.app-danger-row strong {
    font-family: "Inter", system-ui, sans-serif;
    color: var(--pane-fg);
}

.app-danger-row p { margin: 0.1rem 0 0; }

/* ---------- Public-page → /app entry link ----------
 * Pinned to the top-right of every public marketing page so visitors
 * with an account can jump straight into the console. Stays subtle
 * (no chrome bar) so the centered marquee brand keeps the visual lead.
 */

.public-app-link {
    position: fixed;
    top: 1.25rem;
    right: 1.5rem;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.85rem;
    border: 1px solid rgb(255 255 255 / 0.18);
    border-radius: 4px;
    background: rgb(0 0 0 / 0.35);
    color: rgb(255 255 255 / 0.85);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: border-color 120ms ease, color 120ms ease, background 120ms ease;
}

.public-app-link:hover,
.public-app-link:focus-visible {
    border-color: #22d3ee;
    color: #22d3ee;
    background: rgb(0 0 0 / 0.5);
    outline: none;
}

@media (max-width: 480px) {
    .public-app-link {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.3rem 0.65rem;
        font-size: 0.78rem;
    }
}

/* ---------- Login flow — error / sent / restart bits ---------- */

.app-login-error {
    margin: 0 0 1rem;
    padding: 0.65rem 0.85rem;
    background: rgb(220 38 38 / 0.08);
    border-left: 3px solid #dc2626;
    color: #991b1b;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.88rem;
    line-height: 1.4;
}

.app-login-sent {
    margin: 0 0 1rem;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.88rem;
    color: rgb(0 0 0 / 0.65);
}

.app-login-sent strong {
    color: var(--pane-fg);
    font-weight: 600;
}

.app-login-restart {
    margin: 1rem 0 0;
    text-align: center;
    font-size: 0.85rem;
}

.app-login-restart a {
    color: var(--beam-color);
    text-decoration: none;
}

.app-login-restart a:hover { text-decoration: underline; }

/* OTP code input — wide, centered, monospace, big tracking. */
.app-login-form input[name="code"] {
    text-align: center;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 1.3rem;
    letter-spacing: 0.4em;
    padding-left: 1rem; /* offset for letter-spacing tail so cursor sits centered */
}

/* ---------- Sign-out button (replaces the old <a>) ---------- */

.app-signout-form {
    margin: 0;
    padding: 0;
    display: inline;
}

.app-signout {
    background: none;
    border: 0;
    padding: 0;
    color: rgb(255 255 255 / 0.7);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
}

.app-signout:hover { color: var(--fg); }

/* Account landing page (#1419 placeholder; full console arrives in #1420). */
.app-login-section {
    margin-top: 1.4rem;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgb(255 255 255 / 0.6);
}

.app-logout-form {
    margin-top: 1.6rem;
}

.app-login-cta-secondary {
    background: transparent;
    border: 1px solid rgb(255 255 255 / 0.25);
    color: rgb(255 255 255 / 0.85);
}

.app-login-cta-secondary:hover {
    border-color: rgb(255 255 255 / 0.5);
    color: var(--fg);
}
