/* ============ 全局 ============ */
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: 黑体, "Microsoft YaHei", sans-serif;
    color: #333;
}
/* 标题专用：站酷快乐体，失败回退楷体 */
.font-title, .hero-title, .last_page_one, .nav-logo span {
    font-family: "ZCOOL KuaiLe", "楷体", "KaiTi", 黑体, sans-serif;
}

/*网站背景*/
.bg { position: fixed; inset: 0; overflow: hidden; z-index: -1; }
.blob { position: absolute; border-radius: 50%; filter: blur(120px); }
.blob-pink { width: 60vw; height: 60vw; background: #fae9e7; top: -20%; left: -10%; }
.blob-peach { width: 50vw; height: 50vw; background: #fbf0e4; top: -10%; right: -15%; }

/* ============ 顶部导航 ============ */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
}
.nav-logo img { width: 36px; height: 36px; object-fit: contain; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
    text-decoration: none;
    color: #666;
    font-size: 15px;
    padding: 6px 2px;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
}
.nav-links a:hover { color: #fd7161; }
.nav-links a.active { color: #fd7161; font-weight: bold; border-color: #fd7161; }

/* 导航搜索框 */
.nav-search {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f6f0e9;
    border-radius: 50px;
    padding: 4px 6px 4px 16px;
    transition: box-shadow .2s;
}
.nav-search:focus-within { box-shadow: 0 0 0 3px rgba(253, 197, 63, .45); }
.nav-search input {
    border: none;
    outline: none;
    background: transparent;
    width: 170px;
    font-size: 13px;
    font-family: inherit;
    color: #555;
}
.nav-search input::placeholder { color: #b3a89a; }
.nav-search button {
    border: none;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 13px;
    color: #fff;
    background: linear-gradient(to right, #fd7161, #fdc33f);
}
.nav-user { margin-left: 20px; }
.nav-user img {
    width: 38px; height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fdc33f;
    cursor: pointer;
}

/* ============ Hero 区（居中排版，参考图三） ============ */
.hero-wrap {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    padding: 70px 24px 60px;
}
.hero {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}
.hero-slogan {
    display: inline-block;
    background: linear-gradient(to right, #fd7161, #fdc33f);
    color: #fff;
    font-size: 14px;
    padding: 6px 16px;
    border-radius: 50px;
    margin: 0 0 16px;
}
/* 标题两侧 + 下方装饰 */
.hero-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 0 0 4px;
}
.orn { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.orn::before { content: ""; width: 64px; height: 2px; border-radius: 2px; }
.side-l::before { background: linear-gradient(to left, #fd7161, transparent); }
.side-r::before { background: linear-gradient(to right, #fd7161, transparent); }
.orn-emoji { font-size: 22px; font-style: normal; }
.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fd7161;
    font-size: 12px;
    margin: 0 0 14px;
}
.title-divider span {
    width: 120px;
    height: 1.5px;
    background: linear-gradient(to right, transparent, #fdc33f);
}
.title-divider span:last-child {
    background: linear-gradient(to left, transparent, #fdc33f);
}

.hero-title {
    font-size: 48px;
    line-height: 1.35;
    letter-spacing: 4px;
    margin: 0 0 10px;
    background: linear-gradient(to right, #fd7161, #fdc33f, #fd7161);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: flow 2.5s linear infinite;
    filter: drop-shadow(0 3px 6px rgba(253, 113, 97, .25));
}
.hero-sub { color: dimgray; font-size: 15px; margin: 0 0 24px; }

/* 吉祥物：无盒子，裸图 + 轻微上下漂浮 */
.hero-mascot {
    width: 300px;
    max-width: 70vw;
    margin-bottom: 30px;
    animation: floaty 3.5s ease-in-out infinite;
}
@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}
.hero-btn {
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    padding: 12px 32px;
    border-radius: 50px;
    background: linear-gradient(to right, #fd7161, #fdc33f);
    box-shadow: 0 4px 15px rgba(253, 113, 97, .4);
    transition: transform .2s, box-shadow .2s;
}
.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(253, 113, 97, .5);
}

/* 左右悬浮卡片：竖长方形，垂直居中于 Hero 区 */
.side-left, .side-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    min-height: 380px;
    padding: 24px 16px 20px;
    border-radius: 22px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: glow 3s ease-in-out infinite;
}
.side-left { left: 24px; }
.side-right { right: 24px; }
.side-left img, .side-right img { width: 92px; height: 92px; object-fit: contain; }
.side-title {
    font-size: 17px;
    font-weight: bold;
    color: #444;
    letter-spacing: 1px;
}
.side-sub { font-size: 13px; color: #999; }
.side-sub b { color: #fd7161; }

/* ---- 打卡按钮 ---- */
.checkin-btn {
    margin-top: auto;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    padding: 10px 22px;
    border-radius: 50px;
    background: linear-gradient(to right, #fd7161, #fdc33f);
    box-shadow: 0 4px 12px rgba(253, 113, 97, .35);
    transition: transform .2s, box-shadow .2s, opacity .2s;
}
.checkin-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(253, 113, 97, .5);
}
.checkin-btn:disabled {
    cursor: default;
    background: #e8e2da;
    color: #b3a89a;
    box-shadow: none;
}
/* 今日运势按钮：集满后呼吸发光提示可抽签 */
#fortuneBtn.ready {
    animation: btnPulse 2s ease-in-out infinite;
}
@keyframes btnPulse {
    0%, 100% { box-shadow: 0 4px 12px rgba(253, 113, 97, .35); }
    50%      { box-shadow: 0 4px 22px rgba(253, 113, 97, .75); }
}

/* ---- 道历 + 今日宜忌 ---- */
.zm-date { font-size: 13px; color: #666; margin-top: 4px; }
.zm-ganzhi { font-size: 12px; color: #999; }
.yiji {
    width: 100%;
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
}
.yiji-row {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px 10px;
    border-radius: 12px;
    background: #faf5ef;
    border: 1px solid #f3e8db;
    transition: transform .2s;
}
.yiji-row:hover { transform: translateX(3px); }
.yiji-label {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 12px;
}
.yiji-yi .yiji-label {
    color: #4e8a63;
    background: #eaf4ee;
    border: 1.5px solid #bcd9c6;
}
.yiji-ji .yiji-label {
    color: #d9534f;
    background: #fdeeea;
    border: 1.5px solid #f5cdc9;
}
.yiji-items { color: #5d564d; line-height: 1.5; }

/* ---- 电子木鱼：吉祥物盘坐敲木鱼场景 ---- */
.muyu-zone {
    width: 100%;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.muyu-scene {
    position: relative;
    width: 160px;
    aspect-ratio: 1;
    cursor: pointer;
    user-select: none;
    -webkit-user-drag: none;
}
.muyu-count { font-size: 12px; color: #999; }
.muyu-count b { color: #fd7161; }

/* 两帧图：静置为默认层，敲击帧在 knock 时切换显示 */
.muyu-scene .frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}
.muyu-scene .hit { opacity: 0; }

/* 帧切换由 JS 的 .striking 精确控制（70~140ms 闪现），与压扁动画解耦 */
.muyu-scene.striking .hit   { opacity: 1; }
.muyu-scene.striking .idle  { opacity: 0; }
.muyu-scene.knock {
    animation: sceneSquash var(--kd, .28s) ease-out;
}
@keyframes sceneSquash {
    0%   { transform: scale(1, 1); }
    45%  { transform: scale(1.06, .92); }
    100% { transform: scale(1, 1); }
}

/* 敲击涟漪（木鱼在画面下方，约 80% 高度处） */
.muyu-scene .ripple2 {
    position: absolute;
    left: 50%;
    top: 80%;
    width: 36px;
    height: 36px;
    margin: -18px 0 0 -18px;
    border: 4px solid #fd7161;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}
.muyu-scene.knock .ripple2 {
    animation: rippleOut var(--kd, .28s) ease-out;
}
@keyframes rippleOut {
    0%   { opacity: .9; transform: scale(.4); }
    100% { opacity: 0;  transform: scale(2.4); }
}

/* 飘字：木鱼中部生成，随机向左/右漂着上升 */
.muyu-float {
    position: absolute;
    left: 50%;
    top: 68%;
    z-index: 5;
    pointer-events: none;
    white-space: nowrap;
    color: #fd7161;
    font-size: 14px;
    font-weight: bold;
    font-family: "ZCOOL KuaiLe", "楷体", 黑体, sans-serif;
    animation: muyuFloat 1s ease-out forwards;
}
@keyframes muyuFloat {
    0%   { opacity: 0; transform: translate(-50%, 0) scale(.7); }
    15%  { opacity: 1; }
    100% { opacity: 0; transform: translate(calc(-50% + var(--dx)), -95px) scale(1.05); }
}

/* ---- 木鱼连击（连击数并入「修为 +1」飘字，纯视觉不加数值） ---- */
/* 档位：10 / 30 / 60，颜色字号随连击升级 */
.muyu-float.t2 { color: #b06a3a; font-size: 15px; }
.muyu-float.t3 { color: #e09a2f; font-size: 17px; text-shadow: 0 0 8px rgba(253, 195, 63, .55); }
.muyu-float.t4 {
    font-size: 19px;
    background: linear-gradient(to right, #fd7161, #fdc33f, #fd7161);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    filter: drop-shadow(0 0 6px rgba(253, 195, 63, .7));
}

/* 高连击光环：木鱼外圈呼吸金环 */
.combo-ring {
    position: absolute; inset: -10px;
    border: 2.5px solid rgba(253, 195, 63, .8);
    border-radius: 50%;
    opacity: 0; pointer-events: none;
    transition: opacity .35s;
}
.combo-ring.on { opacity: 1; animation: comboRing 1.6s ease-in-out infinite; }
@keyframes comboRing {
    0%, 100% { transform: scale(.94); box-shadow: 0 0 0 0 rgba(253, 195, 63, 0); }
    50%      { transform: scale(1.04); box-shadow: 0 0 22px 4px rgba(253, 195, 63, .35); }
}

/* 连击夸词（里程碑飘字） */
.float-text.combo-word {
    color: #e09a2f; font-size: 21px; letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(253, 195, 63, .6);
}

/* ---- 气运鱼 ---- */
.lucky-fish {
    position: absolute;
    z-index: 60;
    cursor: pointer;
    user-select: none;
    -webkit-user-drag: none;
    filter: drop-shadow(0 3px 6px rgba(253, 113, 97, .35));
    animation: fishWiggle 1.6s ease-in-out infinite, fishBob 2.8s ease-in-out infinite;
    transition: transform .15s;
}
.lucky-fish:hover { transform: scale(1.2); }
@keyframes fishWiggle {
    0%, 100% { rotate: -14deg; }
    50%      { rotate: 14deg; }
}
@keyframes fishBob {
    0%, 100% { translate: 0 0; }
    50%      { translate: 0 -8px; }
}

/* ============ 摸鱼时间仪表盘 ============ */
.dashboard {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 18px 28px;
    background: #fdf6f0;
    border: 1px solid #f6e3d7;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}
.dash-sep {
    width: 1px;
    height: 40px;
    background: #f0dccb;
    flex-shrink: 0;
}
.dash-date { display: flex; align-items: center; gap: 14px; }
.dash-cal {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fd7161, #fdc33f);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(253, 113, 97, .35);
}
.dash-cal::before, .dash-cal::after {
    content: "";
    position: absolute;
    top: -5px;
    width: 5px;
    height: 12px;
    border-radius: 3px;
    background: #d95f4e;
}
.dash-cal::before { left: 12px; }
.dash-cal::after { right: 12px; }
.dash-cal span {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    font-family: "ZCOOL KuaiLe", "楷体", 黑体, sans-serif;
    margin-top: 4px;
}
.dash-md { margin: 0; font-size: 17px; font-weight: bold; color: #4a3a28; }
.dash-week {
    display: inline-block;
    margin-top: 4px;
    font-size: 12px;
    color: #fff;
    background: #f0a12f;
    padding: 2px 12px;
    border-radius: 50px;
}

.dash-item { text-align: center; }
.dash-label { margin: 0 0 2px; font-size: 12px; color: #b39a82; letter-spacing: 1px; }
.dash-num { margin: 0; font-size: 14px; color: #8a7a66; }
.dash-num b, .dash-label b {
    color: #fd7161;
    font-size: 20px;
    font-family: "ZCOOL KuaiLe", "楷体", 黑体, sans-serif;
}

.dash-progress { flex: 1; min-width: 180px; }
.dash-bar {
    height: 10px;
    background: #f4e2d4;
    border-radius: 50px;
    overflow: hidden;
    margin-top: 6px;
}
.dash-bar i {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 50px;
    background: linear-gradient(to right, #fd7161, #fdc33f);
    transition: width 1s ease-out;
}

.dash-holidays { display: flex; gap: 12px; }
.dash-holiday {
    background: #fff;
    border: 1px solid #f6e3d7;
    border-radius: 12px;
    padding: 8px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.dash-h-name { font-size: 13px; font-weight: bold; color: #4a3a28; }
.dash-h-days { font-size: 11px; color: #b39a82; }
.dash-h-days b {
    color: #fd7161;
    font-size: 15px;
    font-family: "ZCOOL KuaiLe", "楷体", 黑体, sans-serif;
}

@media (max-width: 900px) {
    .dashboard { gap: 16px; padding: 16px 18px; }
    .dash-sep { display: none; }
    .dash-progress { flex: 1 1 100%; order: 9; }
    .dash-holidays { flex: 1 1 100%; order: 10; justify-content: center; }
}

/* ============ 修仙台：修为系统 ============ */
.xiuwei {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
}
.section-head { text-align: center; margin-bottom: 8px; }
.section-head .title-divider { margin: 0 0 12px; }
.section-title {
    margin: 0 0 12px;
    font-size: 36px;
    letter-spacing: 5px;
    background: linear-gradient(to right, #fd7161, #fdc33f, #fd7161);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: flow 2.5s linear infinite;
    font-family: "ZCOOL KuaiLe", "楷体", 黑体, sans-serif;
    filter: drop-shadow(0 2px 4px rgba(253, 113, 97, .2));
}
/* 朱红印章 */
.section-title .seal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: 14px;
    background: linear-gradient(145deg, #c0392b, #96281b);
    color: #ffe7c2;
    font-size: 17px;
    letter-spacing: 0;
    border-radius: 7px;
    border: 1px solid rgba(255, 231, 194, .55);
    box-shadow: 0 3px 8px rgba(150, 40, 27, .35);
    transform: rotate(8deg) translateY(-3px);
    vertical-align: middle;
    -webkit-text-fill-color: #ffe7c2;
}
/* 副标题：书签胶囊 */
.section-sub {
    display: inline-block;
    margin: 0 0 30px;
    padding: 8px 26px;
    font-size: 13px;
    color: #a4703a;
    letter-spacing: 2px;
    background: linear-gradient(to right, #fdf1e3, #fdecd9);
    border: 1px solid #f3ddc2;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(224, 154, 47, .12);
}
.xw-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.25fr 1fr;
    gap: 24px;
}
.xw-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px 22px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
}
.xw-card h4 {
    margin: 0 0 14px;
    font-size: 15px;
    color: #4a3a28;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.xw-card h4::before {
    content: "";
    width: 4px;
    height: 16px;
    border-radius: 2px;
    background: linear-gradient(to bottom, #fd7161, #fdc33f);
}

/* 境界环形进度 */
.xw-realm { text-align: center; }
.xw-ring-wrap {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 4px auto 14px;
}
.xw-ring-wrap svg { width: 100%; height: 100%; }
.ring-bg, .ring-fill {
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
}
.ring-bg { stroke: #f6e8da; }
.ring-fill {
    stroke: #fd7161;
    stroke-dasharray: 326.7;
    stroke-dashoffset: 326.7;
    transform: rotate(-90deg);
    transform-origin: 60px 60px;
    transition: stroke-dashoffset .8s ease-out;
}
.ring-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}
.xw-realm-name {
    margin: 0;
    font-size: 20px;
    color: #4a3a28;
    font-family: "ZCOOL KuaiLe", "楷体", 黑体, sans-serif;
    letter-spacing: 2px;
}
.xw-percent { margin: 0; font-size: 12px; color: #b39a82; }
.xw-total { margin: 0 0 4px; font-size: 13px; color: #8a7a66; }
.xw-total b {
    color: #fd7161;
    font-size: 18px;
    font-family: "ZCOOL KuaiLe", "楷体", 黑体, sans-serif;
}
.xw-next { margin: 0 0 14px; font-size: 12px; color: #b3a89a; }
.xw-btn {
    border: none;
    cursor: pointer;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    padding: 10px 30px;
    border-radius: 50px;
    background: linear-gradient(to right, #fd7161, #fdc33f);
    box-shadow: 0 4px 12px rgba(253, 113, 97, .35);
    transition: transform .2s, box-shadow .2s, opacity .2s;
}
.xw-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(253, 113, 97, .5);
}
.xw-btn:disabled {
    cursor: default;
    background: #e8e2da;
    color: #b3a89a;
    box-shadow: none;
}

/* 任务列表 */
.task-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 4px;
    border-bottom: 1px dashed #f0e4d8;
}
.task-row:last-child { border-bottom: none; }
.task-name { flex: 1; font-size: 13px; color: #5d564d; }
.task-reward {
    font-size: 12px;
    color: #e09a2f;
    background: #fdf3d7;
    padding: 2px 8px;
    border-radius: 50px;
    flex-shrink: 0;
}
.task-btn {
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    background: linear-gradient(to right, #fd7161, #fdc33f);
    flex-shrink: 0;
    transition: opacity .2s;
}
.task-btn:disabled { cursor: default; }
.task-btn.t-wait { background: #f0e4d8; color: #b3a89a; }
.task-btn.t-done { background: #6ccb8f; }

/* 修为榜 */
.rank-list { display: flex; flex-direction: column; gap: 4px; }
.rank-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border-radius: 10px;
    font-size: 13px;
    color: #5d564d;
}
.rank-row.me {
    background: linear-gradient(to right, #fff1e8, #fdf3d7);
    border: 1px solid #f5cfa8;
    font-weight: bold;
    color: #c05a24;
}
.rank-no {
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    background: #f6ede2;
    color: #b39a82;
    font-size: 12px;
    flex-shrink: 0;
}
.rank-row:nth-child(1) .rank-no { background: linear-gradient(to right, #f5a623, #f7c94b); color: #fff; }
.rank-row:nth-child(2) .rank-no { background: linear-gradient(to right, #c3b8a8, #d9d0c2); color: #fff; }
.rank-row:nth-child(3) .rank-no { background: linear-gradient(to right, #d99a6c, #e0b08a); color: #fff; }
.rank-name { flex: 1; }
.rank-val { color: #fd7161; font-weight: bold; }

@media (max-width: 1000px) {
    .xw-grid { grid-template-columns: 1fr 1fr; }
    .xw-rank { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
    .xw-grid { grid-template-columns: 1fr; }
}

/* ---- 导航栏成就入口 ---- */
.nav-achv {
    position: relative;
    border: 1.5px solid #f0d9ad;
    background: linear-gradient(145deg, #ffe9c4, #f7cf8d);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    margin-left: 18px;
    transition: transform .2s, box-shadow .2s;
}
.nav-achv:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(224, 154, 47, .4);
}
.achv-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff4d4f;
    box-shadow: 0 0 0 2px #fff;
}

/* ---- 成就面板列表 ---- */
.achv-list {
    text-align: left;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 46vh;
    overflow-y: auto;
}
.achv-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #faf5ef;
    border: 1px solid #f0e4d8;
}
.achv-row.got {
    background: linear-gradient(to right, #fff6ec, #fdf0dd);
    border-color: #f5dcbc;
}
.achv-icon {
    font-style: normal;
    font-size: 20px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #f0e4d8;
    border-radius: 10px;
    flex-shrink: 0;
}
.achv-row:not(.got) .achv-icon { filter: grayscale(1); opacity: .55; }
.achv-info { flex: 1; min-width: 0; }
.achv-info b { display: block; font-size: 14px; color: #4a3a28; }
.achv-row:not(.got) .achv-info b { color: #b3a89a; }
.achv-info span { display: block; font-size: 11px; color: #a89a86; line-height: 1.5; margin-top: 2px; }
.achv-state { font-style: normal; font-size: 11px; color: #6ccb8f; flex-shrink: 0; }
.achv-state.lock { color: #c9bba7; }
.achv-prog { font-style: normal; font-size: 13px; font-weight: bold; color: #e09a2f; flex-shrink: 0; }

/* ---- 邪修状态 ---- */
.muyu-scene.evil {
    filter: grayscale(.65) hue-rotate(200deg) brightness(.9);
}
.muyu-scene.evil .frame { filter: drop-shadow(0 0 10px rgba(126, 75, 189, .6)); }
.float-text.evil {
    color: #7e4bbd;
    font-size: 13px;
}
.modal-title.evil-title { color: #7e4bbd; }

/* ============ 三栏内容区 ============ */
.content {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
    display: flex;
    gap: 24px;
}
.card {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
    transition: transform .25s, box-shadow .25s;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(253, 113, 97, .15);
}
.card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}
.card h3 { margin: 12px 0 8px; font-size: 18px; }
.card p { margin: 0; font-size: 14px; color: #888; line-height: 1.6; }

/* ============ 页尾：暖夜背景 + 星光月亮 ============ */
.last_page {
    position: relative;
    width: 100%;
    padding: 56px 0 0;
    margin-top: 120px;
    overflow: hidden;
    background: url('assets/页尾背景图.webp') center bottom / cover no-repeat,
                linear-gradient(180deg, #0c1230 0%, #1a2450 40%, #2e2216 72%, #46300f 100%);
    border-radius: 32px 32px 0 0;
}
/* 轻遮罩：压暗保证文字可读，不吞暖光 */
.last_page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 12, 36, .35) 0%, rgba(16, 11, 6, .45) 45%, rgba(22, 14, 6, .62) 100%);
    pointer-events: none;
}
.footer-sky { position: absolute; inset: 0; pointer-events: none; }
.footer-sky i {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #ffedc2;
    animation: starTwinkle 3s ease-in-out infinite;
}
.footer-sky i:nth-child(1)  { left: 8%;  top: 22%; animation-delay: 0s; }
.footer-sky i:nth-child(2)  { left: 18%; top: 55%; animation-delay: .8s; width: 2px; height: 2px; }
.footer-sky i:nth-child(3)  { left: 26%; top: 14%; animation-delay: 1.6s; }
.footer-sky i:nth-child(4)  { left: 37%; top: 40%; animation-delay: .4s; width: 2px; height: 2px; }
.footer-sky i:nth-child(5)  { left: 46%; top: 68%; animation-delay: 2.2s; }
.footer-sky i:nth-child(6)  { left: 55%; top: 18%; animation-delay: 1.1s; width: 4px; height: 4px; }
.footer-sky i:nth-child(7)  { left: 64%; top: 50%; animation-delay: .2s; width: 2px; height: 2px; }
.footer-sky i:nth-child(8)  { left: 72%; top: 30%; animation-delay: 1.9s; }
.footer-sky i:nth-child(9)  { left: 80%; top: 60%; animation-delay: .6s; width: 2px; height: 2px; }
.footer-sky i:nth-child(10) { left: 88%; top: 15%; animation-delay: 2.6s; }
.footer-sky i:nth-child(11) { left: 93%; top: 45%; animation-delay: 1.3s; width: 2px; height: 2px; }
.footer-sky i:nth-child(12) { left: 12%; top: 75%; animation-delay: 2.9s; }
@keyframes starTwinkle {
    0%, 100% { opacity: .25; }
    50%      { opacity: 1; }
}
.footer-moon {
    position: absolute;
    right: 7%;
    top: 14%;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 32%,
        #fff8e6 0%, #ffe9bd 34%, #f7cf8f 58%,
        rgba(247, 207, 143, 0) 73%);
    box-shadow:
        0 0 22px 6px rgba(255, 222, 165, .5),
        0 0 90px 34px rgba(255, 200, 130, .16);
    animation: moonBreath 7s ease-in-out infinite;
}
.footer-moon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 62% 42%, rgba(205, 160, 100, .5) 0 13%, transparent 15%),
        radial-gradient(circle at 44% 68%, rgba(205, 160, 100, .38) 0 9%, transparent 11%),
        radial-gradient(circle at 70% 66%, rgba(205, 160, 100, .3) 0 6%, transparent 8%);
}
@keyframes moonBreath {
    0%, 100% { box-shadow: 0 0 22px 6px rgba(255,222,165,.5), 0 0 90px 34px rgba(255,200,130,.16); }
    50%      { box-shadow: 0 0 30px 10px rgba(255,222,165,.62), 0 0 100px 40px rgba(255,200,130,.22); }
}

/* ---- 随喜功德（打赏） ---- */
.f-donate {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(24, 16, 8, .55);
    border: 1px solid rgba(255, 217, 160, .2);
    width: fit-content;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.f-donate:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 217, 160, .45);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
}
.donate-qr {
    position: relative;
    width: 84px;
    height: 84px;
    border-radius: 10px;
    border: 1.5px dashed rgba(255, 217, 160, .45);
    background: rgba(255, 240, 214, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.donate-qr img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.donate-qr .qr-holder { font-size: 30px; opacity: .8; }
.donate-qr .qr-tip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 8.5px;
    line-height: 1.6;
    color: #c4ad86;
    background: rgba(20, 13, 6, .8);
    text-align: center;
}
.donate-qr img ~ .qr-holder,
.donate-qr img ~ .qr-tip { display: none; }
.donate-text b {
    display: block;
    font-size: 14px;
    color: #ffcf7d;
    letter-spacing: 2px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .65);
    margin-bottom: 3px;
}
.donate-text span {
    display: block;
    font-size: 11px;
    color: #c4ad86;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .55);
}

/* ============ 天道公告牌 + 三列 + 底条 + 互动 ============ */
.plaque {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 24px;
    display: flex;
    align-items: stretch;
    gap: 14px;
}
.plaque-tag {
    writing-mode: vertical-rl;
    text-align: center;
    background: linear-gradient(180deg, #9c3223, #7c2418);
    color: #ffe7c2;
    font-family: "ZCOOL KuaiLe", "楷体", 黑体, sans-serif;
    font-size: 15px;
    letter-spacing: 6px;
    padding: 10px 7px;
    border-radius: 8px;
    border: 1px solid #c86a4f;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .35);
    flex-shrink: 0;
}
.plaque .notice-bar {
    flex: 1;
    height: auto;
    min-height: 46px;
    background: rgba(24, 16, 8, .66);
    border: 1px solid rgba(255, 217, 160, .32);
    border-radius: 10px;
    overflow: hidden;
    margin: 0;
    width: auto;
}

.footer-grid {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 32px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
}
.f-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #fff0d2;
    text-shadow: 0 2px 6px rgba(0,0,0,.7);
    font-family: "ZCOOL KuaiLe", "楷体", 黑体, sans-serif;
    letter-spacing: 2px;
}
.f-logo img { width: 38px; height: 38px; object-fit: contain; }
.f-slogan { margin: 12px 0 6px; font-size: 13px; color: #cbb894; text-shadow: 0 1px 3px rgba(0,0,0,.65); }
.f-spell {
    margin: 0;
    font-size: 13px;
    color: #bda67c;
    cursor: pointer;
    transition: color .25s, text-shadow .25s;
    user-select: none;
}
.f-spell:hover {
    color: #ffd9a0;
    text-shadow: 0 0 12px rgba(255, 200, 130, .6);
}
.f-col h4 {
    margin: 4px 0 14px;
    font-size: 14px;
    color: #ffcf7d;
    text-shadow: 0 1px 3px rgba(0,0,0,.65);
    letter-spacing: 2px;
    font-weight: bold;
}
/* 导航链接：图标 + 悬停滑块 */
.f-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ecdcba;
    font-size: 13px;
    line-height: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .65);
    padding: 9px 12px;
    margin: 2px 0;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: background .2s, color .2s, transform .2s, border-color .2s;
    width: fit-content;
}
.f-nav i { font-style: normal; font-size: 15px; filter: grayscale(.25); transition: filter .2s, transform .2s; }
.f-nav:hover {
    background: rgba(255, 217, 160, .1);
    border-color: rgba(255, 217, 160, .22);
    color: #ffd9a0;
    transform: translateX(4px);
}
.f-nav:hover i { filter: none; transform: scale(1.15); }

/* 联系卡片：图标块 + 双行文字 */
.f-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 9px 12px;
    margin-bottom: 9px;
    border-radius: 12px;
    background: rgba(24, 16, 8, .66);
    border: 1px solid rgba(255, 217, 160, .22);
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .2s;
}
.f-contact:hover {
    background: rgba(255, 217, 160, .1);
    border-color: rgba(255, 217, 160, .42);
    transform: translateY(-2px);
}
.f-contact i {
    font-style: normal;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    background: rgba(255, 217, 160, .12);
    border: 1px solid rgba(255, 217, 160, .2);
    border-radius: 10px;
    flex-shrink: 0;
    transition: background .2s, transform .2s;
}
.f-contact:hover i { background: rgba(255, 217, 160, .22); transform: scale(1.08); }
.f-contact span { line-height: 1.3; }
.f-contact b { display: block; font-size: 13px; color: #ffe9c2; letter-spacing: 1px; text-shadow: 0 1px 3px rgba(0,0,0,.6); }
.f-contact em { display: block; font-style: normal; font-size: 11px; color: #c4ad86; margin-top: 2px; text-shadow: 0 1px 2px rgba(0,0,0,.55); }

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 217, 160, .2);
    background: rgba(20, 13, 6, .74);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom p { margin: 0; font-size: 12px; color: #c9b58e; letter-spacing: 1px; text-shadow: 0 1px 2px rgba(0,0,0,.6); }
.sword-top {
    border: 1px solid rgba(240, 201, 135, .45);
    background: transparent;
    color: #f0c987;
    font-family: inherit;
    font-size: 13px;
    padding: 7px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: background .25s, color .25s, box-shadow .25s;
}
.sword-top:hover {
    background: rgba(240, 201, 135, .14);
    box-shadow: 0 0 16px rgba(255, 200, 130, .35);
}

/* ---- 咒语输入框 ---- */
.spell-input {
    display: block;
    width: 80%;
    margin: 6px auto 12px;
    padding: 10px 16px;
    font-size: 15px;
    font-family: inherit;
    text-align: center;
    letter-spacing: 2px;
    border: 1.5px solid #f0dccb;
    border-radius: 50px;
    outline: none;
    background: #fdf6f0;
    color: #4a3a28;
    transition: border-color .2s, box-shadow .2s;
}
.spell-input:focus {
    border-color: #fd7161;
    box-shadow: 0 0 0 3px rgba(253, 197, 63, .35);
}
.spell-input.shake { animation: spellShake .35s; }
@keyframes spellShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-7px); }
    75% { transform: translateX(7px); }
}
.spell-btn {
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    letter-spacing: 3px;
    padding: 9px 34px;
    border-radius: 50px;
    background: linear-gradient(to right, #fd7161, #fdc33f);
    box-shadow: 0 4px 12px rgba(253, 113, 97, .35);
    transition: transform .2s;
}
.spell-btn:hover { transform: translateY(-2px); }

/* ---- 孔明灯 ---- */
.lanterns { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.lantern {
    position: absolute;
    bottom: -70px;
    width: 26px;
    height: 32px;
    background: radial-gradient(circle at 50% 40%, #ffe2ae, #ff9d5c 75%);
    border-radius: 46%;
    box-shadow: 0 0 18px 6px rgba(255, 177, 102, .45);
    cursor: pointer;
    pointer-events: auto;
    animation: lanternSway 3.2s ease-in-out infinite alternate;
}
.lantern::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    width: 8px;
    height: 4px;
    background: #d97b3f;
    border-radius: 2px;
}
@keyframes lanternSway {
    from { margin-left: -12px; }
    to   { margin-left: 12px; }
}

/* ---- 鱼群爆发（咒语彩蛋） ---- */
.rain-fish {
    position: fixed;
    z-index: 250;
    width: 46px;
    cursor: pointer;
    user-select: none;
    -webkit-user-drag: none;
    filter: drop-shadow(0 3px 6px rgba(253, 113, 97, .4));
    animation: rainSwim 2.4s ease-in-out infinite alternate;
}
@keyframes rainSwim {
    from { margin-top: -10px; }
    to   { margin-top: 10px; }
}

/* 回顶火箭起飞特效 */
.back-top.fly {
    animation: rocketFly 1s ease-out;
}
@keyframes rocketFly {
    0%   { transform: scale(1); box-shadow: 0 4px 12px rgba(253,113,97,.4); }
    30%  { transform: scale(1.35) rotate(-8deg); box-shadow: 0 0 30px 10px rgba(255,200,130,.8); }
    100% { transform: scale(1); box-shadow: 0 4px 12px rgba(253,113,97,.4); }
}

@media (max-width: 800px) {
    .footer-grid { grid-template-columns: 1fr; gap: 26px; }
    .footer-moon { width: 64px; height: 64px; right: 5%; }
    .footer-bottom { justify-content: center; text-align: center; }
}
.notice-track {
    display: flex;
    white-space: nowrap;
    line-height: 46px;
    color: #fff2d8;
    font-size: 14px;
    text-shadow: 0 1px 3px rgba(0,0,0,.6);
    animation: marquee 20s linear infinite;
}
.notice-track span { flex-shrink: 0; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============ 回到顶部 ============ */
.back-top {
    position: fixed;
    right: 0; bottom: 150px;
    width: 50px; height: 50px;
    border-radius: 12px;
    background: linear-gradient(to right, #fd7161, #fdc33f);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(253,113,97,.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .3s;
    transform: translateY(10px);
    z-index: 99;
    font-family: inherit;
}
.back-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-top .arrow { font-size: 18px; line-height: 1; }
.back-top .percent { font-size: 12px; margin-top: 2px; }

/* ============ 通用动画 ============ */
@keyframes flow { to { background-position: 200% 0; } }
@keyframes glow {
    0%, 100% { box-shadow: 0 0 15px rgba(253,113,97,.35); }
    50%      { box-shadow: 0 0 40px rgba(253,113,97,.7); }
}
.box-shadow { box-shadow: 0 0 10px rgba(253,113,97,.8), 0 0 40px rgba(253,197,63,.45); }

/* ============ 弹窗（抽签 / 打卡祝福） ============ */
.modal-mask {
    position: fixed;
    inset: 0;
    background: rgba(23, 30, 55, .55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
}
.modal-mask[hidden] { display: none; }
.modal-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 32px 30px 26px;
    max-width: 340px;
    width: 86%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(23, 30, 55, .35);
    animation: pop .28s cubic-bezier(.34, 1.56, .64, 1);
}
@keyframes pop {
    from { transform: scale(.7); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    cursor: pointer;
    color: #bbb;
    font-size: 16px;
    transition: color .2s;
}
.modal-close:hover { color: #fd7161; }
.modal-emoji { font-size: 44px; line-height: 1; margin-bottom: 10px; }
.modal-title {
    font-size: 18px;
    font-weight: bold;
    color: #444;
    margin: 0 0 10px;
    font-family: "ZCOOL KuaiLe", "楷体", 黑体, sans-serif;
    letter-spacing: 1px;
}
.modal-text { font-size: 14px; color: #666; line-height: 1.8; margin: 0 0 12px; }
.modal-sub { font-size: 12px; color: #b3a89a; margin: 0; }
.modal-sub b { color: #fd7161; }
.modal-fortune-level {
    display: inline-block;
    color: #fff;
    font-size: 13px;
    padding: 4px 14px;
    border-radius: 50px;
    margin: 0 0 8px;
}
.modal-fortune-level.lv-best { background: linear-gradient(to right, #f5433a, #ffb03a); }
.modal-fortune-level.lv-good  { background: linear-gradient(to right, #fd7161, #fdc33f); }
.modal-fortune-level.lv-mid   { background: linear-gradient(to right, #6aab7f, #8cc7a1); }
.modal-fortune-level.lv-bad   { background: linear-gradient(to right, #5b6b9e, #8b9bc9); }
.modal-fortune-name {
    font-size: 30px;
    color: #444;
    margin: 0 0 10px;
    font-family: "ZCOOL KuaiLe", "楷体", 黑体, sans-serif;
    letter-spacing: 4px;
}
.modal-fortune-poem {
    font-size: 15px;
    color: #8a7a66;
    line-height: 1.9;
    margin: 0 0 12px;
    font-family: "ZCOOL KuaiLe", "楷体", 黑体, sans-serif;
}

/* ============ 打卡特效 ============ */
.float-text {
    position: fixed;
    z-index: 300;
    pointer-events: none;
    color: #fd7161;
    font-size: 18px;
    font-weight: bold;
    font-family: "ZCOOL KuaiLe", "楷体", 黑体, sans-serif;
    transform: translateX(-50%);
    animation: floatUp 1s ease-out forwards;
}
@keyframes floatUp {
    from { opacity: 1; translate: 0 0; }
    to   { opacity: 0; translate: 0 -70px; }
}
.particle {
    position: fixed;
    z-index: 299;
    pointer-events: none;
    color: #fdc33f;
    transform: translate(-50%, -50%);
    animation: particleFly .85s ease-out forwards;
}
@keyframes particleFly {
    from { opacity: 1; transform: translate(-50%, -50%) rotate(0deg); }
    to   { opacity: 0; transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) rotate(220deg); }
}

/* ============ 响应式 ============ */
@media (max-width: 1150px) {
    .side-left, .side-right { display: none; }
}
@media (max-width: 1000px) {
    .nav-search input { width: 120px; }
    .content { flex-wrap: wrap; }
    .card { flex: 1 1 45%; }
}
@media (max-width: 700px) {
    .nav-links, .nav-search { display: none; }
    .hero-wrap { padding: 50px 20px 40px; }
    .hero-title { font-size: 34px; letter-spacing: 2px; }
    .hero-mascot { width: 220px; }
    .card { flex: 1 1 100%; }
    .last_page_top { flex-direction: column; gap: 20px; }
    .notice-bar { width: 90%; }
}

/* ---- 真人榜空态 / 万宝阁称号徽标（首页榜单用） ---- */
.rank-empty { font-size: 12px; color: #c9bba7; text-align: center; padding: 10px 0 4px; }
.rank-title {
    font-style: normal;
    font-size: 10px;
    color: #fff;
    background: linear-gradient(135deg, #f0b13d, #e04b3a);
    padding: 1px 7px;
    border-radius: 8px;
    margin-left: 6px;
    vertical-align: 1px;
}
.modal-fortune-level.lv-worst { background: linear-gradient(to right, #4a3a5e, #7a5a9e); }

/* ============ 移动端汉堡菜单（≤700px 导航收进抽屉） ============ */
.nav-burger {
    display: none;
    width: 38px;
    height: 38px;
    border: none;
    background: #fff;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(74, 58, 40, .12);
    flex-shrink: 0;
}
.nav-drawer {
    position: fixed;
    top: 70px;
    right: 12px;
    z-index: 500;
    background: #fff;
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 12px 32px rgba(74, 58, 40, .2);
    display: none;
    flex-direction: column;
    min-width: 168px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 14px;
    color: #5d564d;
    text-decoration: none;
}
.nav-drawer a:hover { background: #fdf6f0; color: #e09a2f; }
@media (max-width: 700px) {
    .nav-burger { display: flex; }
}
