/* GVF - 全球综艺盛典投票系统主样式
 * 轻奢高级感设计 - 莫兰迪色系 + 烫金装饰 + 丝绒肌理
 */

/* ==================== 莫兰迪色系定义 ==================== */
:root {
    --morandi-beige: #E8DDD4;      /* 米色背景 */
    --morandi-blush: #D4C4B7;      /* 藕粉色 */
    --morandi-sage: #A8B5A0;       /* 鼠尾草绿 */
    --morandi-blue: #9CA8B8;       /* 莫兰迪蓝 */
    --morandi-rose: #C9A8A5;       /* 玫瑰粉 */
    --morandi-gold: #C4A962;       /* 莫兰迪金 */
    --morandi-charcoal: #4A4A4A;   /* 深灰 */
    --morandi-cream: #F5F0E8;      /* 奶油色 */
    --morandi-lavender: #B8A9C9;   /* 薰衣草紫 */

    /* 烫金装饰 */
    --gold-linear: linear-gradient(135deg, #D4AF37 0%, #F4E4BA 25%, #D4AF37 50%, #C4A962 75%, #D4AF37 100%);
    --gold-solid: #D4AF37;
    --gold-light: #F4E4BA;
    --gold-dark: #C4A962;

    /* 丝绒效果 */
    --velvet-dark: #1A1A1A;
    --velvet-overlay: rgba(0, 0, 0, 0.6);
    --velvet-gradient: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);

    /* 字体 */
    --font-primary: 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    --font-serif: 'Playfair Display', 'Georgia', 'Times New Roman', serif;

    /* 阴影和光效 */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.2);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.12);
    --glow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* ==================== 侧边栏样式 ==================== */
.side-column {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 100px;
}

/* 左侧热门艺人列表 */
.side-artist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s;
    cursor: pointer;
}

.side-artist-item:hover {
    background: rgba(196, 169, 98, 0.15);
    transform: translateX(5px);
}

.side-artist-rank {
    font-size: 20px;
    font-weight: bold;
    width: 30px;
    text-align: center;
    color: var(--morandi-gold);
}

.side-artist-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--morandi-gold);
}

.side-artist-info {
    flex: 1;
}

.side-artist-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--morandi-cream);
    margin-bottom: 4px;
}

.side-artist-votes {
    font-size: 12px;
    color: var(--morandi-gold);
}

/* 右侧热门选手列表 */
.side-contestant-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s;
}

.side-contestant-item:hover {
    background: rgba(196, 169, 98, 0.15);
}

.side-contestant-rank {
    font-size: 16px;
    font-weight: bold;
    color: var(--morandi-gold);
    display: flex;
    align-items: center;
}

.side-contestant-info {
    flex: 1;
}

.side-contestant-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--morandi-cream);
    margin-bottom: 4px;
}

.side-contestant-talent {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
}

.side-contestant-city {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
}

.side-contestant-video {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    font-size: 11px;
    text-decoration: none;
    transition: all 0.3s;
}

.side-contestant-video:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* 响应式布局 */
@media (max-width: 1200px) {
    .side-column {
        position: static;
    }
}

/* ==================== 全局重置 ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background: var(--morandi-beige);
    background-image: 
        /* 丝绒肌理效果 */
        radial-gradient(ellipse at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(156, 168, 184, 0.08) 0%, transparent 50%),
        /* 烫金质感渐变层 */
        linear-gradient(135deg, rgba(255,215,0,0.05) 0%, rgba(212,175,55,0.08) 50%, rgba(255,215,0,0.05) 100%);
    color: var(--morandi-charcoal);
    line-height: 1.6;
    min-height: 100vh;
}

/* ==================== 烫金线条装饰 ==================== */
.gold-border {
    border: 1px solid;
    border-image: var(--gold-linear) 1;
}

.gold-border-bottom {
    border-bottom: 2px solid;
    border-image: var(--gold-linear) 1;
}

