/* ============================================
   途声驿站 - 主样式表
   风格：古风 + 深夜温暖氛围
   ============================================ */

/* CSS变量定义 */
:root {
    --primary-gold: #d4a574;
    --primary-gold-light: #e8c9a0;
    --primary-gold-dark: #b8956a;
    --warm-orange: #e6a85c;
    --lantern-red: #c94444;
    --bg-dark: #1a1510;
    --bg-card: rgba(30, 25, 20, 0.85);
    --text-primary: #f5e6d3;
    --text-secondary: #a89a8a;
    --border-gold: rgba(212, 165, 116, 0.4);
    --shadow-warm: rgba(212, 165, 116, 0.2);
    --glow-lantern: rgba(255, 180, 100, 0.15);
}

/* 基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif SC', 'Source Han Serif CN', 'STSong', serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 1.6;
}

/* 背景层 */
.bg-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(ellipse at 50% 30%, rgba(60, 40, 25, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse at 20% 80%, rgba(80, 50, 30, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(70, 45, 28, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, #0d0a08 0%, #1a1510 40%, #1f1812 100%);
}

/* 粒子效果 */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 220, 180, 0.6);
    border-radius: 50%;
    animation: float-particle 8s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(255, 200, 150, 0.4);
}

@keyframes float-particle {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* 灯笼效果 - 背景层旧灯笼（远景点缀，位置与主灯区协调） */
.lanterns {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.lantern {
    position: absolute;
    width: 28px;
    height: 42px;
    background: radial-gradient(ellipse, var(--lantern-red) 0%, #8b2020 100%);
    border-radius: 50% 50% 45% 45% / 55% 55% 45% 45%;
    box-shadow:
        0 0 15px rgba(255, 150, 80, 0.2),
        0 0 30px rgba(255, 120, 60, 0.1),
        inset 0 -6px 12px rgba(0,0,0,0.3);
    animation: lantern-swing 4s ease-in-out infinite;
    opacity: 0.35;
}

.lantern::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 14px;
    background: var(--primary-gold-dark);
    border-radius: 4px 4px 0 0;
}

.lantern::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom, var(--primary-gold), transparent);
}

.lantern-left {
    top: 120px;
    left: 2%;
    animation-delay: 0s;
}

.lantern-right {
    top: 120px;
    right: 2%;
    animation-delay: 1s;
}

.lantern-center-left {
    top: 200px;
    left: 10%;
    animation-delay: 0.5s;
    transform: scale(0.65);
}

.lantern-center-right {
    top: 200px;
    right: 10%;
    animation-delay: 1.5s;
    transform: scale(0.65);
}

@keyframes lantern-swing {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

/* 主容器 */
.main-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 30px;
    min-height: 100vh;
    position: relative;
}

/* ============================================
   古风招牌（顶部）
   ============================================ */
.top-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 12px;
}

/* 招牌本体 */
.signboard {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 14px 48px 16px;
    background: linear-gradient(180deg, #1a1614 0%, #12100e 100%);
    border: 3px solid var(--primary-gold);
    border-radius: 8px;
    box-shadow:
        0 6px 30px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(212, 165, 116, 0.15),
        0 0 40px rgba(255, 150, 80, 0.08);
    z-index: 10;
    animation: sign-float 5s ease-in-out infinite;
    overflow: visible;
}

@keyframes sign-float {
    0%, 100% { transform: translateY(0) rotate(-0.3deg); }
    50% { transform: translateY(-3px) rotate(0.3deg); }
}

/* 招牌两端金钉 */
.sign-nail {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ffe8b0, var(--primary-gold-dark));
    box-shadow:
        0 0 6px rgba(255, 200, 120, 0.6),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.sign-nail-left { margin-right: 18px; }
.sign-nail-right { margin-left: 18px; }

/* 招牌文字 */
.sign-text {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 12px;
    color: var(--primary-gold);
    text-shadow:
        0 0 15px rgba(212, 165, 116, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    line-height: 1.2;
}

/* 招牌悬挂绳 */
.signboard::before {
    content: '';
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 28px;
    background: linear-gradient(to bottom, transparent, var(--primary-gold-dark));
}
.signboard::after {
    content: '';
    position: absolute;
    top: -32px;
    left: calc(50% - 60px);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary-gold-dark) 20%,
        var(--primary-gold-dark) 80%,
        transparent 100%
    );
    border-radius: 2px;
}

/* ============================================
   三灯笼串 — SVG内联绘制版
   特征：贝塞尔曲线灯体 / 暖橙渐变 / 多层烛火 / 光线脉冲
   ============================================ */
/* 容器 */
.inn-lantern-wrap {
    position: relative;
    width: 260px;
    height: 180px;
    animation: lanternStringAppear 1.4s cubic-bezier(.22,1,.36,1) both;
}

.inn-lantern-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 40px rgba(233,86,19,.3)) drop-shadow(0 4px 12px rgba(0,0,0,.25));
}

/* ====== 摇摆动画（灯体）====== */
/* 中灯笼摇摆 */
.lantern-body-lg {
    animation: centerSwing 5.5s ease-in-out infinite;
    transform-origin: 150px 27px;
}

/* 左灯笼摇摆 */
.lantern-body-sm.body-left {
    animation: leftSwing 5s ease-in-out infinite;
    transform-origin: 50px 28px;
}

/* 右灯笼摇摆 */
.lantern-body-sm.body-right {
    animation: rightSwing 5.2s ease-in-out infinite;
    transform-origin: 250px 28px;
}

/* ====== 光晕呼吸动画 ====== */
/* 中灯光晕 */
.lantern-aura-lg {
    animation: auraBreathMain 4s ease-in-out infinite;
    transform-origin: 150px 90px;
}

/* 左灯光晕 */
.lantern-aura-sm.aura-left {
    animation: auraBreathSide 4.2s ease-in-out infinite;
    transform-origin: 50px 88px;
}

/* 右灯光晕 */
.lantern-aura-sm.aura-right {
    animation: auraBreathSide 4.4s ease-in-out infinite 0.6s;
    transform-origin: 250px 88px;
}

/* ====== 烛火闪烁动画（中灯）====== */
.flame-outer { animation: flameOuterFlicker 2s ease-in-out infinite; }
.flame-mid { animation: flameMidFlicker 1.8s ease-in-out infinite alternate-reverse; }
.flame-core { animation: flameCoreFlicker 1.5s ease-in-out infinite; }
.flame-tip { animation: flameTipFlicker 2.3s ease-in-out infinite alternate; }

