:root {
    --bg: #07090f;
    --bg-deep: #03050a;
    --surface: #101722;
    --surface-strong: #162131;
    --line: rgba(255, 255, 255, 0.1);
    --text: #f7fafc;
    --muted: #98a4b5;
    --gold: #f5c84b;
    --gold-strong: #ffe16b;
    --teal: #39d2c0;
    --blue: #5f8bff;
    --danger: #ff6b6b;
    --nav-height: 68px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    background: var(--bg);
    color: var(--text);
    font-family: "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(3, 5, 10, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    width: 100%;
    max-width: 1440px;
    min-height: var(--nav-height);
    margin: 0 auto;
    padding: 0 36px;
}

.logo,
.brand-logo {
    flex: 0 0 auto;
    color: var(--gold-strong);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 28px;
}

.nav-menu a,
.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    color: #d8dee9;
    border-radius: 8px;
    font-size: 15px;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-menu a:hover,
.nav-link:hover {
    background: rgba(245, 200, 75, 0.12);
    color: var(--gold-strong);
}

.nav-menu a.active {
    background: rgba(245, 200, 75, 0.14);
    color: var(--gold-strong);
}

.nav-actions,
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.button,
.register-btn,
.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.register-btn:hover,
.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-1px);
}

.primary-btn,
.register-btn,
.button-primary {
    background: var(--gold);
    color: #111;
    box-shadow: 0 10px 28px rgba(245, 200, 75, 0.24);
}

.secondary-btn,
.button-ghost {
    border: 1px solid rgba(245, 200, 75, 0.55);
    background: rgba(245, 200, 75, 0.08);
    color: var(--gold-strong);
}

.home-page {
    overflow-x: hidden;
}

.hero-carousel {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: var(--bg-deep);
}

.slide {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 54px 36px 76px;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 5, 10, 0.94) 0%, rgba(7, 13, 24, 0.84) 44%, rgba(20, 24, 31, 0.72) 100%),
        repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
}

.slide.is-live::after,
.slide.is-sports::after {
    content: "";
    position: absolute;
    inset: auto -8% 0 auto;
    width: min(58vw, 780px);
    height: 92%;
    opacity: 0.82;
    background:
        linear-gradient(140deg, transparent 0 34%, rgba(57, 210, 192, 0.2) 34% 36%, transparent 36% 100%),
        linear-gradient(26deg, transparent 0 42%, rgba(245, 200, 75, 0.18) 42% 44%, transparent 44% 100%);
    clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}

.slide.is-sports::after {
    opacity: 0.7;
    background:
        linear-gradient(140deg, transparent 0 34%, rgba(95, 139, 255, 0.22) 34% 36%, transparent 36% 100%),
        linear-gradient(26deg, transparent 0 42%, rgba(245, 200, 75, 0.2) 42% 44%, transparent 44% 100%);
}

.slide.active {
    z-index: 1;
    opacity: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
    gap: 54px;
    align-items: center;
    width: 100%;
    max-width: 1180px;
}

.hero-inner > *,
.app-meta,
.download-main,
.feature-card,
.live-panel,
.sports-panel {
    min-width: 0;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    margin-bottom: 18px;
    border: 1px solid rgba(57, 210, 192, 0.42);
    border-radius: 999px;
    color: var(--teal);
    font-size: 14px;
    font-weight: 700;
}

.hero-title {
    max-width: 680px;
    color: var(--gold-strong);
    font-size: clamp(44px, 7vw, 86px);
    font-weight: 900;
    line-height: 1.02;
    text-wrap: balance;
}

.hero-subtitle {
    max-width: 600px;
    margin-top: 20px;
    color: #d2d8e4;
    font-size: clamp(17px, 2vw, 22px);
    overflow-wrap: anywhere;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-board {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(16, 23, 34, 0.86);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    overflow: hidden;
}

.board-head,
.board-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
}

.board-head {
    background: rgba(245, 200, 75, 0.12);
    color: var(--gold-strong);
    font-weight: 800;
}

.board-row + .board-row {
    border-top: 1px solid var(--line);
}

.board-row strong {
    display: block;
    color: #fff;
}

.board-row span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 13px;
}

.odds {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    height: 34px;
    border-radius: 999px;
    background: rgba(57, 210, 192, 0.12);
    color: var(--teal);
    font-weight: 900;
}

