/* ========================================
   首页 — 克制·深沉·一屏自适应
   ======================================== */

html:has(.home-page),
html:has(.home-page) body {
    overflow: hidden !important;
    height: 100% !important;
}

html:has(.home-page) .app-container {
    overflow: hidden !important;
}

.home-page {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background: #0e0e16;
    background-image:
        radial-gradient(ellipse at 30% 20%, rgba(245, 158, 11, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 75% 60%, rgba(139, 92, 246, 0.05) 0%, transparent 55%);
    padding-bottom: var(--navbar-height);
}

/* 品牌头部 */
.home-header {
    padding: 16px 16px 6px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-shrink: 0;
}

.home-header-left {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
}

.home-greeting {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
}

.home-username {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.home-slogan {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
    letter-spacing: 0.5px;
}

/* 隐藏头像（保留兼容） */
.home-avatar,
.home-avatar-inner {
    display: none;
}

/* 设置按钮 — 毛玻璃圆形 */
.home-settings-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
    transition: all 0.2s ease;
    margin-top: 4px;
}

.home-settings-btn:active {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
}

/* 公告区域 — 紧凑 */
.home-notice {
    margin: 6px 16px 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    flex-shrink: 0;
    max-height: 100px;
    overflow: hidden;
}

.home-notice-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

/* 公告 tag — 金色渐变 */
.home-notice-tag {
    padding: 2px 8px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2));
    color: #F5C518;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.home-notice-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
}

.home-notice-body {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    overflow-y: auto;
    max-height: 56px;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.home-notice-body::-webkit-scrollbar {
    display: none;
}

.home-notice-list,
.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.home-notice .announcement-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 3px 0;
    cursor: pointer;
    transition: opacity 0.15s;
    height: 28px;
}

.home-notice .announcement-item:active {
    opacity: 0.7;
}

.home-notice .announcement-item .item-icon {
    font-size: 13px;
    flex-shrink: 0;
}

.home-notice .announcement-item .item-text {
    flex: 1;
    min-width: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-notice .announcement-item .item-time {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

/* 区块标题 */
.home-section-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.5px;
    padding: 0 16px;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.home-more-label {
    padding: 0;
    margin-top: 16px;
    margin-bottom: 8px;
}

/* 工具列表滚动区 */
.home-func-grid-wrap {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 16px 12px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.home-func-grid-wrap::-webkit-scrollbar {
    display: none;
}

/* ============================
   核心工具 — 2×2 高亮大卡片
   ============================ */
.home-core-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.home-core-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 14px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
    min-height: 76px;
}

.home-core-card:active {
    transform: scale(0.97);
    opacity: 0.85;
}

/* 每张卡片独立渐变背景 */
.home-core-card.core-copy {
    background: linear-gradient(145deg, rgba(230, 90, 40, 0.42), rgba(230, 125, 65, 0.22));
    border: 1px solid rgba(230, 90, 40, 0.45);
}

.home-core-card.core-seo {
    background: linear-gradient(145deg, rgba(110, 80, 228, 0.42), rgba(150, 125, 230, 0.22));
    border: 1px solid rgba(110, 80, 228, 0.45);
}

.home-core-card.core-chat {
    background: linear-gradient(145deg, rgba(14, 163, 115, 0.42), rgba(45, 190, 140, 0.22));
    border: 1px solid rgba(14, 163, 115, 0.45);
}

.home-core-card.core-boom {
    background: linear-gradient(145deg, rgba(215, 60, 60, 0.42), rgba(225, 100, 100, 0.22));
    border: 1px solid rgba(215, 60, 60, 0.45);
}

/* 核心工具图标 */
.home-core-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 8px;
}

/* 核心工具文字 */
.home-core-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.home-core-name {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.home-core-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
}

/* ============================
   更多工具 — 紧凑单列列表
   ============================ */
.home-more-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    overflow: hidden;
}

.home-more-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    cursor: pointer;
    transition: background 0.15s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

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

.home-more-item:active {
    background: rgba(255, 255, 255, 0.04);
}

/* 更多工具图标 — 复用原有渐变色 */
.home-more-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.home-more-icon.i-monitor {
    background: linear-gradient(135deg, rgba(52, 115, 220, 0.9), rgba(82, 148, 230, 0.9));
}

.home-more-icon.i-forbidden {
    background: linear-gradient(135deg, rgba(215, 60, 60, 0.9), rgba(198, 32, 32, 0.9));
}

.home-more-icon.i-calc {
    background: linear-gradient(135deg, rgba(125, 82, 220, 0.9), rgba(150, 125, 230, 0.9));
}

.home-more-icon.i-image {
    background: linear-gradient(135deg, rgba(5, 163, 190, 0.9), rgba(28, 190, 215, 0.9));
}

.home-more-name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

.home-more-arrow {
    color: rgba(255, 255, 255, 0.15);
    font-size: 16px;
    flex-shrink: 0;
}

/* 查看全部工具入口 */
.home-view-all {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: color 0.2s;
    margin-top: 4px;
}