/* 烛火闪烁动画（小灯 - 左） */
.flame-left-outer { animation: flameOuterSm 2.1s ease-in-out infinite; }
.flame-left-mid { animation: flameMidSm 1.9s ease-in-out infinite alternate-reverse; }
.flame-left-core { animation: flameCoreSm 1.6s ease-in-out infinite; }

/* 烛火闪烁动画（小灯 - 右） */
.flame-right-outer { animation: flameOuterSm 2.2s ease-in-out infinite 0.3s; }
.flame-right-mid { animation: flameMidSm 1.7s ease-in-out infinite alternate-reverse 0.3s; }
.flame-right-core { animation: flameCoreSm 1.55s ease-in-out infinite 0.3s; }

/* ====== 光线脉冲动画 ====== */
.ray { opacity: 0; }
.ray1 { animation: rayPulse 3s ease-in-out infinite; }
.ray2 { animation: rayPulse 3.2s ease-in-out infinite 0.3s; }
.ray3 { animation: rayPulse 2.9s ease-in-out infinite 0.6s; }
.ray4 { animation: rayPulse 3.4s ease-in-out infinite 0.9s; }
.ray5 { animation: rayPulse 3.1s ease-in-out infinite 1.2s; }
.ray6 { animation: rayPulse 3.3s ease-in-out infinite 0.45s; }
.ray7 { animation: rayPulse 3.5s ease-in-out infinite 1.5s; }

/* ====== 星光闪烁 ====== */
.star { animation: starTwinkle 3s ease-in-out infinite; }
.s1 { animation-delay: 0s; animation-duration: 2.8s; }
.s2 { animation-delay: 0.3s; animation-duration: 3.2s; }
.s3 { animation-delay: 0.6s; animation-duration: 2.9s; }
.s4 { animation-delay: 0.9s; animation-duration: 3.5s; }
.s5 { animation-delay: 1.2s; animation-duration: 3s; }
.s6 { animation-delay: 1.5s; animation-duration: 2.7s; }
.s7 { animation-delay: 0.4s; animation-duration: 3.3s; }
.s8 { animation-delay: 0.8s; animation-duration: 3.1s; }
.s9 { animation-delay: 1.1s; animation-duration: 2.6s; }
.s10 { animation-delay: 1.4s; animation-duration: 3.4s; }
.s11 { animation-delay: 0.2s; animation-duration: 2.8s; }
.s12 { animation-delay: 0.7s; animation-duration: 3.6s; }
.s13 { animation-delay: 1.0s; animation-duration: 3s; }
.s14 { animation-delay: 1.3s; animation-duration: 2.5s; }
.s15 { animation-delay: 0.5s; animation-duration: 3.2s; }

/* ====== 地面光斑 ====== */
.ground-glow-combined {
    animation: groundPulse 4s ease-in-out infinite;
}

/* ============================================
   导航栏
   ============================================ */
.nav-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 900px;
    padding: 14px 28px;
    margin-top: 14px;
    margin-bottom: 8px;
    background: rgba(20, 16, 12, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    border: 1px solid var(--border-gold);
}

/* ========== 导航标语（呼吸感） ========== */
.nav-slogan {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    position: relative;
}

/* slogan 文字行：保持横向 */
.slogan-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ========== 萤火虫效果 ========== */
.firefly-container {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 20px;
    pointer-events: none;
}

.firefly {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, #ffe8a0 0%, #e6a85c 40%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    box-shadow:
        0 0 4px 1px rgba(255, 232, 160, 0.5),
        0 0 10px 3px rgba(230, 168, 92, 0.25);
}

.firefly-1 { left: 5%;  animation: firefly-dance 3.2s ease-in-out infinite; animation-delay: 0.0s; }
.firefly-2 { left: 15%; animation: firefly-dance 3.8s ease-in-out infinite; animation-delay: 0.5s; width: 2px; height: 2px; }
.firefly-3 { left: 28%; animation: firefly-dance 3.0s ease-in-out infinite; animation-delay: 1.2s; width: 4px; height: 4px; }
.firefly-4 { left: 42%; animation: firefly-dance 4.0s ease-in-out infinite; animation-delay: 0.3s; }
.firefly-5 { left: 55%; animation: firefly-dance 3.5s ease-in-out infinite; animation-delay: 1.8s; width: 2px; height: 2px; }
.firefly-6 { left: 68%; animation: firefly-dance 3.3s ease-in-out infinite; animation-delay: 0.8s; width: 4px; height: 4px; }
.firefly-7 { left: 82%; animation: firefly-dance 3.7s ease-in-out infinite; animation-delay: 2.1s; }
.firefly-8 { left: 92%; animation: firefly-dance 3.1s ease-in-out infinite; animation-delay: 1.5s; }

@keyframes firefly-dance {
    0%   { opacity: 0; transform: translateY(8px) translateX(0) scale(0.5); }
    15%  { opacity: 0.9; transform: translateY(-2px) translateX(3px) scale(1); }
    30%  { opacity: 0.3; transform: translateY(-6px) translateX(-2px) scale(0.7); }
    45%  { opacity: 1; transform: translateY(-1px) translateX(4px) scale(1.1); box-shadow: 0 0 6px 2px rgba(255,232,160,0.7), 0 0 16px 5px rgba(230,168,92,0.35); }
    60%  { opacity: 0.4; transform: translateY(-8px) translateX(-3px) scale(0.8); }
    75%  { opacity: 0.85; transform: translateY(-3px) translateX(2px) scale(1); box-shadow: 0 0 4px 1px rgba(255,232,160,0.5), 0 0 10px 3px rgba(230,168,92,0.25); }
    90%  { opacity: 0.2; transform: translateY(-5px) translateX(-1px) scale(0.6); }
    100% { opacity: 0; transform: translateY(8px) translateX(0) scale(0.5); }
}

.slogan-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--primary-gold-light);
    letter-spacing: 3px;
    opacity: 0.75;
    animation: slogan-breathe 4s ease-in-out infinite;
    text-shadow: 0 0 4px rgba(232, 201, 160, 0.1);
}

.slogan-text:nth-child(1) { animation-delay: 0s; }
.slogan-text:nth-child(3) { animation-delay: 0.7s; }
.slogan-text:nth-child(5) { animation-delay: 1.4s; }