.carousel-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    z-index: 3;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.carousel-dot {
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
    cursor: pointer;
}

.carousel-dot.active {
    background: var(--gold);
}

.section {
    padding: 76px 36px;
}

.section.alt {
    background: #0b111b;
}

.section-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.section-title {
    margin-bottom: 28px;
    color: var(--gold-strong);
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 900;
    text-align: center;
}

.section-note {
    max-width: 680px;
    margin: -12px auto 36px;
    color: var(--muted);
    text-align: center;
    overflow-wrap: anywhere;
}

.download-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 22px;
    align-items: stretch;
    width: 100%;
    min-width: 0;
}

.download-main,
.qr-panel,
.live-panel,
.sports-panel,
.feature-card {
    max-width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.download-main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 26px;
    align-items: center;
    padding: 30px;
}

.app-meta h3,
.live-panel h3,
.sports-panel h3,
.feature-card h3 {
    color: #fff;
    font-size: 24px;
}

.app-meta p,
.live-panel p,
.sports-panel p,
.feature-card p {
    margin-top: 8px;
    color: var(--muted);
    overflow-wrap: anywhere;
}

.download-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.phone-frame {
    display: grid;
    place-items: center;
    width: 178px;
    height: 266px;
    border: 9px solid #0d1320;
    border-radius: 28px;
    background: linear-gradient(155deg, #152235, #0a0f18 66%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-screen {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background:
        linear-gradient(160deg, rgba(245, 200, 75, 0.18), rgba(57, 210, 192, 0.08)),
        #101722;
}

.phone-screen strong {
    color: var(--gold-strong);
    font-size: 24px;
}

.qr-panel {
    display: grid;
    place-items: center;
    padding: 24px;
    text-align: center;
}

.qr-box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    width: 132px;
    height: 132px;
    padding: 10px;
    margin-bottom: 14px;
    border-radius: 8px;
    background: #f5f7fb;
}

.qr-box i {
    display: block;
    border-radius: 2px;
    background: #0c1220;
}

.qr-box i:nth-child(3),
.qr-box i:nth-child(7),
.qr-box i:nth-child(11),
.qr-box i:nth-child(14),
.qr-box i:nth-child(17),
.qr-box i:nth-child(19),
.qr-box i:nth-child(23) {
    background: transparent;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.member-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.member-card {
    min-height: 190px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.member-card h3 {
    color: #fff;
    font-size: 22px;
}

.member-card strong {
    display: block;
    margin-top: 12px;
    color: var(--gold-strong);
    font-size: 24px;
    overflow-wrap: anywhere;
}

.member-card p {
    margin-top: 8px;
    color: var(--muted);
    overflow-wrap: anywhere;
}

.launch-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.launch-panel .download-main {
    grid-template-columns: 1fr;
}

.status-panel strong {
    color: var(--gold-strong);
    font-size: 26px;
}

.status-panel p {
    margin-top: 8px;
    color: var(--muted);
}

.upcoming-card {
    opacity: 0.82;
}

.member-board [data-wallet-balance],
.member-board [data-subsystem-player] {
    overflow-wrap: anywhere;
}

.feature-card {
    min-height: 176px;
    padding: 24px;
}

.feature-icon {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 8px;
    background: rgba(57, 210, 192, 0.12);
    color: var(--teal);
    font-weight: 900;
}

.feature-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.live-sports {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
}

.live-panel,
.sports-panel {
    min-height: 300px;
    padding: 28px;
}

.live-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.live-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    align-items: center;
    gap: 14px;
    min-height: 54px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
}

.live-item time {
    color: var(--gold-strong);
    font-weight: 800;
}

.live-item span {
    color: #dfe6f1;
}

.live-badge {
    min-width: 52px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(255, 107, 107, 0.12);
    color: #ff8e8e;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
}

.partner-image {
    width: 100%;
    max-width: 520px;
    margin-top: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 1999;
    display: none;
    background: rgba(0, 0, 0, 0.78);
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 2000;
    display: none;
    width: min(360px, calc(100vw - 36px));
    padding: 30px;
    border: 1px solid rgba(245, 200, 75, 0.72);
    border-radius: 8px;
    background: #111722;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
    text-align: center;
    transform: translate(-50%, -50%);
}

.popup h2,
.popup h3 {
    color: var(--gold-strong);
    font-size: 24px;
}

.popup p {
    margin: 14px 0 24px;
    color: var(--muted);
}

.popup.is-open,
.popup-overlay.is-open {
    display: block;
}

.auth-page {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 34px 18px;
    background:
        linear-gradient(130deg, rgba(57, 210, 192, 0.08), transparent 32%),
        linear-gradient(230deg, rgba(245, 200, 75, 0.12), transparent 38%),
        #05070d;
}

.auth-card {
    width: 100%;
    max-width: min(440px, calc(100vw - 36px));
    padding: 36px;
    border: 1px solid rgba(245, 200, 75, 0.42);
    border-radius: 8px;
    background: rgba(16, 23, 34, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.auth-brand {
    display: block;
    margin-bottom: 14px;
    color: var(--gold-strong);
    font-size: 40px;
    font-weight: 900;
    text-align: center;
}

.auth-title {
    margin-bottom: 10px;
    color: #e6edf8;
    font-size: 24px;
    text-align: center;
}

.auth-hint {
    margin: 0 0 26px;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}

.form-field {
    display: grid;
    gap: 7px;
    margin-bottom: 16px;
}

.form-field label {
    color: #bbc6d6;
    font-size: 14px;
}

.required {
    color: var(--gold-strong);
}

.form-field input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid #334155;
    border-radius: 8px;
    outline: none;
    background: #0b111b;
    color: #fff;
}

.form-field input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245, 200, 75, 0.16);
}

