/**
 * Moban Theme - 首页专用样式
 * 从 dev_preview.php 提取，用于浏览器缓存
 */

#header,
.navbar,
header.navbar {
    display: none !important;
}

/* 隐藏原有页脚和其他元素 */
#footer,
footer#footer,
.footer-nav,
#login-modal,
.modal-backdrop,
#message-container {
    display: none !important;
}

/* 调整 body 的 margin-top，因为隐藏了导航 */
body {
    padding-top: 0 !important;
}

/* 暗黑模式切换按钮 */
.dark-mode-toggle {
    background: #f1f5f9;
    border: none;
    color: #475569;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.dark-mode-toggle:hover {
    background: #e2e8f0;
    color: #4f46e5;
    transform: rotate(15deg);
}

.dark-mode-toggle i {
    font-size: 16px;
}

/* 页面基础样式 -->

/* ==================== 基础变量 ==================== */
.moban-preview-theme {
    --primary: #4f46e5;
    --primary-dark: #7c3aed;
    --bg-dark: #0f172a;
    --card-bg: #1e1b4b;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --border-radius: 16px;
    --shadow: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.25);
}

/* 电脑端整体缩放 75% */
@media (min-width: 768px) {
    .moban-preview-theme {
        zoom: 0.75;
    }
}

/* ==================== Swiper 轮播图 ==================== */
.hero-swiper {
    height: 320px;
    border-radius: var(--border-radius);
    margin: 20px 0 30px;
    overflow: hidden;
    position: relative;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 50px;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease;
}

.swiper-slide-active .slide-bg {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #78350f;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 24px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    color: #fff;
    text-decoration: none;
}

/* Swiper 自定义样式 */
.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #fff;
    width: 30px;
    border-radius: 5px;
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(255,255,255,0.25);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

/* ==================== 主布局容器 ==================== */
.moban-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.moban-index-wrap {
    padding: 10px 0 40px;
}

/* ==================== 区块标题 ==================== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
}

.section-title i {
    color: #4f46e5;
}

.view-all {
    color: #64748b;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.view-all:hover {
    color: #4f46e5;
}

.view-all i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.view-all:hover i {
    transform: translateX(4px);
}

/* ==================== 分区导航栏 ==================== */
.section-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 0 4px;
}

.section-nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.section-nav-left i {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

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

.nav-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #f1f5f9;
    border-radius: 20px;
    font-size: 13px;
    color: #475569;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.nav-pill:hover {
    background: #fff;
    color: #4f46e5;
    border-color: #e2e8f0;
    text-decoration: none;
}

.nav-pill i {
    font-size: 14px;
}

.nav-pill-raffle {
    background: #fef3c7;
    color: #d97706;
    border-color: #fcd34d;
}

.nav-pill-raffle:hover {
    background: #d97706;
    color: #fff;
    border-color: #d97706;
}

.nav-pill-invite {
    background: #ede9fe;
    color: #7c3aed;
    border-color: #c4b5fd;
}

.nav-pill-invite:hover {
    background: #7c3aed;
    color: #fff;
    border-color: #7c3aed;
}

.nav-pill-sign {
    color: #fff !important;
}
.nav-pill-sign:hover {
    opacity: 0.85;
    color: #fff !important;
}
.nav-pill-sign[data-sign-status="signed"] {
    opacity: 0.75;
}
.nav-pill-sign[data-sign-status="signing"] {
    opacity: 0.5;
    pointer-events: none;
}
body.dark-mode .nav-pill-sign {
    color: #fff !important;
}

@media (max-width: 576px) {
    .section-nav-bar {
        flex-wrap: nowrap;
        gap: 7px;
        margin-bottom: 10px;
    }
    
    .section-nav-left {
        font-size: 12px;
        gap: 5px;
        flex-shrink: 0;
    }
    
    .section-nav-left i {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    
    .section-nav-right {
        flex: 1;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 2px;
        gap: 5px;
    }
    
    .nav-pill {
        padding: 4px 9px;
        font-size: 10px;
        gap: 4px;
        border-radius: 14px;
    }
    
    .nav-pill i {
        font-size: 10px;
    }
}

/* ==================== 一左三右核心布局（白菜加宽，右边保持两列） ==================== */
.main-grid-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -10px;
    padding: 0 10px;
}