@keyframes slogan-breathe {
    0%, 100% {
        opacity: 0.55;
        text-shadow: 0 0 4px rgba(232, 201, 160, 0.06);
        transform: scale(0.98);
    }
    50% {
        opacity: 1;
        text-shadow:
            0 0 20px rgba(230, 168, 92, 0.45),
            0 0 40px rgba(255, 180, 100, 0.15),
            0 2px 8px rgba(230, 168, 92, 0.2);
        transform: scale(1.03);
    }
}

.slogan-dot {
    color: var(--warm-orange);
    opacity: 0.4;
    font-size: 0.9rem;
    animation: dot-pulse 2s ease-in-out infinite;
}

.slogan-dot:nth-of-type(1) { animation-delay: 0s; }
.slogan-dot:nth-of-type(2) { animation-delay: 1s; }

@keyframes dot-pulse {
    0%, 100% { opacity: 0.15; transform: scale(0.9); }
    50% { opacity: 1; text-shadow: 0 0 12px rgba(230, 168, 92, 0.6); transform: scale(1.1); }
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 24px;
    border: 1px solid var(--border-gold);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
}

.user-name {
    color: var(--text-primary);
    font-weight: 500;
}

.user-level {
    font-size: 0.75rem;
    color: var(--warm-orange);
    background: rgba(230, 168, 92, 0.15);
    padding: 2px 8px;
    border-radius: 10px;
}

.nav-actions {
    display: flex;
    gap: 10px;
}

.nav-btn {
    padding: 8px 16px;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.9rem;
}

.nav-btn:hover {
    background: rgba(212, 165, 116, 0.25);
    transform: translateY(-2px);
}

.weather-widget {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(20, 16, 12, 0.5);
    border-radius: 12px;
    border: 1px solid var(--border-gold);
}

.weather-widget > i {
    font-size: 1.3rem;
    color: var(--primary-gold-light);
}

.weather-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.weather-status {
    font-weight: 600;
    color: var(--text-primary);
}

.weather-time,
.weather-temp {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

/* ========== 主题歌播放器（嵌入 nav-bar 内） ========== */
.theme-music-player {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    animation: player-fade-in 1s ease-out both;
    animation-delay: 0.8s;
}

@keyframes player-fade-in {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.player-info {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-shrink: 0;
}

.player-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-gold-light);
    letter-spacing: 1px;
}

.player-artist {
    font-size: 0.68rem;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.player-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, rgba(50, 36, 24, 0.9), rgba(35, 25, 18, 0.95));
    color: var(--primary-gold-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 0.7rem;
}

.player-btn:hover {
    border-color: var(--warm-orange);
    color: var(--warm-orange);
    box-shadow: 0 0 12px rgba(230, 168, 92, 0.3);
    transform: scale(1.08);
}

.play-pause-btn {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
    border-color: rgba(230, 168, 92, 0.5);
}

.upload-btn {
    width: 24px;
    height: 24px;
    font-size: 0.6rem;
    opacity: 0.55;
}

.upload-btn:hover { opacity: 1; }

.player-progress-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 100px;
}

.player-progress-bar {
    width: 100%;
    height: 7px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    align-self: center;
}

.player-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-gold-dark), var(--warm-orange));
    border-radius: 4px;
    transition: width 0.15s linear;
    position: relative;
}

.player-progress-fill::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    background: var(--warm-orange);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(230, 168, 92, 0.5);
    opacity: 0;
    transition: opacity 0.2s;
}

.player-progress-bar:hover .player-progress-fill::after { opacity: 1; }

.player-time {
    font-size: 0.6rem;
    color: var(--text-secondary);
    text-align: right;
    opacity: 0.65;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    flex-shrink: 0;
}

/* 音符飘动装饰 */
.theme-music-player.playing .player-title {
    animation: title-glow 2s ease-in-out infinite alternate;
}

@keyframes title-glow {
    from { text-shadow: 0 0 4px rgba(230, 168, 92, 0.1); }
    to   { text-shadow: 0 0 12px rgba(230, 168, 92, 0.4), 0 0 24px rgba(230, 168, 92, 0.15); }
}

/* ========== 内容区域布局 ========== */
.content-area {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    margin-bottom: 30px;
}

/* ========== 左侧广播栏 ========== */
.broadcast-panel {
    position: relative;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-gold);
    padding: 20px;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.broadcast-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1rem;
}

.broadcast-header i {
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.95); }
}

.broadcast-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 520px;
    overflow-y: auto;
}

.broadcast-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(212, 165, 116, 0.05);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fade-slide-in 0.5s ease forwards;
    opacity: 0;
    transform: translateX(-10px);
}

.broadcast-item:hover {
    background: rgba(212, 165, 116, 0.15);
    transform: translateX(4px);
}

.broadcast-item.active {
    background: rgba(212, 165, 116, 0.15);
    border-left: 3px solid var(--primary-gold);
}

.b-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.broadcast-item p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.broadcast-item.active p {
    color: var(--text-primary);
}

@keyframes fade-slide-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 侧边灯笼装饰 */
.side-lantern {
    position: absolute;
    bottom: 0;
    left: 8px;
    right: 8px;
}

.side-tong-img {
    width: 100%;
    height: auto;
    display: block;
}

.lantern-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 1.15rem;
    letter-spacing: 6px;
    color: var(--primary-gold-light);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(232, 201, 160, 0.5);
}

/* ========== 中间内容区 ========== */
.center-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ========== 佟掌柜区域 ========== */
.hostess-area {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 100px;
    padding: 28px 32px;
    min-height: 370px;
    cursor: pointer;
    background:
        linear-gradient(to bottom,
            transparent 0%,
            rgba(26, 21, 16, 0.3) 100%
        ),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><rect fill="%2315110d" width="800" height="400"/><circle cx="650" cy="80" r="40" fill="rgba(255%2C200%2C120%2C0.08)"/></svg>');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    border: 1px solid var(--border-gold);
}

/* 佟掌柜 — Grid中间列，天然居中 */
.hostess-image {
    position: relative;
    z-index: 2;
    width: 180px;
    height: auto;
    justify-self: center;
}

.hostess-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 180, 100, 0.3));
    animation: breathe 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.hostess-image:hover img {
    transform: scale(1.05);
}

/* 佟掌柜名字 */
.hostess-name {
    text-align: center;
    margin-top: -4px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--warm-orange);
    letter-spacing: 4px;
    text-shadow: 0 0 12px rgba(230, 168, 92, 0.3);
}