.form-row {
    display: flex;
    justify-content: flex-end;
    margin: 4px 0 22px;
}

.text-link {
    color: var(--gold-strong);
}

.form-error {
    min-height: 22px;
    margin: -4px 0 14px;
    color: var(--danger);
    font-size: 14px;
}

.invite-notice {
    margin: 4px 0 22px;
    padding: 14px;
    border-left: 3px solid var(--gold);
    border-radius: 8px;
    background: rgba(245, 200, 75, 0.1);
    color: #f9d876;
    font-size: 14px;
}

.auth-submit {
    width: 100%;
    min-height: 50px;
}

.auth-switch {
    margin-top: 22px;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}

.t22-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 14% 8%, rgba(57, 210, 192, 0.16), transparent 30%),
        radial-gradient(circle at 82% 14%, rgba(245, 200, 75, 0.12), transparent 28%),
        var(--bg);
}

.t22-shell {
    width: min(1280px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 38px 0 70px;
}

.t22-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 28px;
    align-items: stretch;
    min-height: 360px;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(120deg, rgba(9, 14, 24, 0.96), rgba(15, 24, 37, 0.88)),
        repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px);
    overflow: hidden;
}

.t22-hero-copy {
    align-self: center;
    min-width: 0;
}

.t22-account-panel {
    display: grid;
    gap: 14px;
    align-self: center;
}

.t22-account-panel > div,
.t22-panel,
.t22-alert {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(16, 23, 34, 0.88);
}

.t22-account-panel > div {
    padding: 20px;
}

.t22-account-panel span,
.room-card span,
.mini-item span,
.panel-head p {
    color: var(--muted);
    font-size: 13px;
}

.t22-account-panel strong {
    display: block;
    margin-top: 6px;
    color: var(--gold-strong);
    font-size: 24px;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.t22-alert {
    margin: 18px 0;
    padding: 14px 18px;
    color: #d9e4f2;
}

.t22-alert.success {
    border-color: rgba(57, 210, 192, 0.35);
    color: #95fff2;
}

.t22-alert.error {
    border-color: rgba(255, 107, 107, 0.42);
    color: #ffb1b1;
}

.t22-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.75fr);
    gap: 18px;
    margin-top: 18px;
}

.t22-grid.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.t22-panel {
    padding: 22px;
    min-width: 0;
}

.t22-panel h2 {
    margin: 0;
    color: #f7fafc;
    font-size: 20px;
}

.panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.compact-head {
    align-items: center;
}

.quick-join,
.club-create {
    display: flex;
    gap: 10px;
}

.quick-join input,
.club-create input,
.create-room input {
    min-height: 42px;
    border: 1px solid #334155;
    border-radius: 8px;
    outline: none;
    background: #0b111b;
    color: #fff;
}

.quick-join input,
.club-create input {
    width: 118px;
    padding: 0 12px;
}

