/* ===== 丝绪子主页样式 ===== */

/* ---------- 基础 ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #A8C4C9;
    --card-bg: #D5E2E6;
    --primary: #89A0A7;
    --secondary: #6a8a90;
    --text: #3a5c62;
    --text-light: #5a7c82;
    --deep: #4a6a70;
    --accent: #E8D5B7;
    --accent2: #C9D8A8;
    --glow: rgba(213, 226, 230, 0.55);
    --glow-warm: rgba(232, 213, 183, 0.4);
}

html, body {
    font-family: 'ZCOOL KuaiLe', 'Ma Shan Zheng', sans-serif;
    background: var(--bg);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* ---------- 4. 多层渐变与光晕 ---------- */
.bg-gradient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(247,250,240,0.28) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 70%, rgba(213,226,230,0.45) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 10%, rgba(247,250,240,0.18) 0%, transparent 55%),
        radial-gradient(ellipse 100% 80% at 50% 50%, rgba(232,213,183,0.12) 0%, transparent 60%);
}

/* ---------- 背景装饰：浮动光球 ---------- */
.bg-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    animation: orbFloat 12s ease-in-out infinite;
    will-change: transform;
}
.orb-1 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(247,250,240,0.5) 0%, transparent 70%);
    top: 5%; left: 5%;
    animation-delay: 0s;
}
.orb-2 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(232,213,183,0.4) 0%, transparent 70%);
    top: 60%; right: 8%;
    animation-delay: -3s;
    animation-duration: 15s;
}
.orb-3 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(201,216,168,0.35) 0%, transparent 70%);
    bottom: 10%; left: 15%;
    animation-delay: -6s;
    animation-duration: 18s;
}
.orb-4 {
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(213,226,230,0.45) 0%, transparent 70%);
    top: 30%; right: 25%;
    animation-delay: -9s;
    animation-duration: 14s;
}
.orb-5 {
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(247,250,240,0.4) 0%, transparent 70%);
    bottom: 30%; right: 5%;
    animation-delay: -5s;
    animation-duration: 16s;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -30px) scale(1.05); }
    50% { transform: translate(-10px, 15px) scale(0.95); }
    75% { transform: translate(15px, 10px) scale(1.02); }
}