.gold-line {
    height: 2px;
    background: var(--gold-linear);
    margin: 20px 0;
}

.gold-text {
    background: var(--gold-linear);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

/* ==================== 丝绒背景 ==================== */
.velvet-bg {
    background: var(--velvet-dark);
    background-image: 
        linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%),
        linear-gradient(45deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    color: var(--morandi-cream);
}

.velvet-overlay {
    position: relative;
}

.velvet-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--velvet-gradient);
    pointer-events: none;
}

/* ==================== 导航栏 ==================== */
.navbar {
    background: rgba(18, 18, 18, 0.97);
    backdrop-filter: blur(16px);
    padding: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

/* 顶部烫金细线装饰 */
.navbar::before {
    content: '';
    display: block;
    height: 2px;
    background: var(--gold-linear);
    width: 100%;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    background: var(--gold-linear);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: rgba(245, 240, 232, 0.82);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-linear);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--morandi-gold);
}

.nav-links a.gold-text {
    color: var(--morandi-gold);
}

/* 充值按钮特殊样式 */
.nav-links .btn-recharge {
    background: var(--gold-linear);
    color: #1A1A1A !important;
    padding: 6px 18px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 2px 12px rgba(212,175,55,0.35);
    transition: all 0.3s;
}
.nav-links .btn-recharge:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(212,175,55,0.5);
}
.nav-links .btn-recharge::after { display: none; }

.lang-switch {
    display: flex;
    gap: 8px;
}

.lang-btn {
    padding: 6px 14px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    background: transparent;
    color: rgba(245, 240, 232, 0.75);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    border-radius: 2px;
    letter-spacing: 1px;
}

.lang-btn.active, .lang-btn:hover {
    background: var(--morandi-gold);
    color: #1A1A1A;
    border-color: var(--morandi-gold);
    box-shadow: 0 2px 12px rgba(212,175,55,0.3);
}

/* 登录/注册按钮在深色导航栏上的适配 */
.auth-buttons .btn-secondary {
    border-color: rgba(212, 175, 55, 0.5);
    color: rgba(245, 240, 232, 0.8);
    background: transparent;
}
.auth-buttons .btn-secondary:hover {
    border-color: var(--morandi-gold);
    color: var(--morandi-gold);
    background: rgba(212,175,55,0.08);
}
.auth-buttons .btn-primary {
    background: var(--gold-linear);
    color: #1A1A1A;
}

/* 搜索框在深色导航栏上完美融合 */
.search-bar-wrapper {
    background: rgba(255,255,255,0.07) !important;
    border-color: rgba(212,175,55,0.35) !important;
}
.search-bar-wrapper:focus-within {
    background: rgba(255,255,255,0.12) !important;
    border-color: var(--morandi-gold) !important;
}

/* ==================== Hero区域 ==================== */
.hero {
    min-height: 600px;
    background: var(--velvet-dark);
    background-image: 
        linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 64px;
    font-weight: 700;
    color: var(--morandi-cream);
    margin-bottom: 20px;
    letter-spacing: 8px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 28px;
    color: var(--morandi-gold);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 4px;
}

.hero-subtitle-en {
    font-size: 18px;
    color: var(--morandi-blue);
    opacity: 0.9;
    letter-spacing: 6px;
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.hero-decoration::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.hero-decoration::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 181, 160, 0.1) 0%, transparent 70%);
}

/* ==================== 金色分割线 ==================== */
.gold-divider {
    height: 4px;
    background: var(--gold-linear);
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.gold-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

/* ==================== 按钮样式 ==================== */
.btn {
    display: inline-block;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold-linear);
    color: white;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--morandi-charcoal);
    border: 1px solid var(--morandi-gold);
}

.btn-secondary:hover {
    background: var(--morandi-gold);
    color: white;
}

.btn-gold {
    background: var(--gold-linear);
    color: white;
    font-size: 18px;
    padding: 16px 50px;
    letter-spacing: 2px;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

/* ==================== 卡片样式 ==================== */
.card {
    background: white;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-linear);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-5px);
}