.home-view-all:active {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================
   推广图标条 — 横排 4 格
   ============================ */
.home-promo-dock {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 4px 0;
}

.home-promo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    cursor: pointer;
    transition: opacity 0.15s;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.home-promo-item:active {
    opacity: 0.7;
}

.home-promo-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.home-promo-icon.promo-course {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.35), rgba(217, 119, 6, 0.2));
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.home-promo-icon.promo-resource {
    background: linear-gradient(135deg, rgba(14, 163, 115, 0.35), rgba(16, 185, 129, 0.2));
    border: 1px solid rgba(14, 163, 115, 0.25);
}

.home-promo-icon.promo-cases {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.35), rgba(96, 165, 250, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.home-promo-icon.promo-aichat {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.35), rgba(167, 139, 250, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.25);
}

.home-promo-name {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

/* 品牌签名 */
.home-brand-footer {
    text-align: center;
    padding: 24px 0 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: color 0.2s;
}

.home-brand-footer:active {
    color: rgba(255, 255, 255, 0.45);
}

/* 旧样式兼容隐藏 */
.home-tips {
    display: none;
}

.home-func-desc {
    display: none;
}

.home-func-arrow {
    display: none;
}

/* ========================================
   工具页 — 克制·通透·深沉·高级感
   ======================================== */

html:has(.tools-page),
html:has(.tools-page) body {
    overflow: hidden !important;
    height: 100% !important;
}

html:has(.tools-page) .app-container {
    overflow: hidden !important;
}

.tools-page {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background: #0a0a0f;
    padding-bottom: var(--navbar-height);
}

/* 顶部固定标题区 */
.tools-header {
    flex-shrink: 0;
    padding: 24px 20px 16px;
}

.tools-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.tools-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

/* 工具列表滚动区 + 顶底渐变遮罩 */
.tools-list-area {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 16px 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    mask-image: linear-gradient(to bottom,
            transparent 0px,
            #000 20px,
            #000 calc(100% - 20px),
            transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom,
            transparent 0px,
            #000 20px,
            #000 calc(100% - 20px),
            transparent 100%);
}

.tools-list-area::-webkit-scrollbar {
    display: none;
}

/* 分类区块 */
.tools-category {
    margin-bottom: 0;
}

.tools-category+.tools-category {
    margin-top: 20px;
}

/* 分类标题 — 简洁：emoji + 文字 */
.tools-category-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.tools-category-icon {
    font-size: 14px;
    line-height: 1;
}

/* 去掉图标背景色 */
.tools-category-icon.ai,
.tools-category-icon.data,
.tools-category-icon.operate,
.tools-category-icon.other,
.tools-category-icon.monitor {
    background: none;
    width: auto;
    height: auto;
    border-radius: 0;
}

.tools-category-name {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

/* 去掉数量标签 */
.tools-category-count {
    display: none;
}

/* 工具卡片列表（单列） */
.tools-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* 工具卡片 */
.tools-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-bottom: 8px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.tools-card:last-child {
    margin-bottom: 0;
}

.tools-card:active {
    background: rgba(255, 255, 255, 0.05);
}

.tools-card.tools-card-disabled {
    opacity: 0.45;
    cursor: default;
}

.tools-card.tools-card-disabled:active {
    background: rgba(255, 255, 255, 0.03);
}

/* 工具图标 — 40px 渐变圆角矩形（降饱和） */
.tools-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

/* 每个工具独立渐变色（降饱和 10-15%） */
.tools-card-icon.copywriting {
    background: linear-gradient(135deg, rgba(230, 90, 40, 0.9), rgba(230, 125, 65, 0.9));
}

.tools-card-icon.customer {
    background: linear-gradient(135deg, rgba(14, 163, 115, 0.9), rgba(45, 190, 140, 0.9));
}

.tools-card-icon.qa {
    background: linear-gradient(135deg, rgba(220, 142, 10, 0.9), rgba(225, 172, 30, 0.9));
}

.tools-card-icon.title-gen {
    background: linear-gradient(135deg, rgba(5, 163, 190, 0.9), rgba(28, 190, 215, 0.9));
}

.tools-card-icon.boom {
    background: linear-gradient(135deg, rgba(215, 60, 60, 0.9), rgba(225, 100, 100, 0.9));
}

.tools-card-icon.monitor {
    background: linear-gradient(135deg, rgba(52, 115, 220, 0.9), rgba(82, 148, 230, 0.9));
}

.tools-card-icon.keyword {
    background: linear-gradient(135deg, rgba(110, 80, 228, 0.9), rgba(150, 125, 230, 0.9));
}

.tools-card-icon.analysis {
    background: linear-gradient(135deg, rgba(125, 82, 220, 0.9), rgba(150, 125, 230, 0.9));
}

.tools-card-icon.forbidden {
    background: linear-gradient(135deg, rgba(215, 60, 60, 0.9), rgba(198, 32, 32, 0.9));
}

.tools-card-icon.violation {
    background: linear-gradient(135deg, rgba(225, 105, 20, 0.9), rgba(210, 78, 10, 0.9));
}

.tools-card-icon.other {
    background: rgba(255, 255, 255, 0.06);
}

/* 工具卡片文字区 */
.tools-card-text {
    flex: 1;
    min-width: 0;
}

.tools-card-name {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}

.tools-card-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 2px;
    line-height: 1.4;
}

/* 右侧箭头 */
.tools-card-arrow {
    color: rgba(255, 255, 255, 0.12);
    font-size: 14px;
    flex-shrink: 0;
}

/* Badge — 隐藏（设计要求去除） */
.tools-card-badge {
    display: none;
}

/* ========================================
   我的页面 — 视觉升级
   ======================================== */

/* 卡密兑换页：子页面内容允许纵向滚动 */
.app-container.fullscreen:has(.card-redeem-page) #app-content {
    height: 100%;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

html:has(.settings-page),
html:has(.settings-page) body {
    overflow: hidden !important;
    height: 100% !important;
}

html:has(.settings-page) .app-container {
    overflow: hidden !important;
}

.settings-page,
.me-page {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    padding-bottom: var(--navbar-height);
    background: linear-gradient(180deg, #0a0a0f 0%, #12121a 50%, #0a0a0f 100%);
}

.settings-page::-webkit-scrollbar,
.me-page::-webkit-scrollbar {
    display: none;
}

.settings-page,
.me-page {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.settings-header,
.me-page-header {
    padding: 12px 20px 8px;
}

.settings-title,
.me-page-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.settings-subtitle,
.me-page-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 4px;
}

.settings-content-area {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* 会员信息卡片 */
.me-card {
    margin: 0 16px 8px;
    padding: 12px 14px 10px;
    background: linear-gradient(145deg, #111520, #0e1118);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.me-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(107, 140, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.me-card-user {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.me-card-user-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.me-card-avatar {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #FF9A56, #FF6B35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
    flex-shrink: 0;
}

.me-card-phone {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.me-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 200, 55, 0.15), rgba(255, 160, 40, 0.15));
    color: #FFD166;
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
}

.me-card-quota {
    text-align: right;
    flex-shrink: 0;
}

.me-card-quota-number {
    font-size: 28px;
    font-weight: 800;
    color: #FFD166;
    letter-spacing: -1px;
    line-height: 1;
}

.me-card-quota-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 4px;
}

.me-card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.me-card-stat {
    padding: 6px 8px;
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
}

.me-card-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 6px;
}