/* ---------- 背景装饰：几何线条 ---------- */
.bg-lines {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(247,250,240,0.2), transparent);
    animation: lineDrift 20s linear infinite;
    will-change: transform;
}
.line-1 {
    width: 1px; height: 120%;
    top: -10%; left: 15%;
    animation-delay: 0s;
}
.line-2 {
    width: 1px; height: 100%;
    top: 0; right: 20%;
    animation-delay: -5s;
    animation-duration: 25s;
    opacity: 0.6;
}
.line-3 {
    width: 200px; height: 1px;
    top: 25%; left: -10%;
    animation: lineDriftH 18s linear infinite;
    animation-delay: -3s;
}
.line-4 {
    width: 250px; height: 1px;
    bottom: 30%; right: -10%;
    animation: lineDriftH 22s linear infinite;
    animation-delay: -8s;
    opacity: 0.7;
}
@keyframes lineDrift {
    0% { transform: translateY(-50px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(50px) rotate(0.5deg); opacity: 0; }
}
@keyframes lineDriftH {
    0% { transform: translateX(-50px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(50px) rotate(0.5deg); opacity: 0; }
}

/* ---------- 3. 背景粒子 ---------- */
#bgParticles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ---------- 2. 页面跳转过渡 ---------- */
.transition-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.05s;
}
.transition-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.transition-overlay .ripple {
    position: absolute;
    width: 10vmax;
    height: 10vmax;
    border-radius: 50%;
    background: var(--primary);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.transition-overlay.active .ripple {
    transform: translate(-50%, -50%) scale(40);
}
.transition-overlay .ripple-fade {
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.4s ease 0.5s;
}
.transition-overlay.active .ripple-fade {
    opacity: 1;
}

/* ---------- 主容器 ---------- */
.main-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    max-width: 560px;
    width: 100%;
    min-height: 100vh;
    justify-content: center;
    margin: 0 auto;
}

/* ---------- 桌面端双栏 ---------- */
@media (min-width: 900px) {
    .main-wrap {
        flex-direction: row;
        max-width: min(1400px, 95vw);
        gap: clamp(40px, 4vw, 80px);
        padding: clamp(40px, 4vw, 80px);
    }
    .left-col,
    .right-col {
        display: flex;
        flex-direction: column;
    }
    .left-col {
        justify-content: center;
        align-items: center;
        width: min(750px, 52vw);
    }
    .right-col {
        gap: clamp(20px, 2vw, 36px);
        width: min(650px, 45vw);
        max-width: 650px;
        align-items: flex-start;
        justify-content: center;
    }
    .bot-wrap {
        width: min(680px, 52vw);
        height: min(680px, 52vw);
    }
    .bot-decor {
        inset: -120px -100px -100px -100px;
    }
    /* 桌面端小三角偏左，指向丝绪子 */
    .dialogue-box::before {
        left: 15%;
    }
    .dialogue-box::after {
        left: 15%;
    }
    .dialogue-box {
        padding: clamp(24px, 2vw, 36px) clamp(28px, 2.5vw, 42px);
    }
    .dialogue-text {
        font-size: clamp(16px, 1.6vw, 22px);
    }
    .cursor {
        height: clamp(16px, 1.6vw, 22px);
    }
    .btn {
        font-size: clamp(14px, 1.3vw, 20px);
        padding: clamp(11px, 1vw, 16px) clamp(28px, 2.5vw, 42px);
    }
    .btn-group {
        gap: clamp(14px, 1.5vw, 24px);
    }
    .footer-hint {
        font-size: clamp(13px, 1.2vw, 18px);
    }
    .user-badge {
        font-size: clamp(13px, 1.1vw, 18px);
        padding: clamp(6px, 0.5vw, 10px) clamp(14px, 1.2vw, 22px);
    }
    .btn-logout {
        font-size: clamp(12px, 1vw, 16px);
        padding: clamp(6px, 0.5vw, 10px) clamp(14px, 1.2vw, 22px);
    }
}

/* ---------- 入场动画 ---------- */
.main-wrap .bot-wrap,
.main-wrap .dialogue-wrap,
.main-wrap .btn-group,
.main-wrap .footer-hint,
.main-wrap .user-bar {
    opacity: 0;
    transform: translateY(20px);
}
.main-wrap.loaded .bot-wrap   { animation: fadeInUp 0.7s ease 0.1s forwards; }
.main-wrap.loaded .dialogue-wrap { animation: fadeInUp 0.7s ease 0.35s forwards; }
.main-wrap.loaded .btn-group  { animation: fadeInUp 0.7s ease 0.6s forwards; }
.main-wrap.loaded .footer-hint { animation: fadeInUp 0.7s ease 0.8s forwards; }
.main-wrap.loaded .user-bar   { animation: fadeInUp 0.7s ease 0.95s forwards; }
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- 用户状态栏（右上角） ---------- */
.user-bar {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
}
.user-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: clamp(6px, 0.5vw, 9px) clamp(14px, 1.2vw, 20px);
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.35);
    font-size: clamp(13px, 1.1vw, 17px);
    color: var(--text);
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(58,92,98,0.1);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}
.user-badge:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(58,92,98,0.15);
}
.user-badge .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent2);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}
.btn-logout {
    font-family: inherit;
    font-size: clamp(12px, 1vw, 15px);
    padding: clamp(6px, 0.5vw, 9px) clamp(14px, 1.2vw, 20px);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 1px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 2px 8px rgba(58,92,98,0.08);
}
.btn-logout:hover {
    background: rgba(255,255,255,0.9);
    color: var(--text);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(58,92,98,0.15);
}
.btn-logout:active {
    transform: translateY(0) scale(0.96);
}

/* ---------- 立绘 ---------- */
.bot-wrap {
    position: relative;
    width: 280px;
    height: 280px;
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
    will-change: transform;
}
.bot-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(137, 160, 167, 0.3));
    transition: transform 0.3s ease;
    pointer-events: none;
}

/* 8. 悬停放大 + 加速浮动 */
.bot-wrap:hover {
    animation-duration: 1.2s;
}
.bot-wrap:hover img {
    transform: scale(1.06);
}