.card:hover::before {
    opacity: 1;
}

.card-body {
    padding: 25px;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--morandi-charcoal);
    margin-bottom: 15px;
    font-weight: 600;
}

.card-text {
    color: var(--morandi-charcoal);
    opacity: 0.8;
    line-height: 1.7;
    font-size: 15px;
}

/* ==================== 艺人卡片 ==================== */
.artist-card {
    background: white;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.artist-card:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-8px);
}

.artist-cover {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.artist-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.artist-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: var(--velvet-gradient);
    color: white;
}

.artist-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--morandi-gold);
    object-fit: cover;
    position: absolute;
    top: -40px;
    right: 20px;
    box-shadow: var(--shadow-soft);
}

.artist-info {
    padding: 25px;
    padding-top: 20px;
}

.artist-name {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--morandi-charcoal);
    margin-bottom: 5px;
    font-weight: 600;
}

.artist-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--morandi-beige);
    color: var(--morandi-charcoal);
    font-size: 12px;
    border-radius: 2px;
    margin-bottom: 10px;
}

.artist-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--morandi-beige);
}

.artist-stat {
    text-align: center;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--morandi-gold);
}

.stat-label {
    font-size: 12px;
    color: var(--morandi-charcoal);
    opacity: 0.7;
}

/* ==================== 排行榜 ==================== */
.ranking-section {
    padding: 80px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 42px;
    text-align: center;
    color: var(--morandi-charcoal);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--morandi-gold);
    font-size: 18px;
    margin-bottom: 60px;
    letter-spacing: 4px;
}

.ranking-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.ranking-tab {
    padding: 12px 30px;
    background: white;
    border: 1px solid var(--morandi-beige);
    color: var(--morandi-charcoal);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.ranking-tab.active, .ranking-tab:hover {
    background: var(--morandi-gold);
    color: white;
    border-color: var(--morandi-gold);
    box-shadow: var(--shadow-gold);
}

.ranking-list {
    background: white;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.ranking-item {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid var(--morandi-beige);
    transition: background 0.3s ease;
}

.ranking-item:last-child {
    border-bottom: none;
}

.ranking-item:hover {
    background: var(--morandi-cream);
}

.ranking-rank {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    width: 60px;
    color: var(--morandi-charcoal);
}

.ranking-item:nth-child(1) .ranking-rank {
    color: var(--morandi-gold);
    font-size: 40px;
    text-shadow: var(--glow-gold);
}

.ranking-item:nth-child(2) .ranking-rank {
    color: var(--morandi-rose);
}

.ranking-item:nth-child(3) .ranking-rank {
    color: var(--morandi-lavender);
}

.ranking-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 20px;
    border: 2px solid var(--morandi-gold);
}

.ranking-info {
    flex: 1;
}

.ranking-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--morandi-charcoal);
    margin-bottom: 5px;
}

.ranking-category {
    font-size: 14px;
    color: var(--morandi-charcoal);
    opacity: 0.7;
}

.ranking-votes {
    text-align: right;
}

.vote-count {
    font-size: 28px;
    font-weight: 700;
    color: var(--morandi-gold);
}

.vote-label {
    font-size: 12px;
    color: var(--morandi-charcoal);
    opacity: 0.7;
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .nav-links {
        display: none;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .ranking-item {
        padding: 15px;
    }
    
    .ranking-rank {
        font-size: 24px;
        width: 40px;
    }
    
    .ranking-avatar {
        width: 50px;
        height: 50px;
        margin: 0 15px;
    }
}

/* ==================== 动画效果 ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ==================== 深色主题适配（综艺界奥运会风格） ==================== */

/* 深色背景下 body 默认文字适配 */
body {
    background: #111111;
    color: var(--morandi-cream);
}

/* 艺人卡片深色适配 */
.artist-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--morandi-cream);
}
.artist-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(212,175,55,0.35);
}
.artist-name {
    color: var(--morandi-cream);
}
.artist-category {
    background: rgba(255,255,255,0.08);
    color: rgba(245,240,232,0.7);
}
.artist-stats {
    border-top-color: rgba(255,255,255,0.08);
}
.stat-label {
    color: rgba(255,255,255,0.5);
}