/* ========== 佟掌柜左侧诗句（Grid左列） ========== */
.hostess-poem {
    justify-self: end;
    width: 200px;
    padding: 20px 18px;
    background: linear-gradient(145deg,
        rgba(40, 32, 24, 0.7) 0%,
        rgba(26, 21, 16, 0.82) 100%
    );
    border-radius: 14px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    backdrop-filter: blur(12px);
    text-align: center;
    animation: poem-fade-in 1.2s ease-out both 0.3s;
    box-shadow:
        0 6px 24px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 220, 180, 0.04);
}

@keyframes poem-fade-in {
    from { opacity: 0; transform: translateX(-16px); }
    to { opacity: 1; transform: translateX(0); }
}

.poem-line {
    font-size: 0.8rem;
    line-height: 1.85;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    opacity: 0;
    animation: poem-line-reveal 0.5s ease forwards;
}

.poem-line-1 { animation-delay: 0.4s; }
.poem-line-2 { animation-delay: 0.55s; }
.poem-line-3 { animation-delay: 0.7s; color: var(--text-secondary); font-size: 0.74rem; }
.poem-line-4 { animation-delay: 0.85s; color: var(--text-secondary); font-size: 0.74rem; }
.poem-line-5 { animation-delay: 1.0s; color: var(--text-secondary); font-size: 0.74rem; }
.poem-line-6 { animation-delay: 1.15s; }
.poem-line-7 { animation-delay: 1.3s; }

@keyframes poem-line-reveal {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.poem-brand {
    margin-top: 12px;
    margin-bottom: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--warm-orange);
    letter-spacing: 3px;
    text-shadow: 0 0 16px rgba(230, 168, 92, 0.35);
    opacity: 0;
    animation: poem-line-reveal 0.5s ease forwards 1.5s;
}

.poem-closing {
    font-size: 0.8rem;
    color: var(--primary-gold-light);
    letter-spacing: 1.5px;
    opacity: 0;
    animation: poem-line-reveal 0.5s ease forwards 1.7s;
}

/* 点击提示 - 始终可见 */
.click-hint {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.82rem;
    color: var(--primary-gold);
    opacity: 0.85;
    white-space: nowrap;
    pointer-events: none;
    animation: hint-pulse 2.5s ease-in-out infinite;
}
@keyframes hint-pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.hostess-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 180, 100, 0.3));
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.01) translateY(-3px); }
}

.glow-effect {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(255, 180, 100, 0.3) 0%, transparent 70%);
    filter: blur(15px);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* 对话气泡（Grid右列） */
.dialogue-bubble {
    position: relative;
    justify-self: start;
    z-index: 3;
    max-width: 190px;
    padding: 12px 16px;
    background: rgba(255, 250, 240, 0.95);
    border-radius: 16px 16px 16px 4px;
    color: #3a3028;
    font-size: 0.88rem;
    font-weight: 500;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 200, 150, 0.2);
    animation: bubble-float 3s ease-in-out infinite;
    line-height: 1.6;
}

.dialogue-bubble::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 16px;
    width: 20px;
    height: 20px;
    background: rgba(255, 250, 240, 0.95);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

@keyframes bubble-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ========== 人气横幅 ========== */
.crowd-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 24px;
    background: linear-gradient(135deg, 
        rgba(42, 34, 26, 0.9) 0%,
        rgba(30, 25, 20, 0.95) 100%
    );
    border-radius: 50px;
    border: 1px solid var(--border-gold);
    backdrop-filter: blur(8px);
}

.crowd-text {
    font-size: 1rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.crowd-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 0 0 15px rgba(212, 165, 116, 0.5);
    display: inline-block;
    min-width: 60px;
}

.crowd-avatars {
    display: flex;
    gap: -8px;
}

.crowd-avatars img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -8px;
    object-fit: cover;
}

.crowd-avatars img:first-child {
    margin-left: 0;
}

.crowd-more {
    color: var(--text-secondary);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* ========== 六大堂口网格 ========== */
.halls-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hall-card {
    position: relative;
    background: var(--bg-card);
    border-radius: 18px;
    border: 1px solid var(--border-gold);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(8px);
    min-height: 260px;
}

.hall-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 165, 116, 0.05) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hall-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 30px var(--shadow-warm);
}