/* 8. 点击弹跳 */
.bot-wrap.bouncing {
    animation: bounce 0.55s ease, float 1.2s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes bounce {
    0%  { transform: scale(1) translateY(0); }
    25% { transform: scale(0.88) translateY(6px); }
    45% { transform: scale(1.08) translateY(-14px); }
    65% { transform: scale(0.94) translateY(4px); }
    85% { transform: scale(1.02) translateY(-3px); }
    100%{ transform: scale(1) translateY(0); }
}

/* ---------- 立绘背景装饰（几何风格） ---------- */
.bot-decor {
    position: absolute;
    inset: -45px -35px -35px -35px;
    z-index: -1;
    pointer-events: none;
    overflow: visible;
}

/* 像素棋盘格 */
.bot-decor .checkers {
    position: absolute;
    width: 120px;
    height: 120px;
    top: -15px;
    right: -15px;
    background-color: rgba(247, 250, 240, 0.2);
    background-image:
        linear-gradient(45deg, rgba(137, 160, 167, 0.35) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(137, 160, 167, 0.35) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(137, 160, 167, 0.35) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(137, 160, 167, 0.35) 75%);
    background-size: 18px 18px;
    background-position: 0 0, 0 9px, 9px -9px, -9px 0px;
    border-radius: 2px;
    opacity: 0.75;
    transform: rotate(8deg);
}

/* 条纹圆 */
.bot-decor .striped-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 10px;
    left: -25px;
    border-radius: 50%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 6px,
        rgba(247, 250, 240, 0.35) 6px,
        rgba(247, 250, 240, 0.35) 12px
    );
    opacity: 0.7;
}

/* 矩形框 */
.bot-decor .frame-rect {
    position: absolute;
    border: 2px solid rgba(137, 160, 167, 0.3);
    border-radius: 2px;
    background: rgba(247, 250, 240, 0.06);
}
.bot-decor .frame-1 {
    width: 70px; height: 110px;
    top: 60px; right: -20px;
    transform: rotate(-4deg);
    border-color: rgba(137, 160, 167, 0.28);
}
.bot-decor .frame-2 {
    width: 90px; height: 55px;
    bottom: 10px; left: -10px;
    border-color: rgba(137, 160, 167, 0.22);
    transform: rotate(3deg);
}
.bot-decor .frame-3 {
    width: 40px; height: 65px;
    top: 20px; left: 20px;
    border-color: rgba(137, 160, 167, 0.18);
}

/* 色块 */
.bot-decor .block {
    position: absolute;
    border-radius: 2px;
}
.bot-decor .block-1 {
    width: 85px; height: 45px;
    bottom: 40px; left: -50px;
    background: rgba(137, 160, 167, 0.22);
    transform: rotate(-3deg);
}
.bot-decor .block-2 {
    width: 60px; height: 60px;
    top: 85px; right: 0px;
    background: rgba(213, 226, 230, 0.3);
    transform: rotate(8deg);
}

/* 对角线 */
.bot-decor .diag-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(137, 160, 167, 0.3), transparent);
}
.bot-decor .diag-1 {
    width: 200px;
    top: -5px; left: -15px;
    transform: rotate(-35deg);
}
.bot-decor .diag-2 {
    width: 180px;
    bottom: 5px; right: -5px;
    transform: rotate(25deg);
}

/* 散落像素点 */
.bot-decor .pixel {
    position: absolute;
    background: rgba(137, 160, 167, 0.4);
    border-radius: 1px;
}
.bot-decor .p1 { width: 10px; height: 10px; top: 10px; right: 30px; }
.bot-decor .p2 { width: 7px; height: 7px; top: 50px; right: -5px; }
.bot-decor .p3 { width: 12px; height: 12px; bottom: 70px; left: -5px; }
.bot-decor .p4 { width: 8px; height: 8px; bottom: 30px; right: 45px; }
.bot-decor .p5 { width: 9px; height: 9px; top: 110px; left: -10px; }

/* 小鸟剪影 */
.bot-decor .bird {
    position: absolute;
    width: 30px; height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 16'%3E%3Cpath d='M0 10c4-3 7-7 11-9 3 2 6 4 9 3 3-1 6-4 10-3-3 3-6 7-10 8-4 1-7-2-11-1-3 0-5 1-9 2z' fill='%23d5e2e6'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    opacity: 0.5;
}
.bot-decor .bird-1 { top: 15px; left: -45px; transform: rotate(-5deg); }
.bot-decor .bird-2 { top: -5px; right: -40px; transform: scaleX(-1) rotate(5deg); opacity: 0.35; }
.bot-decor .bird-3 { bottom: 80px; right: -30px; transform: rotate(3deg); opacity: 0.4; }