/* 排行榜条目深色适配 */
.ranking-item:hover {
    background: rgba(212,175,55,0.06);
}
.ranking-name {
    color: var(--morandi-cream);
}
.ranking-category {
    color: rgba(255,255,255,0.5);
}
.vote-label {
    color: rgba(255,255,255,0.5);
}

/* section-title 深色下的颜色 */
.section-title {
    color: var(--morandi-cream);
}

/* 分割线深色版本 */
.gold-divider {
    background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,0.5) 30%, #D4AF37 50%, rgba(212,175,55,0.5) 70%, transparent 100%);
}

/* 页脚深色适配 */
footer {
    background: #080808 !important;
    border-top: 1px solid rgba(212,175,55,0.15);
}

/* ==================== 导航下拉菜单 ==================== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    padding: 10px 0;
    display: inline-block;
}

/* 增加触摸区域的容错性 - 在菜单和触发器之间建立不可见的连接区域 */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
    z-index: 9998;
    pointer-events: auto;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    min-width: 180px;
    list-style: none;
    padding: 8px 0;
    z-index: 9999;
    box-shadow: 0 16px 48px rgba(0,0,0,0.55);
    /* 防止触摸时的闪烁 */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(212,175,55,0.3);
}

.nav-dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 13px;
    color: rgba(245,240,232,0.82) !important;
    white-space: nowrap;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    border-radius: 0;
    /* 增大触摸区域 */
    min-height: 44px;
    line-height: 20px;
    display: flex;
    align-items: center;
}

.nav-dropdown-menu li a::after { display: none !important; }

.nav-dropdown-menu li a:hover,
.nav-dropdown-menu li a:active {
    background: rgba(212,175,55,0.12);
    color: var(--morandi-gold) !important;
    padding-left: 24px;
}

/* 桌面端：hover 触发 */
@media (hover: hover) and (pointer: fine) {
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.active .nav-dropdown-menu {
        display: block;
        animation: dropFadeIn 0.2s ease;
    }
}

/* 触摸设备：点击触发 */
@media (hover: none) and (pointer: coarse) {
    .nav-dropdown.active .nav-dropdown-menu {
        display: block;
        animation: dropFadeIn 0.2s ease;
    }
}

/* 通用：active 状态也显示菜单 */
.nav-dropdown.active .nav-dropdown-menu {
    display: block;
    animation: dropFadeIn 0.2s ease;
}

@keyframes dropFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* 导航栏 gap 缩小，避免撑满 */
.nav-links {
    gap: 22px !important;
}

.nav-links > li > a,
.nav-links > li > .nav-dropdown-toggle {
    font-size: 14px !important;
}


/* 全局深色模式增强 */
html, body {
    background-color: #0e0e0e;
    color: var(--morandi-cream);
}

/* 导航栏新入口高亮 */
.nav-links a[href*="skit-zone"]:hover,
.nav-links a[href*="vote-by-region"]:hover,
.nav-links a[href*="artist-preferences"]:hover {
    color: var(--morandi-gold) !important;
}

/* 快捷入口卡片统一过渡 */
.quick-entry-card {
    display: block;
    padding: 18px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.12);
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
}
.quick-entry-card:hover {
    background: rgba(212,175,55,0.10);
    border-color: rgba(212,175,55,0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212,175,55,0.10);
}

/* 分类标签通用 */
.category-badge-gold {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 16px;
    font-size: 11px;
    color: var(--morandi-gold);
    letter-spacing: 1px;
}

/* 投票按钮统一样式（无依赖） */
.btn-vote-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: var(--gold-linear);
    color: #1a1a1a;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 2px;
    transition: all 0.3s;
}
.btn-vote-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,175,55,0.30);
}