.quick-join input:first-child {
    text-transform: uppercase;
}

.room-list,
.mini-list,
.create-room {
    display: grid;
    gap: 12px;
}

.room-card,
.mini-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(7, 12, 20, 0.72);
}

.room-card > div,
.mini-item > div {
    min-width: 0;
}

.room-card strong,
.mini-item strong {
    display: block;
    color: #f7fafc;
    overflow-wrap: anywhere;
}

.room-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.room-meta span,
.state-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(245, 200, 75, 0.1);
    color: var(--gold-strong);
    white-space: nowrap;
}

.create-room input {
    width: 100%;
    padding: 0 12px;
}

.form-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.form-pair label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 13px;
}

.toggle-field {
    align-content: end;
    grid-template-columns: auto 1fr;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid #334155;
    border-radius: 8px;
    background: #0b111b;
    color: #fff;
}

.message-item {
    width: 100%;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.message-item.unread {
    border-color: rgba(245, 200, 75, 0.36);
}

.gain {
    color: #75f0a1;
}

.loss {
    color: #ff9f9f;
}

.nav-user {
    max-width: 180px;
    color: var(--gold-strong);
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.empty-state {
    padding: 22px;
    border: 1px dashed rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    color: var(--muted);
    text-align: center;
}

@media (max-width: 1024px) {
    .top-nav {
        gap: 18px;
        padding: 0 22px;
    }

    .nav-menu {
        gap: 4px;
        margin-left: 0;
    }

    .hero-inner,
    .t22-hero,
    .t22-grid,
    .download-layout,
    .member-grid,
    .live-sports {
        grid-template-columns: 1fr;
    }

    .t22-grid.compact {
        grid-template-columns: 1fr;
    }

    .hero-board {
        max-width: 560px;
    }
}

@media (max-width: 760px) {
    :root {
        --nav-height: 62px;
    }

    .top-nav {
        display: grid;
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 14px 16px;
        gap: 12px;
    }

    .brand-logo,
    .logo {
        font-size: 25px;
    }

    .nav-menu {
        grid-column: 1;
        grid-row: 2;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .nav-actions,
    .nav-right {
        grid-column: 1;
        grid-row: 3;
        width: 100%;
        margin-left: 0;
        justify-content: flex-start;
        gap: 8px;
    }

    .nav-menu a,
    .nav-link {
        min-height: 34px;
        padding: 0 11px;
        font-size: 14px;
    }

    .button,
    .register-btn,
    .primary-btn,
    .secondary-btn {
        min-height: 38px;
        padding: 0 17px;
        font-size: 14px;
    }

    .hero-carousel {
        min-height: 680px;
    }

    .slide {
        align-items: start;
        padding: 44px 18px 76px;
    }

    .hero-inner {
        gap: 28px;
    }

    .hero-actions {
        margin-top: 26px;
    }

    .hero-subtitle,
    .section-note,
    .app-meta p,
    .live-panel p,
    .sports-panel p,
    .feature-card p {
        line-break: anywhere;
        word-break: break-all;
    }

    .hero-subtitle {
        max-width: 320px;
    }

    .section-note,
    .app-meta p,
    .live-panel p,
    .sports-panel p,
    .feature-card p {
        max-width: 300px;
    }

    .board-head,
    .board-row {
        padding: 14px;
    }

    .section {
        padding: 56px 18px;
    }

    .download-main {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .phone-frame {
        justify-self: center;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .live-item {
        grid-template-columns: 58px 1fr;
    }

    .live-badge {
        grid-column: 2;
        justify-self: start;
    }

    .auth-card {
        padding: 28px 20px;
    }

    .t22-shell {
        width: min(100% - 28px, 680px);
        padding-top: 24px;
    }

    .t22-hero,
    .t22-panel {
        padding: 18px;
    }

    .panel-head,
    .quick-join,
    .club-create,
    .room-card,
    .mini-item {
        align-items: stretch;
        flex-direction: column;
    }

    .quick-join input,
    .club-create input {
        width: 100%;
    }

    .room-meta {
        justify-content: flex-start;
    }
}

@media (max-width: 420px) {
    .hero-title {
        font-size: 42px;
    }

    .auth-page {
        padding: 24px 16px;
    }

    .auth-card {
        max-width: calc(100vw - 32px);
    }
}
