/* ===== LingVerse - 古风修仙主题 ===== */

:root {
    --bg-primary: #0a0f1c;
    --bg-secondary: #111827;
    --bg-card: #151d2e;
    --bg-card-hover: #1a2540;
    --bg-panel: #0e1525;
    --border-color: rgba(201, 153, 58, 0.15);
    --border-gold: rgba(201, 153, 58, 0.3);

    --text-primary: #e8e0d0;
    --text-secondary: #a8a090;
    --text-muted: #6a6560;
    --text-gold: #c9993a;
    --text-jade: #3dab97;
    --text-red: #e06060;
    --text-blue: #60a0e0;

    --accent-gold: #c9993a;
    --accent-jade: #3dab97;
    --accent-crimson: #b93030;
    --accent-purple: #9a6ae0;
    --accent-blue: #5090d0;

    --gradient-gold: linear-gradient(135deg, #8a6a20 0%, #c9993a 50%, #8a6a20 100%);
    --gradient-jade: linear-gradient(135deg, #1a6b5a 0%, #3dab97 100%);
    --gradient-bg: linear-gradient(180deg, #0a0f1c 0%, #111827 50%, #0e1525 100%);

    --font-serif: KaiTi, 楷体, STKaiti, BiauKai, "Noto Serif SC", "Source Han Serif SC", FZSong-Z01S, STSong, SimSun, "Songti SC", serif;
    --font-display: KaiTi, 楷体, STKaiti, BiauKai, "Noto Serif SC", FZKai-Z03S, serif;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --text-on-gold: #fff;

    --rarity-1: #6a6a6a;
    --rarity-2: #4ac0e0;
    --rarity-3: #e0a030;
    --rarity-4: #c060e0;
    --rarity-5: #e04040;


    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-glow-gold: 0 0 20px rgba(201, 153, 58, 0.15);

    /* 补充缺失语义色 */
    --text-orange: #ff9800;
    --text-gray: #8a8580;
    --text-green-light: #dcedc8;
    --accent-orange: #ff9800;

    /* 通用半透明背景 */
    --bg-glass: rgba(255, 255, 255, 0.025);
    --bg-glass-jade: rgba(61, 171, 151, 0.04);
    --border-jade: rgba(61, 171, 151, 0.12);
    --border-orange: rgba(255, 152, 0, 0.35);
    --bg-orange-glass: rgba(255, 152, 0, 0.06);

    /* 弹窗 z-index 统一层级 */
    --z-overlay-base: 100000;
    --z-overlay-high: 110000;
    --z-overlay-top: 120000;
}

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

html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-serif);
    background-color: #0e1525;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(201, 153, 58, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(61, 171, 151, 0.04) 0%, transparent 60%),
        var(--gradient-bg);
    color: var(--text-primary);
    min-height: 100vh;
    overflow: hidden;
}

button, a, [onclick] {
    touch-action: manipulation;
}

/* ===== Toast ===== */
.toast-container {
    position: fixed;
    top: 60px;
    right: 20px;
    z-index: var(--z-overlay-top);
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.toast {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    color: var(--text-gold);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    box-shadow: var(--shadow-glow-gold);
    animation: toastIn 0.3s ease, toastOut 0.3s ease 2.7s forwards;
    max-width: 320px;
    pointer-events: auto;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toastOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* ===== 隐藏 ===== */
.hidden {
    display: none !important;
}

/* ===== 通用品质 (Rarity) 颜色样式 ===== */
.rarity-1 { color: var(--rarity-1); border-color: var(--rarity-1); }
.rarity-2 { color: var(--rarity-2); border-color: var(--rarity-2); }
.rarity-3 { color: var(--rarity-3); border-color: var(--rarity-3); }
.rarity-4 { color: var(--rarity-4); border-color: var(--rarity-4); }
.rarity-5 { color: var(--rarity-5); border-color: var(--rarity-5); }



/* ===== 登录页 ===== */
.login-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    overflow: auto;
    position: relative;
    padding-top: 40px;
}

.login-bg-overlay {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 153, 58, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(61, 171, 151, 0.04) 0%, transparent 60%),
        var(--gradient-bg);
    z-index: 0;
}

/* ===== 登录页双栏英雄区 ===== */
.login-hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
    width: min(100%, 1100px);
    padding: 0 24px;
}

/* 桌面端：branding 与 features 合并在左栏 */
.hero-branding {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-left {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-right {
    grid-column: 2;
    grid-row: 1 / 3;
    position: sticky;
    top: 40px;
}

.login-logo {
    text-align: left;
}

.logo-title {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--text-gold);
    text-shadow: 0 0 40px rgba(201, 153, 58, 0.3), 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 12px;
    margin-bottom: 4px;
}

.logo-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    letter-spacing: 6px;
    font-weight: 300;
}