/* 地区标签 flag-chip */
.flag-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    font-size: 12px;
    color: rgba(245,240,232,0.7);
}

/* 实时动态点 */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #ff4444;
}
.live-indicator::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff4444;
    animation: livePulse 1.2s infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

/* 艺人偏好管理页面 - 步骤进度条 */
.pref-progress {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
}
.pref-step {
    flex: 1;
    padding: 10px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(245,240,232,0.35);
    border-bottom: 2px solid rgba(255,255,255,0.06);
    transition: all 0.3s;
}
.pref-step.active {
    color: var(--morandi-gold);
    border-bottom-color: var(--morandi-gold);
}
.pref-step.done {
    color: rgba(212,175,55,0.6);
    border-bottom-color: rgba(212,175,55,0.3);
}

/* 服饰定制高亮 border */
.couture-highlight {
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 14px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(212,175,55,0.07) 0%, rgba(0,0,0,0) 100%);
}

/* 排行榜奖牌色 */
.medal-gold   { color: #FFD700; }
.medal-silver { color: #C0C0C0; }
.medal-bronze { color: #CD7F32; }

/* 视频举报按钮 */
.btn-report {
    padding: 6px 14px;
    background: transparent;
    border: 1px solid rgba(255,80,80,0.3);
    border-radius: 6px;
    color: rgba(255,100,100,0.7);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.25s;
}
.btn-report:hover {
    background: rgba(255,80,80,0.10);
    border-color: rgba(255,80,80,0.6);
    color: #ff6464;
}

/* 分类树多级展开 */
.sub-category-tree {
    padding-left: 16px;
    border-left: 2px solid rgba(212,175,55,0.15);
    margin: 8px 0;
}
.sub-cat-item {
    padding: 6px 12px;
    font-size: 13px;
    color: rgba(245,240,232,0.6);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
}
.sub-cat-item:hover, .sub-cat-item.active {
    background: rgba(212,175,55,0.10);
    color: var(--morandi-gold);
}

/* 支付档位按钮 */
.payment-tier-btn {
    padding: 20px 16px;
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(212,175,55,0.25);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}
.payment-tier-btn:hover, .payment-tier-btn.selected {
    background: rgba(212,175,55,0.12);
    border-color: var(--morandi-gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.08);
}
.payment-tier-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--morandi-gold);
}
.payment-tier-votes {
    font-size: 13px;
    color: rgba(245,240,232,0.6);
    margin-top: 4px;
}

/* 烫金线性装饰条 */
.gold-stripe {
    height: 2px;
    background: var(--gold-linear);
    width: 100%;
}
.gold-stripe-v {
    width: 2px;
    background: var(--gold-linear);
}

/* 城市应援官模板增强 */
.ambassador-city-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(212,175,55,0.08);
    border-radius: 10px;
    border: 1px solid rgba(212,175,55,0.15);
}
.ambassador-city-stat .stat-num {
    font-size: 24px;
    font-weight: 700;
    color: var(--morandi-gold);
}
.ambassador-city-stat .stat-text {
    font-size: 12px;
    color: rgba(245,240,232,0.5);
}

/* 应援粉丝等级福利图标 */
.fan-tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.fan-tier-1 { background: rgba(212,175,55,0.20); color: #FFD700; border: 1px solid rgba(212,175,55,0.35); }
.fan-tier-2 { background: rgba(192,192,192,0.15); color: #C0C0C0; border: 1px solid rgba(192,192,192,0.3); }
.fan-tier-3 { background: rgba(205,127,50,0.15); color: #CD7F32; border: 1px solid rgba(205,127,50,0.3); }

/* 响应式优化 */
@media (max-width: 900px) {
    .pref-layout { grid-template-columns: 1fr !important; }
    .page-body { grid-template-columns: 1fr !important; }
    .artists-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
    .artists-grid { grid-template-columns: 1fr !important; }
    .btn-vote-primary { width: 100%; justify-content: center; }
}