.me-card-stat-value {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
    word-break: break-word;
}

.me-card-stat:last-child .me-card-stat-value {
    color: #B8A0FF;
    font-size: 13px;
}

.me-quota-warning {
    margin-bottom: 12px;
}

.me-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.me-card-action-btn {
    padding: 6px 0;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.me-card-action-btn.primary {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #fff;
}

.me-card-action-btn.primary:active {
    transform: scale(0.97);
    opacity: 0.85;
}

.me-card-action-btn.secondary {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.me-card-action-btn.secondary:active {
    transform: scale(0.97);
    opacity: 0.85;
}

/* 菜单列表 */
.me-menu-list {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
}

.me-menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.me-menu-item:active {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(0.98);
}

.me-menu-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.me-menu-icon.card {
    background: linear-gradient(135deg, rgba(230, 150, 10, 0.9), rgba(210, 120, 8, 0.9));
}

.me-menu-icon.guide {
    background: linear-gradient(135deg, rgba(52, 115, 220, 0.9), rgba(82, 148, 230, 0.9));
}

.me-menu-icon.about {
    background: linear-gradient(135deg, rgba(110, 80, 228, 0.9), rgba(150, 125, 230, 0.9));
}

.me-menu-icon.feedback {
    background: linear-gradient(135deg, rgba(14, 163, 115, 0.9), rgba(45, 190, 140, 0.9));
}

.me-menu-text {
    flex: 1;
    min-width: 0;
}

.me-menu-title {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2px;
}

.me-menu-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.me-menu-arrow {
    color: rgba(255, 255, 255, 0.2);
    font-size: 18px;
    flex-shrink: 0;
}

/* 底部 */
.me-footer-wrap {
    padding: 0 16px;
    text-align: center;
}

.me-logout-btn {
    display: block;
    width: calc(100% - 32px);
    margin: 0 auto 12px;
    padding: 11px 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.me-logout-btn:active {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(0.98);
}

.me-footer {
    padding: 8px 0 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.15);
}

.me-footer a {
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
}

/* 额度警告 */
.quota-warning {
    padding: 12px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 10px;
}

.quota-warning-title {
    font-size: 13px;
    font-weight: 600;
    color: #EF4444;
    margin-bottom: 4px;
}

.quota-warning-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 480px) {
    .me-card {
        margin: 0 12px 16px;
        padding: 18px 16px 14px;
    }

    .me-menu-list {
        padding: 0 12px;
    }

    .me-logout-btn {
        width: calc(100% - 24px);
        margin: 8px 12px 14px;
    }
}