/* 堂口背景图案 */
.hall-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.hall-music .hall-bg {
    background: linear-gradient(135deg, #4a3728 0%, #2a1f18 100%);
}
.hall-compose .hall-bg {
    background: linear-gradient(135deg, #3a2a28 0%, #1f1816 100%);
}
.hall-xiaoluo .hall-bg {
    background: linear-gradient(135deg, #FF6B9D 0%, #C77DFF 40%, #4CC9F0 100%);
    opacity: 0.2;
}
.hall-record .hall-bg {
    background: linear-gradient(135deg, #2a3038 0%, #16191e 100%);
}
.hall-art .hall-bg {
    background: linear-gradient(135deg, #383228 0%, #1f1c16 100%);
}
.hall-parenting .hall-bg {
    background: linear-gradient(135deg, #3d2828 0%, #201616 100%);
}
.hall-tools .hall-bg {
    background: linear-gradient(135deg, #282838 0%, #16161f 100%);
}
.hall-phd .hall-bg {
    background: linear-gradient(135deg, #1a2a3a 0%, #101820 100%);
}
.hall-workshop .hall-bg {
    background: linear-gradient(135deg, #2a1f3a 0%, #161020 100%);
}
.hall-dengyu .hall-bg {
    background: linear-gradient(135deg, #1a2820 0%, #101814 100%);
}
.hall-video .hall-bg {
    background: linear-gradient(135deg, #2a1a28 0%, #18101a 100%);
}
.hall-jingxun .hall-bg {
    background: linear-gradient(135deg, #1a2838 0%, #101418 100%);
}
.hall-waymind .hall-bg {
    background: linear-gradient(135deg, #1a2840 0%, #101820 50%, #0d1a28 100%);
}
.hall-waymind .hall-title {
    background: linear-gradient(135deg, #64B5F6, #42A5F5, #90CAF9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ====== 藏经阁 —— 古卷暖金墨色系 ====== */
.hall-scripture .hall-bg {
    background: linear-gradient(135deg, #2a1f14 0%, #1e1810 40%, #1a2018 100%);
}
.hall-scripture .hall-title {
    background: linear-gradient(135deg, var(--primary-gold-light), #f0d9b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ====== 小螺号少儿音乐工坊 —— 柔和珊瑚暖色系 ====== */
.hall-badge-kids {
    background: linear-gradient(135deg, #E8A87C, #D4A574) !important;
    animation: kidsBadgePulse 2s ease-in-out infinite;
}
@keyframes kidsBadgePulse {
    0%, 100% { box-shadow: 0 2px 10px rgba(232, 168, 124, 0.3); }
    50% { box-shadow: 0 2px 16px rgba(212, 165, 116, 0.45); }
}
.hall-xiaoluo .hall-bg {
    background: linear-gradient(135deg, #2E2520 0%, #1F1815 60%, #1a2018 100%);
    opacity: 1;
}
.hall-xiaoluo .hall-title {
    background: linear-gradient(135deg, #E8B896 0%, #D4A574 40%, #A8C4AA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hall-xiaoluo .hall-desc {
    color: #C8A88A;
}
.hall-xiaoluo .hall-btn {
    background: linear-gradient(135deg, #E8A87C, #C9946A) !important;
    box-shadow: 0 3px 12px rgba(212, 165, 116, 0.3);
    border: none !important;
}
.hall-xiaoluo .hall-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(212, 165, 116, 0.45);
}
.xiaoluo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}
.xiaoluo-tag {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 12px;
    background: rgba(168, 196, 170, 0.12);
    color: #98B89A;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.25s ease;
}
.xiaoluo-tag:hover {
    background: rgba(168, 196, 170, 0.22);
    color: #A8C4AA;
}

/* 堂口内容 */
.hall-content {
    position: relative;
    z-index: 2;
    padding: 24px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hall-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 6px;
    text-shadow: 0 0 10px rgba(212, 165, 116, 0.3);
}

.hall-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.hall-btn {
    align-self: flex-start;
    padding: 8px 22px;
    background: linear-gradient(135deg, var(--primary-gold-dark) 0%, var(--primary-gold) 100%);
    border: none;
    border-radius: 20px;
    color: var(--bg-dark);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.hall-btn:hover {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

/* 堂口额外信息 */
.hall-extra {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(212, 165, 116, 0.15);
}

.extra-label {
    font-size: 0.76rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 4px;
}

.extra-value {
    font-size: 0.88rem;
    color: var(--text-primary);
    font-weight: 500;
}

.extra-value.highlight {
    color: var(--warm-orange);
}

/* 迷你播放器 */
.mini-player {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.play-btn {
    color: var(--primary-gold);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s;
}

.play-btn:hover {
    transform: scale(1.2);
    color: var(--primary-gold-light);
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress {
    width: 35%;
    height: 100%;
    background: var(--primary-gold);
    border-radius: 2px;
    animation: progress-move 3s ease-in-out infinite;
}

@keyframes progress-move {
    0% { width: 0%; }
    50% { width: 60%; }
    100% { width: 100%; }
}

/* 创作者头像组 */
.creator-avatars,
.art-preview {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.creator-avatars img,
.art-preview img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    object-fit: cover;
}

.art-preview img {
    border-radius: 6px;
}

/* 本地头像（替代 DiceBear avataaars） */
.local-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

/* 本地图标（替代 DiceBear shapes） */
.local-art-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: rgba(255,255,255,0.1);
    font-size: 14px;
    line-height: 1;
    flex-shrink: 0;
}

/* 音波动画 */
.wave-animation {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 30px;
    margin-top: 8px;
}

.wave-animation span {
    width: 3px;
    background: linear-gradient(to top, var(--primary-gold), var(--warm-orange));
    border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
}

.wave-animation span:nth-child(odd) {
    animation-duration: 0.8s;
}

.wave-animation span:nth-child(even) {
    animation-duration: 1s;
}

@keyframes wave {
    0%, 100% { height: 6px; }
    50% { height: 26px; }
}

/* 育儿堂特殊样式 */
.highlight-hall {
    border-color: rgba(230, 168, 92, 0.6);
    background: linear-gradient(
        135deg,
        rgba(60, 35, 28, 0.9) 0%,
        rgba(30, 22, 18, 0.95) 100%
    );
}

.hall-badge,
.hall-new-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    z-index: 5;
}

.hall-badge {
    background: linear-gradient(135deg, var(--lantern-red), #e05050);
    color: white;
}

.hall-new-badge {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
}

/* 待解锁标签 */
.hall-badge-locked {
    background: linear-gradient(135deg, #7a7a8a, #5a5a6a);
    color: #ddd;
}

/* 在装修标签 */
.hall-badge-renovate {
    background: linear-gradient(135deg, #d4a574, #b8885a);
    color: white;
}

/* 禁用（灰暗不可用） */
.hall-disabled {
    display: none;
}
.hall-disabled .hall-btn-disabled {
    background: rgba(100, 100, 110, 0.25);
    color: #888;
    border: 1px solid rgba(150, 150, 160, 0.2);
    cursor: default;
}

/* 需要登录才能查看（未登录态：轻微半透明，点击时弹登录框） */
.hall-needs-login {
    opacity: 0.6;
    position: relative;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.hall-needs-login:hover {
    opacity: 0.85;
    transform: translateY(-4px) scale(1.01);
}

/* 已订阅（正常高亮） */
.hall-subscribed {
    box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.35), 0 8px 30px rgba(0, 0, 0, 0.3);
}
.hall-subscribed:hover {
    box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.6), 0 4px 6px rgba(0, 0, 0, 0.4);
}

/* 未订阅（已登录但未选择：折叠态，缩小显示） */
.hall-hidden-card {
    opacity: 0.32;
    filter: grayscale(70%);
    transform: scale(0.95);
    transition: all 0.3s ease;
    cursor: default !important;
    position: relative;
}
.hall-hidden-card::after {
    content: '✏️ 去探索';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(20, 16, 12, 0.9);
    color: #d4a574;
    padding: 7px 16px;
    border-radius: 10px;
    font-size: 0.8rem;
    z-index: 10;
    pointer-events: none;
    border: 1px solid rgba(212, 165, 116, 0.2);
    white-space: nowrap;
}
.hall-hidden-card .hall-btn {
    display: none;
}
.hall-hidden-card:hover {
    opacity: 0.5;
}

/* ========== 模块选择弹窗 ========== */
.sub-picker-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: subPickerFadeIn 0.3s ease;
}
@keyframes subPickerFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.sub-picker-dialog {
    background: linear-gradient(160deg, #1e1815 0%, #14110e 100%);
    border: 1px solid rgba(212, 165, 116, 0.22);
    border-radius: 20px;
    padding: 32px 36px 28px;
    max-width: 520px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 165, 116, 0.08);
}

.sub-picker-header {
    text-align: center;
    margin-bottom: 24px;
}
.sub-picker-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}
.sub-picker-header h3 {
    color: var(--primary-gold);
    font-size: 1.25rem;
    margin: 0 0 6px;
    letter-spacing: 2px;
}
.sub-picker-subtitle {
    color: var(--text-secondary);
    font-size: 0.84rem;
    margin: 0;
}

.sub-picker-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.sub-picker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}
.sub-picker-item:hover {
    background: rgba(212, 165, 116, 0.1);
    border-color: rgba(212, 165, 116, 0.25);
}
.sub-picker-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(212, 165, 116, 0.4);
    border-radius: 5px;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    transition: all 0.15s ease;
    background: transparent;
}
.sub-picker-item input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #c9945a, #a67338);
    border-color: #d4a574;
}
.sub-picker-item input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 11px;
    font-weight: bold;
}
.sub-item-info {
    flex: 1;
    min-width: 0;
}
.sub-item-name {
    display: block;
    color: #e8dcc8;
    font-size: 0.88rem;
    font-weight: 500;
}
.sub-item-desc {
    display: block;
    color: var(--text-secondary);
    font-size: 0.74rem;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sub-item-badge {
    position: absolute;
    top: 4px;
    right: 6px;
    font-size: 0.65rem;
    color: #7ab88a;
    background: rgba(122, 184, 138, 0.12);
    padding: 1px 6px;
    border-radius: 6px;
    border: 1px solid rgba(122, 184, 138, 0.2);
}
.sub-always-free {
    opacity: 0.85;
}
.sub-always-free input[type="checkbox"] {
    pointer-events: none;
}

.sub-picker-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}
.sub-picker-btn {
    padding: 9px 24px;
    border-radius: 10px;
    font-size: 0.88rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    font-family: inherit;
}
.sub-picker-skip {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.sub-picker-skip:hover {
    color: #ccc;
    border-color: rgba(255, 255, 255, 0.2);
}
.sub-picker-confirm {
    background: linear-gradient(135deg, #c9945a, #a67338);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(166, 115, 56, 0.35);
}
.sub-picker-confirm:hover {
    background: linear-gradient(135deg, #d4a56a, #b58348);
    box-shadow: 0 4px 20px rgba(166, 115, 56, 0.5);
}

.lanxin-avatar {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 0 15px rgba(212, 165, 116, 0.3);
}

.lanxin-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parenting-quote {
    margin-top: 10px;
    padding: 10px 14px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--warm-orange);
    font-size: 0.82rem;
    color: var(--primary-gold-light);
    font-style: italic;
}

/* 工具列表 */
.tools-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
}

.tool-item {
    font-size: 0.84rem;
    color: var(--text-secondary);
    padding: 4px 0;
}

.tool-item i {
    color: var(--primary-gold);
    margin-right: 6px;
    width: 16px;
}

/* 博士苑标签 */
.phd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.phd-tag {
    font-size: 0.76rem;
    color: var(--text-secondary);
    padding: 3px 10px;
    background: rgba(100, 140, 180, 0.12);
    border-radius: 12px;
    border: 1px solid rgba(100, 140, 180, 0.2);
}
.phd-tag i {
    margin-right: 4px;
    font-size: 0.72rem;
    color: #7aa8cc;
}

/* WayMind 标签 */
.waymind-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.waymind-tag {
    font-size: 0.72rem;
    color: var(--text-secondary);
    padding: 4px 10px;
    background: rgba(100, 150, 200, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(100, 150, 200, 0.15);
    white-space: nowrap;
}
.waymind-tag i {
    margin-right: 4px;
    font-size: 0.68rem;
    color: #5a9fd4;
}
.waymind-tag-compute {
    color: var(--warm-orange);
    border-color: rgba(232, 168, 124, 0.25);
    background: rgba(232, 168, 124, 0.08);
}
.waymind-tag-compute i {
    color: var(--warm-orange);
}

/* AI工坊 特有样式 */
.workshop-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.workshop-feature {
    font-size: 0.76rem;
    color: var(--text-secondary);
    padding: 3px 10px;
    background: rgba(140, 100, 200, 0.12);
    border-radius: 12px;
    border: 1px solid rgba(140, 100, 200, 0.2);
}
.workshop-feature i {
    margin-right: 4px;
    font-size: 0.72rem;
    color: #a78bfa;
}

/* 灯语台 特有样式 */
.dengyu-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.dengyu-tag {
    font-size: 0.76rem;
    color: var(--text-secondary);
    padding: 3px 10px;
    background: rgba(80, 160, 120, 0.12);
    border-radius: 12px;
    border: 1px solid rgba(80, 160, 120, 0.2);
}
.dengyu-tag i {
    margin-right: 4px;
    font-size: 0.72rem;
    color: #50a070;
}

/* 视频工坊 特有样式 */
.video-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.video-feature {
    font-size: 0.76rem;
    color: var(--text-secondary);
    padding: 3px 10px;
    background: rgba(200, 100, 130, 0.12);
    border-radius: 12px;
    border: 1px solid rgba(200, 100, 130, 0.2);
}
.video-feature i {
    margin-right: 4px;
    font-size: 0.72rem;
    color: #e07090;
}

/* 警迅阁 特有样式 */
.jingxun-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.jingxun-tag {
    font-size: 0.76rem;
    color: var(--text-secondary);
    padding: 3px 10px;
    background: rgba(80, 130, 180, 0.12);
    border-radius: 12px;
    border: 1px solid rgba(80, 130, 180, 0.2);
}
.jingxun-tag i {
    margin-right: 4px;
    font-size: 0.72rem;
    color: #5090c0;
}

/* ========== 底部区域 ========== */
.footer-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 10px;
}

.footer-left,
.footer-right {
    background: var(--bg-card);
    border-radius: 18px;
    border: 1px solid var(--border-gold);
    padding: 28px;
    backdrop-filter: blur(8px);
}

/* 深夜不打烊 */
.late-night-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.late-night-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 0 0 15px rgba(212, 165, 116, 0.4);
}

.late-night-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.chat-btn {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-gold-dark), var(--primary-gold));
    border: none;
    border-radius: 24px;
    color: var(--bg-dark);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.chat-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.4);
}

/* 心语墙 */
.hearts-wall {
    height: 100%;
}

.wall-title {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 16px;
    font-weight: 600;
}

.notes-container {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.note {
    flex: 1;
    min-width: 140px;
    padding: 16px;
    background: linear-gradient(145deg, 
        rgba(245, 222, 179, 0.95) 0%,
        rgba(238, 203, 153, 0.95) 100%
    );
    border-radius: 4px 4px 12px 12px;
    color: #3a3028;
    font-size: 0.88rem;
    line-height: 1.6;
    box-shadow: 
        3px 3px 10px rgba(0, 0, 0, 0.2),
        inset 0 0 20px rgba(0, 0, 0, 0.03);
    transform: rotate(-2deg);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.note::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 12px;
    background: rgba(210, 180, 140, 0.6);
    border-radius: 2px;
}

.note:nth-child(2) {
    transform: rotate(1.5deg);
}

.note:nth-child(3) {
    transform: rotate(-1deg);
}

.note:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 2;
    box-shadow: 
        6px 6px 20px rgba(0, 0, 0, 0.25),
        inset 0 0 20px rgba(0, 0, 0, 0.03);
}

.note span {
    display: block;
    margin-top: 8px;
    font-size: 0.78rem;
    color: #888;
    text-align: right;
    font-style: italic;
}

/* ========== 响应式适配 ========== */
@media (max-width: 1200px) {
    .halls-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hostess-area {
        min-height: 300px;
    }
    
    .dialogue-bubble {
        right: 40px;
        max-width: 180px;
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .content-area {
        grid-template-columns: 1fr;
    }
    
    .broadcast-panel {
        display: none; /* 移动端可改为底部弹出 */
    }
    
    .halls-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-area {
        grid-template-columns: 1fr;
    }
    
    .top-nav {
        flex-direction: column;
        gap: 14px;
    }
    
    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .main-container {
        padding: 12px;
    }
    
    .halls-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-title {
        font-size: 1.5rem;
    }
    
    .hostess-image {
        width: 200px;
    }
    
    .dialogue-bubble {
        position: static;
        margin-top: 16px;
        max-width: 100%;
    }
    
    .crowd-banner {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .notes-container {
        flex-direction: column;
    }
}

/* ========== 动画工具类 ========== */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-up {
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 滚动条美化 */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold-dark);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold);
}

/* 选中文字颜色 */
::selection {
    background: rgba(212, 165, 116, 0.4);
    color: var(--text-primary);
}

/* ============================================
   佟掌柜聊天面板（暗色古风风格）
   ============================================ */

/* 聊天遮罩层 */
.keeper-chat-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: chat-overlay-in 0.3s ease forwards;
}

.keeper-chat-overlay.active { display: flex; }

@keyframes chat-overlay-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 聊天面板主体 */
.keeper-chat-panel {
    width: 480px;
    max-width: 92vw;
    height: 600px;
    max-height: 85vh;
    background: linear-gradient(180deg, #1a1510 0%, #14110d 100%);
    border-radius: 18px;
    border: 1px solid var(--border-gold);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(212, 165, 116, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: chat-panel-in 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes chat-panel-in {
    from { transform: scale(0.92) translateY(30px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

/* 聊天头部 */
.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(180deg, rgba(42, 34, 26, 0.8), rgba(26, 21, 16, 0.95));
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    flex-shrink: 0;
}

.chat-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 0 12px rgba(255, 180, 100, 0.3);
}

.chat-header-info {
    display: flex;
    flex-direction: column;
}

.chat-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(212, 165, 116, 0.3);
}

.chat-status {
    font-size: 0.75rem;
    color: #7cb87c;
}
.chat-status i {
    font-size: 0.55rem;
    margin-right: 4px;
    animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

/* 关闭按钮 */
.chat-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(212, 165, 116, 0.3);
    background: transparent;
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-close-btn:hover {
    background: rgba(200, 68, 68, 0.2);
    border-color: rgba(200, 68, 68, 0.5);
    color: #e05050;
    transform: rotate(90deg);
}

/* 消息区域 */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scroll-behavior: smooth;
}

/* 自定义消息区滚动条 */
.chat-messages::-webkit-scrollbar {
    width: 5px;
}
.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}
.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(212, 165, 116, 0.3);
    border-radius: 3px;
}

/* 单条消息 */
.chat-msg {
    display: flex;
    gap: 10px;
    max-width: 82%;
    animation: msg-in 0.35s ease forwards;
}

.chat-msg.user-msg {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.msg-avatar {
    flex-shrink: 0;
}
.msg-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--primary-gold-dark);
}

.msg-content {
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.9rem;
    line-height: 1.65;
    word-break: break-word;
}

.bot-msg .msg-content {
    background: linear-gradient(135deg, rgba(50, 40, 30, 0.9), rgba(35, 28, 22, 0.95));
    border: 1px solid rgba(212, 165, 116, 0.15);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.user-msg .msg-content {
    background: linear-gradient(135deg, rgba(180, 140, 90, 0.25), rgba(160, 120, 70, 0.15));
    border: 1px solid rgba(212, 165, 116, 0.3);
    color: var(--text-primary);
    border-bottom-right-radius: 4px;
}

@keyframes msg-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 打字指示器 */
.typing-indicator {
    display: none;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(50, 40, 30, 0.9), rgba(35, 28, 22, 0.95));
    border: 1px solid rgba(212, 165, 116, 0.15);
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    width: fit-content;
}

.typing-indicator.show { display: flex; }

.typing-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-gold-dark);
    animation: typing-bounce 1.4s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* 输入区域 */
.chat-input-area {
    padding: 14px 20px 18px;
    background: linear-gradient(180deg, rgba(20, 16, 12, 0.95), rgba(16, 13, 10, 1));
    border-top: 1px solid rgba(212, 165, 116, 0.15);
    flex-shrink: 0;
}

.input-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    background: rgba(30, 25, 20, 0.8);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 14px;
    padding: 8px 12px;
    transition: border-color 0.25s ease;
}

.input-wrapper:focus-within {
    border-color: var(--primary-gold);
    box-shadow: 0 0 12px rgba(212, 165, 116, 0.1);
}

.input-wrapper textarea {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    resize: none;
    max-height: 90px;
    min-height: 24px;
    line-height: 1.5;
}
.input-wrapper textarea::placeholder {
    color: var(--text-secondary);
    font-size: 0.84rem;
}

.send-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary-gold-dark), var(--primary-gold));
    color: var(--bg-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.send-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.send-btn:active {
    transform: scale(0.94);
}

.send-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* ============================================
   灯笼动画关键帧（@keyframes）
   ============================================ */

/* 灯串出现 */
@keyframes lanternStringAppear {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 摇摆 - 中灯 */
@keyframes centerSwing {
    0%, 100% { transform: rotate(-2.2deg); }
    50% { transform: rotate(2.8deg); }
}

/* 摇摆 - 左灯 */
@keyframes leftSwing {
    0%, 100% { transform: rotate(-2.8deg); }
    50% { transform: rotate(2.2deg); }
}

/* 摇摆 - 右灯 */
@keyframes rightSwing {
    0%, 100% { transform: rotate(-2.4deg); }
    50% { transform: rotate(2.6deg); }
}

/* 光晕呼吸 - 中灯 */
@keyframes auraBreathMain {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.07); opacity: 1; }
}

/* 光晕呼吸 - 小灯 */
@keyframes auraBreathSide {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.06); opacity: 0.95; }
}

/* 中灯烛火 - 外焰 */
@keyframes flameOuterFlicker {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    25% { opacity: 0.22; transform: scale(1.08); }
    50% { opacity: 0.12; transform: scale(0.96); }
    75% { opacity: 0.2; transform: scale(1.04); }
}

/* 中灯烛火 - 中焰 */
@keyframes flameMidFlicker {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    30% { opacity: 0.42; transform: scale(1.06); }
    60% { opacity: 0.26; transform: scale(0.97); }
}

/* 中灯烛火 - 灯芯 */
@keyframes flameCoreFlicker {
    0%, 100% { opacity: 0.75; transform: scale(1); }
    20% { opacity: 0.9; transform: scale(1.05); }
    40% { opacity: 0.68; transform: scale(0.98); }
    70% { opacity: 0.85; transform: scale(1.03); }
}

/* 中灯烛火 - 焰尖 */
@keyframes flameTipFlicker {
    0%, 100% { opacity: 0.5; transform: scaleY(1) translateY(0); }
    50% { opacity: 0.7; transform: scaleY(1.2) translateY(-1px); }
}

/* 小灯烛火 - 外焰 */
@keyframes flameOuterSm {
    0%, 100% { opacity: 0.12; transform: scale(1); }
    33% { opacity: 0.18; transform: scale(1.07); }
    66% { opacity: 0.1; transform: scale(0.95); }
}

/* 小灯烛火 - 中焰 */
@keyframes flameMidSm {
    0%, 100% { opacity: 0.25; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(1.05); }
}

/* 小灯烛火 - 灯芯 */
@keyframes flameCoreSm {
    0%, 100% { opacity: 0.65; transform: scale(1); }
    25% { opacity: 0.8; transform: scale(1.04); }
    55% { opacity: 0.6; transform: scale(0.97); }
    80% { opacity: 0.75; transform: scale(1.02); }
}

/* 光线脉冲 */
@keyframes rayPulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.55; }
}

/* 星光闪烁 */
@keyframes starTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* 地面光斑脉冲 */
@keyframes groundPulse {
    0%, 100% { rx: 115px; opacity: 0.6; }
    50% { rx: 128px; opacity: 0.9; }
}

/* ============================================
   账号系统 - 登录/用户入口样式
   ============================================ */

/* 导航栏用户区域容器 */
.nav-user-area {
    position: absolute;
    top: 12px;
    right: 20px;
    z-index: 100;
}

/* 登录按钮 */
.ta-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    background: linear-gradient(135deg, #2a1f15, #3d2e1f);
    border: 1px solid rgba(212,168,83,0.4);
    border-radius: 20px;
    color: #d4a853;
    font-size: 13.5px;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    cursor: pointer;
    transition: all .25s ease;
    letter-spacing: 1px;
}
.ta-login-btn:hover {
    background: linear-gradient(135deg, #3d2e1f, #4d3828);
    border-color: rgba(212,168,83,0.7);
    color: #ffe4a0;
    box-shadow: 0 0 12px rgba(212,168,83,0.2);
    transform: translateY(-1px);
}
.ta-login-btn:active {
    transform: translateY(0);
}
.ta-login-btn:disabled {
    opacity: .65;
    cursor: not-allowed;
}

/* 已登录 - 用户头像区域 */
.ta-user-area {
    position: relative;
    display: flex;
    align-items: center;
    cursor: default;
}
.ta-user-avatar-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px 5px 5px;
    background: rgba(26,20,16,0.85);
    border: 1px solid rgba(200,150,90,0.25);
    border-radius: 22px;
    transition: all .25s ease;
}
.ta-user-avatar-wrap:hover {
    border-color: rgba(212,168,83,0.55);
    box-shadow: 0 0 10px rgba(212,168,83,0.12);
}
.ta-user-avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(212,168,83,0.35);
    flex-shrink: 0;
}
.ta-user-name {
    font-size: 13px;
    color: #e8d5b7;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* 下拉菜单 */
.ta-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 150px;
    padding: 6px 0;
    background: rgba(26,20,16,0.95);
    border: 1px solid rgba(200,150,90,0.2);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.45), 0 0 1px rgba(212,168,83,0.15) inset;
    backdrop-filter: blur(8px);
    z-index: 200;
}
.ta-dropdown::before {
    content: '';
    position: absolute;
    top: -6px; right: 24px;
    width: 10px; height: 10px;
    background: rgba(26,20,16,0.95);
    border-left: 1px solid rgba(200,150,90,0.2);
    border-top: 1px solid rgba(200,150,90,0.2);
    transform: rotate(45deg);
}
.ta-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    color: #c8b898;
    font-size: 13px;
    text-decoration: none;
    transition: all .15s;
    letter-spacing: 0.5px;
}
.ta-dropdown a:hover {
    color: #ffe4a0;
    background: rgba(212,168,83,0.08);
}
.ta-dropdown a i {
    width: 14px;
    text-align: center;
    font-size: 11.5px;
    opacity: .7;
}
.ta-dropdown a:hover i {
    opacity: 1;
}