/* ---------- 对话框 ---------- */
.dialogue-wrap {
    position: relative;
    width: 100%;
}
.dialogue-box {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 24px 28px;
    min-height: 80px;
    position: relative;
    box-shadow:
        0 4px 20px rgba(58, 92, 98, 0.12),
        0 1px 3px rgba(58, 92, 98, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.4);
    border: 2px solid var(--primary);
    /* 5. 纸张纹理 */
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"),
        linear-gradient(180deg, rgba(255,255,255,0.25) 0%, transparent 40%);
    background-blend-mode: overlay, normal;
}

/* 猫耳小三角 */
.dialogue-box::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 14px solid var(--primary);
}
.dialogue-box::after {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid var(--card-bg);
}
.dialogue-text {
    font-size: clamp(16px, 1.6vw, 20px);
    color: var(--text);
    line-height: 1.8;
    min-height: 32px;
    letter-spacing: 1px;
}
.cursor {
    display: inline-block;
    width: 2px;
    height: clamp(16px, 1.6vw, 20px);
    background: var(--secondary);
    margin-left: 2px;
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ---------- 按钮区 ---------- */
.btn-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
    width: 100%;
}
.btn {
    font-family: inherit;
    font-size: clamp(14px, 1.3vw, 18px);
    padding: clamp(11px, 1vw, 15px) clamp(28px, 2.5vw, 40px);
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(58, 92, 98, 0.25);
}
.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(58, 92, 98, 0.35);
}
.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}
.btn-secondary:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(58, 92, 98, 0.25);
}
.btn-danger {
    background: transparent;
    color: #b09090;
    border: 2px solid rgba(176,144,144,0.35);
}
.btn-danger:hover {
    background: rgba(176,144,144,0.15);
    color: #9a7a7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(176,144,144,0.2);
}
.btn:active {
    transform: translateY(0) scale(0.96);
}
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* 6. 水波纹反馈 */
.btn .ripple-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    transform: scale(0);
    animation: ripple-anim 0.55s ease-out;
    pointer-events: none;
}
@keyframes ripple-anim {
    to { transform: scale(4); opacity: 0; }
}

.footer-hint {
    margin-top: 10px;
    font-size: clamp(13px, 1.2vw, 17px);
    color: var(--text-light);
    opacity: 0.7;
    letter-spacing: 1px;
}

/* ---------- 响应式 ---------- */
@media (max-width: 480px) {
    .bot-wrap { width: 220px; height: 220px; }
    .dialogue-text { font-size: clamp(14px, 4vw, 16px); }
    .btn { padding: clamp(9px, 3vw, 10px) clamp(20px, 6vw, 22px); font-size: clamp(13px, 3.5vw, 14px); }
    .user-bar { top: 10px; right: 10px; }
    .user-badge { font-size: clamp(11px, 3vw, 12px); padding: 5px 10px; }
    .btn-logout { font-size: clamp(10px, 2.8vw, 11px); padding: 5px 10px; }
    .orb { filter: blur(40px); opacity: 0.35; }
    .footer-hint { font-size: clamp(11px, 3vw, 13px); }
}

/* ---------- 登录弹窗 ---------- */
.login-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(58, 92, 98, 0.35);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.login-modal.active {
    opacity: 1;
    pointer-events: all;
}
.login-box {
    width: clamp(320px, 30vw, 420px);
    max-width: 90vw;
    padding: 28px 24px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 2px solid var(--primary);
    box-shadow: 0 8px 32px rgba(58, 92, 98, 0.2);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
}
.login-modal.active .login-box {
    transform: translateY(0) scale(1);
}
.login-title {
    font-size: clamp(18px, 1.6vw, 24px);
    color: var(--text);
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 4px;
}
.login-input {
    font-family: inherit;
    font-size: clamp(15px, 1.3vw, 20px);
    padding: 10px 14px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    background: rgba(255,255,255,0.5);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.login-input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(106, 138, 144, 0.15);
}
.login-input::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}
.login-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 4px;
}
.login-actions .btn {
    flex: 1;
    padding: 10px 0;
    font-size: clamp(14px, 1.2vw, 18px);
}
.login-error {
    font-size: clamp(12px, 1vw, 16px);
    color: #b07070;
    text-align: center;
    min-height: 18px;
    letter-spacing: 1px;
}