.main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    height: 343px;
    min-width: 585px;
}

/* 锁定白菜卡片高度比例，防止被拉长 */
.big-card {
    max-height: 343px;
}

/* 左侧大卡片 - 白菜（占左列2行） */
.big-card {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    background: url('/plugin/moban/images/baicai.webp') center/cover;
    border-radius: var(--border-radius);
    padding: 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.big-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.5) 100%);
    z-index: 0;
}

.big-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 13px 26px rgba(0,0,0,0.3);
    color: #fff;
    text-decoration: none;
}

/* 推广横幅左 */
.promo-banner-left {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
    background: url('/plugin/moban/images/banner_left.png') center/cover;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 104px;
}

.promo-banner-left:hover {
    transform: translateY(-4px);
    box-shadow: 0 13px 26px rgba(0,0,0,0.3);
}

/* 推广横幅右 */
.promo-banner-right {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
    background: url('/plugin/moban/images/banner_right.webp') center/cover;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 104px;
}

.promo-banner-right:hover {
    transform: translateY(-4px);
    box-shadow: 0 13px 26px rgba(0,0,0,0.3);
}

/* 子类目卡片通用样式 */
.sub-card {
    border-radius: var(--border-radius);
    padding: 13px;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sub-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 0;
}

.sub-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 13px 26px rgba(0,0,0,0.3);
    color: #fff;
    text-decoration: none;
}

/* 黄片+嫖娼地点 */
.sub-huangpiao {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
    background: url('/plugin/moban/images/huangpiao.webp') center/cover;
}

/* 工具 */
.sub-gongju {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
    background: url('/plugin/moban/images/gongju.webp') center/cover;
}

/* 积分兑换 */
.sub-jifen {
    grid-column: 5 / 6;
    grid-row: 2 / 3;
    background: url('/plugin/moban/images/jifen.webp') center/cover;
}

/* 互团大会 */
.sub-mutuan {
    grid-column: 5 / 6;
    grid-row: 1 / 2;
    background: url('/plugin/moban/images/mutuan.webp') center/cover;
}

/* 抽奖 - 右下左 */
.lottery-card {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    background: url('/plugin/moban/images/slide3.jpg') center/cover;
    border-radius: var(--border-radius);
    padding: 16px;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.lottery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 0;
}

.lottery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 13px 26px rgba(0,0,0,0.3);
    color: #fff;
    text-decoration: none;
}

/* 商城 - 右下中（稍宽） */
.shop-card {
    grid-column: 4 / 6;
    grid-row: 2 / 3;
    background: url('/plugin/moban/images/shop_card.jpg') center/cover;
    border-radius: var(--border-radius);
    padding: 16px;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.shop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 0;
}

.shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 13px 26px rgba(0,0,0,0.3);
    color: #fff;
    text-decoration: none;
}

/* 排行 - 右下右 */
.rank-card {
    grid-column: 6 / 7;
    grid-row: 2 / 3;
    background: url('/plugin/moban/images/slide4.jpg') center/cover;
    border-radius: var(--border-radius);
    padding: 16px;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.rank-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 0;
}

.rank-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 13px 26px rgba(0,0,0,0.3);
    color: #fff;
    text-decoration: none;
}