.logo-tagline {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
    letter-spacing: 4px;
}

.logo-intro {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 15px;
}

/* 公共文本样式 */
.text-warn { color: #e74c3c; }
.text-warn-bold { color: #e74c3c; font-weight: bold; }

/* ===== 玩法亮点 ===== */
.login-features {
    text-align: left;
}

.features-headline {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--text-gold);
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.features-sub {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 18px;
}

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

.feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: border-color 0.2s;
}

.feature-item:hover {
    border-color: var(--border-gold);
}

.feature-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.feature-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.features-footer {
    margin-top: 14px;
    font-size: 13px;
    color: var(--text-jade);
    letter-spacing: 1px;
}

/* ===== 身份码输入框 ===== */
.input-code {
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    font-family: monospace;
    font-size: 18px;
}

.form-switch-spaced {
    margin-top: 20px;
}

.login-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    width: 380px;
    box-shadow: var(--shadow-md);
}

.card-title {
    text-align: center;
    font-size: 20px;
    color: var(--text-gold);
    margin-bottom: 28px;
    font-weight: 600;
    letter-spacing: 2px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-serif);
    font-size: 15px;
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(201, 153, 58, 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

/* 通用应用级输入框与下拉框 */
.app-input, .app-select {
    width: 100%;
    box-sizing: border-box;
    padding: 8px 10px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.app-input:focus, .app-select:focus {
    border-color: var(--text-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}

.app-input::placeholder {
    color: var(--text-muted);
}

.input-with-btn {
    display: flex;
    gap: 8px;
}

.input-with-btn input {
    flex: 1;
}

.btn-send-code {
    padding: 10px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    color: var(--text-gold);
    font-family: var(--font-serif);
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
}

.btn-send-code:hover {
    background: rgba(201, 153, 58, 0.15);
}

.btn-send-code:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background: var(--gradient-gold);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--text-on-gold);
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 4px;
    transition: opacity 0.2s, transform 0.1s;
    margin-top: 8px;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-switch {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.form-switch a {
    color: var(--text-jade);
    text-decoration: none;
    margin-left: 4px;
}

.form-switch a:hover {
    text-decoration: underline;
}

.form-switch .switch-sep {
    margin: 0 8px;
    color: var(--text-muted);
}

.card-desc {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.role-compare {
    margin-bottom: 16px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.compare-item+.compare-item {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.compare-item.compare-highlight {
    background: rgba(201, 153, 58, 0.06);
}

.compare-label {
    flex-shrink: 0;
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 56px;
}

.compare-highlight .compare-label {
    color: var(--text-gold);
}

.compare-list {
    color: var(--text-muted);
    line-height: 1.4;
}

.compare-highlight .compare-list {
    color: var(--text-secondary);
}

.form-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: var(--text-muted);
    font-size: 12px;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.form-divider span {
    padding: 0 12px;
}

.form-switch-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.switch-link {
    color: var(--text-jade);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 14px;
    border: 1px solid rgba(61, 171, 151, 0.2);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    white-space: nowrap;
}

.switch-link:hover {
    background: rgba(61, 171, 151, 0.1);
    border-color: var(--accent-jade);
}

.btn-guest {
    background: var(--gradient-jade);
    letter-spacing: 6px;
}

.login-footer {
    position: relative;
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
    z-index: 1;
    margin: 0 0 28px;
}

.landing-content {
    position: relative;
    z-index: 1;
    width: min(100%, 1020px);
    display: grid;
    gap: 16px;
    padding: 24px 16px 48px;
}

.landing-quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.anchor-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid rgba(201, 153, 58, 0.22);
    background:
        linear-gradient(180deg, rgba(201, 153, 58, 0.08), rgba(13, 21, 40, 0.6)),
        rgba(13, 21, 40, 0.56);
    color: var(--text-gold);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.anchor-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(201, 153, 58, 0.45);
    background:
        linear-gradient(180deg, rgba(201, 153, 58, 0.14), rgba(20, 34, 53, 0.82)),
        rgba(20, 34, 53, 0.82);
}

.landing-section {
    background: rgba(13, 21, 40, 0.78);
    border: 1px solid rgba(201, 153, 58, 0.12);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.landing-section-hero {
    background:
        radial-gradient(circle at top right, rgba(201, 153, 58, 0.15), transparent 32%),
        radial-gradient(circle at bottom left, rgba(61, 171, 151, 0.08), transparent 28%),
        rgba(13, 21, 40, 0.82);
}

.hero-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.hero-banner-line {
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 153, 58, 0.7), rgba(201, 153, 58, 0));
}

.hero-banner-text {
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    max-width: 760px;
    font-size: 38px;
    line-height: 1.28;
    margin-bottom: 10px;
}

.hero-stage {
    display: block;
    margin-top: 12px;
}

.hero-copy {
    display: grid;
    gap: 14px;
}

.hero-marks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-mark {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font-size: 13px;
    letter-spacing: 0.5px;
}

.hero-mark strong {
    color: var(--text-gold);
    margin-right: 8px;
    font-weight: 700;
}

.lore-quote {
    margin: 0;
    padding: 18px 20px;
    border-left: 3px solid rgba(201, 153, 58, 0.5);
    border-radius: 0 14px 14px 0;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    line-height: 1.9;
    font-size: 15px;
}

.section-eyebrow {
    color: var(--text-jade);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.landing-section h2 {
    font-size: 25px;
    line-height: 1.4;
    color: var(--text-gold);
    margin-bottom: 12px;
}

.section-intro {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

.info-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.info-pill {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid rgba(201, 153, 58, 0.18);
    background:
        linear-gradient(180deg, rgba(201, 153, 58, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(201, 153, 58, 0.06);
    color: var(--text-gold);
    font-size: 13px;
    letter-spacing: 1px;
}

.ai-fact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ai-fact-item {
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(201, 153, 58, 0.04), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.02);
}

.ai-fact-item dt {
    color: var(--text-gold);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.ai-fact-item dd {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 14px;
}

.source-note {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.8;
}

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

.world-lore-card,
.region-card,
.faction-card {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(201, 153, 58, 0.05), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.02);
}

.world-lore-card {
    padding: 18px;
}

.world-lore-card h3,
.region-card h3,
.faction-card h3 {
    color: var(--text-primary);
    font-size: 18px;
    margin-bottom: 10px;
}

.world-lore-card p,
.region-card p,
.faction-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 14px;
}

.highlight-grid,
.realm-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.highlight-card,
.realm-stat,
.loop-step,
.community-box,
.faq-list details {
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 14px;
}

.highlight-card {
    padding: 18px;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(201, 153, 58, 0.55), transparent);
}

.highlight-card h3,
.loop-step h3 {
    color: var(--text-primary);
    font-size: 18px;
    margin-bottom: 10px;
}

.highlight-card p,
.loop-step p,
.realm-stat span,
.community-box p,
.faq-list p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 14px;
}

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

.region-card {
    padding: 18px;
}

.region-kicker,
.faction-label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(61, 171, 151, 0.12);
    color: var(--text-jade);
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.faction-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.faction-card {
    padding: 18px;
}

.play-loop {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 14px;
}

.loop-step {
    padding: 18px;
}

.loop-step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    margin-bottom: 14px;
    background: rgba(61, 171, 151, 0.12);
    color: var(--text-jade);
    font-weight: 700;
    letter-spacing: 1px;
}

.realm-stat {
    padding: 18px;
    background:
        linear-gradient(180deg, rgba(61, 171, 151, 0.05), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.02);
}

.realm-stat strong {
    display: block;
    color: var(--text-gold);
    font-size: 18px;
    margin-bottom: 8px;
}

.community-box {
    padding: 18px;
}

.community-box p + p {
    margin-top: 12px;
}

.community-highlight {
    color: var(--text-gold);
    font-weight: 700;
    letter-spacing: 1px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    padding: 16px 18px;
    background:
        linear-gradient(180deg, rgba(201, 153, 58, 0.04), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.02);
}

.faq-list summary {
    cursor: pointer;
    color: var(--text-primary);
    font-weight: 600;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list p {
    margin-top: 12px;
}

.beta-group-info {
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--text-gold);
    letter-spacing: 1px;
}

.beta-group-number {
    font-family: monospace;
    font-weight: 700;
    font-size: 16px;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(201, 153, 58, 0.4);
    user-select: all;
    cursor: text;
}

.global-banner-container {
    width: 100%;
    z-index: 100;
    flex-shrink: 0;
}

.beta-banner-content {
    position: relative;
    text-align: center;
    padding: 6px 36px 6px 16px;
    background: linear-gradient(90deg, rgba(201, 153, 58, 0.12) 0%, rgba(201, 153, 58, 0.2) 50%, rgba(201, 153, 58, 0.12) 100%);
    border-bottom: 1px solid rgba(201, 153, 58, 0.2);
    color: var(--text-gold);
    font-size: 13px;
    letter-spacing: 1px;
    flex-shrink: 0;
    animation: betaBannerGlow 3s ease-in-out infinite;
}

.beta-banner-close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201, 153, 58, 0.15);
    border: 1px solid rgba(201, 153, 58, 0.3);
    color: var(--text-gold);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    padding: 0 8px;
    line-height: 24px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    font-family: var(--font-serif);
}

.beta-banner-close:hover {
    color: #fff;
    background: rgba(201, 153, 58, 0.35);
    border-color: var(--accent-gold);
}