/* 卡片通用样式 */
.card-tag {
    font-size: 8px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.card-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.sub-card .card-title,
.lottery-card .card-title,
.shop-card .card-title,
.rank-card .card-title {
    font-size: 22px;
}

.card-stats {
    font-size: 9px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.card-desc {
    font-size: 9px;
    color: #fff;
    margin-top: auto;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.card-stats .divider {
    opacity: 0.7;
}

.card-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 10px;
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.big-card:hover .card-arrow,
.sub-card:hover .card-arrow,
.lottery-card:hover .card-arrow,
.shop-card:hover .card-arrow,
.rank-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* ==================== 侧边栏卡片 ==================== */
.sidebar-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 16px;
    margin-bottom: 13px;
    box-shadow: var(--shadow);
    border: 1px solid #f1f5f9;
}

/* 用户信息卡片 */
.user-card {
    text-align: center;
    padding: 20px 16px;
}

.user-avatar-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.user-avatar {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f1f5f9;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.user-status {
    position: absolute;
    bottom: 3px;
    right: 3px;
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    border: 2px solid #fff;
}

.user-name {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3px;
}

.user-greeting {
    font-size: 9px;
    color: #64748b;
    margin: 0;
}

/* 站点统计卡片 */
.stats-card {
    padding: 13px;
}

.stats-title {
    font-size: 9px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.stat-item {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-1px);
}

.stat-number {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-number.text-primary { color: #60a5fa; }
.stat-number.text-success { color: #34d399; }
.stat-number.text-purple { color: #a78bfa; }
.stat-number.text-warning { color: #fbbf24; }

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* ==================== 响应式适配 ==================== */
@media (max-width: 1199px) {
    .main-grid {
        grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        height: 343px;
    }
    
    .big-card {
        grid-row: 1 / 3;
        grid-column: 1 / 2;
    }
    
    .promo-banner-left {
        grid-column: 2 / 4;
        grid-row: 1 / 2;
    }
    
    .promo-banner-right {
        grid-column: 2 / 4;
        grid-row: 2 / 3;
    }
    
    .sub-huangpiao {
        grid-column: 4 / 5;
        grid-row: 1 / 2;
    }
    
    .sub-mutuan {
        grid-column: 5 / 6;
        grid-row: 1 / 2;
    }
    
    .sub-gongju {
        grid-column: 4 / 5;
        grid-row: 2 / 3;
    }
    
    .sub-jifen {
        grid-column: 5 / 6;
        grid-row: 2 / 3;
    }
}

@media (max-width: 991px) {
    .main-grid-wrapper {
        margin: 0 -10px;
        padding: 0 10px;
    }
}

@media (max-width: 991px) {
    .hero-swiper {
        height: 260px;
    }
    
    .swiper-slide {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .top-nav-menu {
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .hero-swiper {
        height: 150px;
        margin: 10px 0 13px;
        border-radius: 8px;
    }
    
    .swiper-slide {
        padding: 0 13px;
    }
    
    .hero-title {
        font-size: 18px;
    }
    
    .hero-subtitle {
        font-size: 10px;
    }
    
    .hero-btn {
        padding: 7px 13px;
        font-size: 10px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
    
    .moban-index-wrap {
        padding: 0 0 20px;
    }
    
    .main-grid-wrapper {
        margin: 0 -7px;
        padding: 0 7px;
        overflow: visible;
    }
    
    /* 手机端直播卡片横向滑动 - 2x2网格 */
    .live-grid {
        display: grid;
        grid-auto-flow: column;
        grid-template-columns: repeat(2, calc(50% - 5px));
        grid-auto-columns: calc(50% - 5px);
        grid-template-rows: repeat(2, 1fr);
        gap: 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 5px;
    }
    
    .live-grid::-webkit-scrollbar {
        display: none;
    }
    
    .live-card {
        scroll-snap-align: start;
        width: 100%;
    }
    
    .live-card-cover {
        padding-top: 56%;
    }
    
    .main-grid {
        min-width: auto;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 7px;
        height: auto;
    }
    
    .big-card {
        grid-row: 1 / 3;
        grid-column: 1 / 2;
        max-height: none;
        height: auto;
    }
    
    .sub-huangpiao {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    
    .sub-mutuan {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    
    .sub-gongju {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    
    .sub-jifen {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
    
    .promo-banner-left {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }
    
    .promo-banner-right {
        grid-column: 2 / 3;
        grid-row: 4 / 5;
    }
    
    .big-card,
    .promo-banner-left,
    .promo-banner-right,
    .sub-card {
        min-height: 78px;
        padding: 8px;
        border-radius: 7px;
    }
    
    .promo-banner-left,
    .promo-banner-right {
        min-height: 108px;
        padding: 0;
    }
    
    .card-tag {
        font-size: 8px;
        padding: 2px 5px;
        margin-bottom: 5px;
    }
    
    .big-card .card-title {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .sub-card .card-title,
    .lottery-card .card-title,
    .shop-card .card-title,
    .rank-card .card-title {
        font-size: 10px;
        margin-bottom: 3px;
    }
    
    .card-stats {
        font-size: 8px;
        gap: 3px;
    }
    
    .card-arrow {
        top: 6px;
        right: 6px;
        font-size: 9px;
    }
    
    .sidebar-card {
        margin-top: 10px;
    }
}

/* ==================== 暗黑模式适配 ==================== */
/* ==================== ICO 列表区域 ==================== */
.ico-section {
    margin-top: 20px;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 16px;
}

.ico-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
}

.ico-section-header i {
    color: #f59e0b;
    font-size: 20px;
}

.ico-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

@media (max-width: 1199px) {
    .ico-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .ico-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ico-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 8px 10px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.ico-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
    transform: translateY(-2px);
}

.ico-logo {
    width: 40%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ico-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    min-width: 0;
    overflow: hidden;
}

.ico-name {
    font-size: 12px;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    width: 100%;
}

.ico-discount {
    font-size: 11px;
    font-weight: 700;
    color: #f59e0b;
    background: #fff7ed;
    padding: 2px 4px;
    border-radius: 4px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.ico-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ico-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.ico-btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.ico-btn-primary {
    background: #dcfce7;
    color: #16a34a;
    border-color: #86efac;
}

.ico-btn-primary:hover {
    background: #16a34a;
    color: #fff;
}

.ico-btn-secondary {
    background: #fef3c7;
    color: #d97706;
    border-color: #fcd34d;
}

.ico-btn-secondary:hover {
    background: #d97706;
    color: #fff;
}

.ico-btn-info {
    background: #dbeafe;
    color: #2563eb;
    border-color: #93c5fd;
}

.ico-btn-info:hover {
    background: #2563eb;
    color: #fff;
}

.ico-guarantee {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    font-weight: 600;
    color: #1e293b;
    padding-top: 8px;
    border-top: 1px dashed #e2e8f0;
}

.ico-guarantee i {
    color: #3b82f6;
    font-size: 10px;
}

body.dark-mode {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

body.dark-mode .ico-section {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .ico-section-header {
    color: #f1f5f9;
    border-color: #334155;
}

body.dark-mode .ico-card {
    background: #334155;
    border-color: #475569;
}

body.dark-mode .ico-logo {
    background: #1e293b;
}

body.dark-mode .ico-name {
    color: #f1f5f9;
}

body.dark-mode .ico-discount {
    background: #2ab631;
    color: #fbbf24;
}

body.dark-mode .section-nav-left {
    color: #f1f5f9;
}

body.dark-mode .ico-guarantee {
    color: #f1f5f9;
    border-color: #475569;
}

@media (max-width: 576px) {
    .ico-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }
    
    .ico-section {
        padding: 8px;
    }
    
    .ico-section-header {
        font-size: 11px;
        margin-bottom: 8px;
        padding-bottom: 7px;
    }
    
    .ico-card {
        padding: 5px 6px;
        gap: 5px;
    }
    
    .ico-logo {
        width: 40%;
        height: auto;
        aspect-ratio: 1 / 1;
        border-radius: 6px;
    }
    
    .ico-name {
        font-size: 10px;
    }
    
    .ico-discount {
        font-size: 8px;
        padding: 0;
        margin-left: -6px;
        width: calc(100% + 12px);
    }
    
    .ico-btn {
        font-size: 9px;
        padding: 3px 8px;
        gap: 2px;
        border-radius: 3px;
        width: 100%;
    }
    
    .ico-btn i {
        font-size: 9px;
    }
}

body.dark-mode .section-title {
    color: #f1f5f9;
}

body.dark-mode .view-all {
    color: #94a3b8;
}

body.dark-mode .view-all:hover {
    color: #a78bfa;
}

body.dark-mode .sidebar-card {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .user-name {
    color: #f1f5f9;
}

body.dark-mode .user-greeting {
    color: #94a3b8;
}

body.dark-mode .stats-title {
    color: #f1f5f9;
    border-color: #334155;
}

body.dark-mode .moban-preview-theme {
    background: transparent;
}

body.dark-mode .alert-info {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
    color: #a78bfa;
}

/* ==================== Kick 直播区域 ==================== */
.live-section {
    margin-top: 30px;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 24px;
}

.live-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
}

.live-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.live-header-left i {
    font-size: 16px;
}

.live-badge {
    background: linear-gradient(135deg, #53fc18 0%, #3dd810 100%);
    color: #000;
    padding: 3px 8px;
    border-radius: 13px;
    font-size: 8px;
    font-weight: 800;
}

.live-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1199px) {
    .live-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .live-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .live-section {
        padding: 8px;
    }
    
    .live-section-header {
        margin-bottom: 8px;
        padding-bottom: 7px;
    }
    
    .live-header-left {
        font-size: 10px;
    }
    
    .live-header-left i {
        font-size: 12px;
    }
    
    .live-grid {
        display: grid;
        grid-auto-flow: column;
        grid-template-columns: repeat(2, calc(50% - 3.5px));
        grid-auto-columns: calc(50% - 3.5px);
        grid-template-rows: repeat(2, 1fr);
        gap: 7px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 3px;
    }
    
    .live-grid::-webkit-scrollbar {
        display: none;
    }
    
    .live-card {
        scroll-snap-align: start;
        border-radius: 10px;
        width: 100%;
    }
    
    .live-card-cover {
        padding-top: 56%;
    }
    
    .live-card-badge {
        top: 6px;
        left: 6px;
        padding: 2px 6px;
        font-size: 9px;
    }
    
    .live-card-viewers {
        bottom: 6px;
        right: 6px;
        padding: 2px 6px;
        font-size: 9px;
    }
    
    .live-card-play {
        width: 36px;
        height: 36px;
    }
    
    .live-card-play i {
        font-size: 14px;
    }
    
    .live-card-info {
        padding: 10px;
    }
    
    .live-card-title {
        font-size: 12px;
        margin: 0 0 6px 0;
    }
    
    .live-card-author img {
        width: 18px;
        height: 18px;
    }
    
    .live-card-author span {
        font-size: 10px;
    }
    
    .live-card-platform {
        font-size: 10px;
    }
}

/* 直播加载状态 */
.live-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
}

.live-loading i {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
    color: var(--primary);
}

/* 直播卡片 */
.live-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.live-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(83, 252, 24, 0.2);
    border-color: #53fc18;
}

.live-card-cover {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #1a1a1a;
    overflow: hidden;
}

.live-card-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.live-card:hover .live-card-cover img {
    transform: scale(1.05);
}

.live-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #53fc18 0%, #3dd810 100%);
    color: #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 4px;
}

.live-card-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.live-card-viewers {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(83, 252, 24, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.live-card:hover .live-card-play {
    opacity: 1;
}

.live-card-play i {
    font-size: 24px;
    color: #000;
    margin-left: 4px;
}

.live-card-info {
    padding: 16px;
}

.live-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.live-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-card-author img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.live-card-author span {
    font-size: 13px;
    color: #64748b;
}

.live-card-platform {
    font-size: 12px;
    color: #53fc18;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 直播播放器弹窗 */
.live-player-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.live-player-modal.active {
    display: flex;
}

.live-player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
}

.live-player-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.live-player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #252525;
    border-bottom: 1px solid #333;
}

.live-player-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.live-player-close {
    background: none;
    border: none;
    color: #888;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.live-player-close:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.live-player-body {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
}

.live-player-body video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.live-player-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #252525;
    border-top: 1px solid #333;
}

.live-player-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-player-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.live-player-meta h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 2px 0;
}

.live-player-meta span {
    font-size: 12px;
    color: #888;
}

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

.live-player-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-player-btn:hover {
    text-decoration: none;
}

.live-player-btn-primary {
    background: #53fc18;
    color: #000;
}

.live-player-btn-primary:hover {
    background: #4ae515;
}

.live-player-btn-secondary {
    background: #333;
    color: #fff;
}

.live-player-btn-secondary:hover {
    background: #444;
}

/* 暗黑模式适配 */
body.dark-mode .live-section {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .live-section-header {
    border-color: #334155;
}

body.dark-mode .live-header-left {
    color: #f1f5f9;
}

body.dark-mode .live-card {
    background: #334155;
}

body.dark-mode .live-card-title {
    color: #f1f5f9;
}

body.dark-mode .live-loading {
    color: #94a3b8;
}

body.dark-mode #body {
    background: transparent;
}

body.dark-mode main#body {
    background: transparent;
}

/* 登录弹窗样式 */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.login-modal.active {
    display: flex;
}

.login-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}

.login-modal-content {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    margin: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    animation: loginModalIn 0.3s ease;
}

@keyframes loginModalIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.login-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0,0,0,0.05);
    border-radius: 50%;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.login-modal-close:hover {
    background: rgba(0,0,0,0.1);
    color: #1e293b;
}

/* 弹窗头部 */
.login-modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-modal-logo {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.login-modal-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.login-modal-logo i {
    font-size: 28px;
    color: #fcd34d;
}

.login-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.login-modal-subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* 表单样式 */
.login-modal-form {
    margin-bottom: 24px;
}

.login-form-group {
    margin-bottom: 16px;
}

.login-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 0 16px;
    transition: all 0.3s ease;
}

.login-input-wrap:focus-within {
    background: #fff;
    border-color: #4f46e5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.login-input-wrap i {
    color: #94a3b8;
    font-size: 16px;
    margin-right: 12px;
}

.login-input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 0;
    font-size: 15px;
    color: #1e293b;
    outline: none;
}

.login-input-wrap input::placeholder {
    color: #94a3b8;
}

.toggle-password {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: #4f46e5;
}

.verify-code-btn {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.verify-code-btn:hover { opacity: 0.9; }
.verify-code-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
}

body.dark-mode .verify-code-btn:disabled {
    background: #475569;
}

/* 选项 */
.login-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #64748b;
}

.remember-me input {
    width: 18px;
    height: 18px;
    accent-color: #4f46e5;
}

.forgot-password {
    font-size: 14px;
    color: #4f46e5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #7c3aed;
    text-decoration: none;
}

/* 验证码弹窗层级提升，确保在登录弹窗之上 */
.mask {
    z-index: 99999 !important;
}

/* 验证码按钮 */
.captcha-group {
    margin-bottom: 16px;
}

.captcha-btn {
    width: 100%;
    padding: 12px;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.captcha-btn:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #475569;
}

.captcha-btn.verified {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: transparent;
    color: #fff;
}

/* 登录按钮 */
.login-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.5);
}

.login-submit-btn:active {
    transform: translateY(0);
}

/* 底部 */
.login-modal-footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    font-size: 14px;
    color: #64748b;
}

.login-modal-footer a {
    color: #4f46e5;
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
}

.login-modal-footer a:hover {
    text-decoration: underline;
}

/* 暗黑模式适配 */
body.dark-mode .login-modal-content {
    background: #1e293b;
}

body.dark-mode .login-modal-title {
    color: #f1f5f9;
}

body.dark-mode .login-modal-subtitle {
    color: #94a3b8;
}

body.dark-mode .login-input-wrap {
    background: #334155;
    border-color: #475569;
}

body.dark-mode .login-input-wrap:focus-within {
    background: #1e293b;
    border-color: #6366f1;
}

body.dark-mode .login-input-wrap input {
    color: #f1f5f9;
}

body.dark-mode .remember-me {
    color: #94a3b8;
}

body.dark-mode .login-modal-footer {
    border-color: #334155;
    color: #94a3b8;
}

/* 响应式 */
@media (max-width: 480px) {
    .login-modal-content {
        margin: 16px;
        padding: 32px 24px;
    }
    
    .login-modal-title {
        font-size: 20px;
    }
}

/* 邀请弹窗专属样式 */
.invite-modal-body {
    padding: 0 4px;
}

.invite-link-label {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 10px;
    font-weight: 500;
}

.invite-link-wrap {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.invite-link-wrap:focus-within {
    border-color: #7c3aed;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.invite-link-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 12px;
    font-size: 14px;
    color: #1e293b;
    outline: none;
    min-width: 0;
}

.invite-copy-btn {
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.invite-copy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

.invite-copy-btn.copied {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.invite-tip-text {
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.5;
}

/* 邀请弹窗暗黑模式 */
body.dark-mode .invite-link-wrap {
    background: #334155;
    border-color: #475569;
}

body.dark-mode .invite-link-wrap:focus-within {
    border-color: #a78bfa;
    box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.1);
}

body.dark-mode .invite-link-wrap input {
    color: #f1f5f9;
}

body.dark-mode .invite-link-label {
    color: #94a3b8;
}

body.dark-mode .invite-tip-text {
    color: #94a3b8;
}
