/* ===== 1. 全局变量 ===== */
:root {
    --honor-bg1: #080b30;
    --honor-bg2: #0b1046;
    --honor-gold: #f3b014;
    --honor-gold-light: #ffd866;
    --honor-gold-dark: #c48a0c;
    --honor-red: #8b0000;
    --honor-red-light: #cc2222;
    --honor-card-bg: rgba(11, 16, 50, 0.85);
    --honor-card-border: rgba(243, 176, 20, 0.15);
    --honor-text: #c8c8d0;
    --honor-text-dim: #8888a0;
    --honor-glow-tier1: rgba(243, 176, 20, 0.6);
    --honor-glow-tier2: rgba(243, 176, 20, 0.3);
    --honor-glow-tier3: rgba(180, 140, 60, 0.2);
    --honor-glow-tier4: rgba(100, 100, 140, 0.15);
}

/* ===== 2. 页面容器 ===== */
.honor-section {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 130px 20px 100px;
}

/* ===== 3. 标题区域 ===== */
.honor-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 30px;
}
.honor-header h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--honor-gold-light), var(--honor-gold), var(--honor-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(243,176,20,0.3));
    animation: titleShimmer 4s ease-in-out infinite;
    margin: 0 0 15px 0;
}
@keyframes titleShimmer {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(243,176,20,0.3)); }
    50% { filter: drop-shadow(0 0 40px rgba(243,176,20,0.6)) drop-shadow(0 0 60px rgba(243,176,20,0.2)); }
}
.honor-header p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--honor-text-dim);
    letter-spacing: 3px;
    margin: 0 0 25px 0;
}
.honor-divider {
    width: 120px;
    height: 2px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--honor-gold), transparent);
    position: relative;
    animation: dividerShift 3s ease-in-out infinite;
}
.honor-divider::before,
.honor-divider::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--honor-gold);
    font-size: 0.6rem;
    animation: dividerDiamond 2s ease-in-out infinite;
}
.honor-divider::before { left: -8px; }
.honor-divider::after { right: -8px; animation-delay: 1s; }
@keyframes dividerShift {
    0%, 100% { opacity: 0.6; width: 120px; }
    50% { opacity: 1; width: 160px; }
}
@keyframes dividerDiamond {
    0%, 100% { opacity: 0.3; transform: translateY(-50%) scale(0.8); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.2); }
}

/* ===== 4. 卡片网格 ===== */
.honor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding: 10px 0;
}

/* ===== 5. 通用卡片样式 ===== */
.honor-card {
    position: relative;
    border-radius: 16px;
    background: var(--honor-card-bg);
    border: 1px solid var(--honor-card-border);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.4s ease, 
                border-color 0.4s ease;
    cursor: default;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    perspective: 800px;
    transform-style: preserve-3d;
}
.honor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(243,176,20,0.4), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}
.honor-card:hover::before {
    left: 100%;
}
.honor-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border-color: rgba(243,176,20,0.3);
}

/* 卡片内部 */
.honor-card-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 20px 24px;
    text-align: center;
    transform-style: preserve-3d;
}

/* 排名徽标 */
.honor-rank-badge {
    position: absolute;
    top: 10px;
    right: 12px;
    background: linear-gradient(135deg, rgba(243,176,20,0.25), rgba(243,176,20,0.05));
    color: var(--honor-gold);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    border: 1px solid rgba(243,176,20,0.2);
    letter-spacing: 1px;
}

/* 头像区域 */
.honor-avatar-wrap {
    position: relative;
    margin-bottom: 14px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateZ(20px);
}
.honor-avatar-ring {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(243,176,20,0.2);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.honor-avatar-wrap img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
    flex-shrink: 0;
}
.honor-card:hover .honor-avatar-wrap img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Avatar fallback CSS */
.avatar-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(243,176,20,0.2), rgba(243,176,20,0.05));
    border: 2px solid rgba(243,176,20,0.3);
    color: var(--honor-gold);
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(243,176,20,0.5);
    flex-shrink: 0;
}
.honor-card.tier-1 .avatar-fallback {
    width: 90px;
    height: 90px;
    border-color: var(--honor-gold);
    box-shadow: 0 0 15px rgba(243,176,20,0.3);
}

/* ===== 名字与称号 ===== */
.honor-card-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #eee;
    letter-spacing: 1px;
    line-height: 1.3;
    margin: 0;
    transform: translateZ(15px);
}
.honor-card-rank {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--honor-text-dim);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 6px;
    transform: translateZ(10px);
}

/* ===== 扫描线装饰 ===== */
.card-scanline {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(255,255,255,0.02) 50%);
    background-size: 100% 4px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 3;
}
.honor-card:hover .card-scanline {
    opacity: 1;
    animation: scanMove 0.8s linear infinite;
}
@keyframes scanMove {
    0% { background-position: 0 0; }
    100% { background-position: 0 4px; }
}

/* ===== 6. Tier 1 — 至尊金主 ===== */
.honor-card.tier-1 {
    background: linear-gradient(135deg, rgba(20,18,40,0.95), rgba(30,25,15,0.9));
    border-color: rgba(243,176,20,0.4);
    box-shadow: 0 0 30px rgba(243,176,20,0.15), 
                inset 0 0 30px rgba(243,176,20,0.05);
}
.honor-card.tier-1::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(243,176,20,0.3),
        rgba(255,216,102,0.5),
        rgba(243,176,20,0.3),
        transparent
    );
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
    animation: tier1BorderSpin 4s linear infinite;
    pointer-events: none;
    z-index: 1;
}
@keyframes tier1BorderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.honor-card.tier-1::before {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--honor-gold-light), transparent);
}
.honor-card.tier-1:hover {
    box-shadow: 0 0 50px rgba(243,176,20,0.3),
                0 0 80px rgba(243,176,20,0.15),
                inset 0 0 40px rgba(243,176,20,0.05);
    border-color: rgba(243,176,20,0.6);
    transform: translateY(-8px) scale(1.03);
}
.honor-card.tier-1 .honor-tier-badge {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: 32px;
    height: 20px;
    filter: drop-shadow(0 0 6px rgba(243,176,20,0.6));
    animation: tier1Crown 2s ease-in-out infinite;
}
@keyframes tier1Crown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-4px); }
}
.honor-card.tier-1 .honor-avatar-ring {
    border-color: rgba(243,176,20,0.5);
    box-shadow: 0 0 12px rgba(243,176,20,0.25);
    animation: ringSpin 6s linear infinite;
}
@keyframes ringSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.honor-card.tier-1 .honor-avatar-wrap {
    width: 100px;
    height: 100px;
}
.honor-card.tier-1 .honor-avatar-wrap img {
    width: 88px;
    height: 88px;
}
.honor-card.tier-1 .honor-card-name {
    color: var(--honor-gold-light);
    text-shadow: 0 0 15px rgba(243,176,20,0.3);
    font-size: 1.15rem;
}
.honor-card.tier-1 .honor-card-glow {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(ellipse at 50% 0%, rgba(243,176,20,0.08), transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: tier1Breath 3s ease-in-out infinite;
}
@keyframes tier1Breath {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}
.honor-card.tier-1 .honor-particle-halo {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: haloDrift 8s ease-in-out infinite;
}
.honor-card.tier-1 .honor-particle-halo::before,
.honor-card.tier-1 .honor-particle-halo::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--honor-gold-light);
    opacity: 0;
    box-shadow: 0 0 6px var(--honor-gold);
}
.honor-card.tier-1 .honor-particle-halo::before {
    top: 10%;
    left: 20%;
    animation: haloParticle1 4s ease-in-out infinite;
}
.honor-card.tier-1 .honor-particle-halo::after {
    top: 60%;
    right: 15%;
    animation: haloParticle2 5s ease-in-out infinite;
    animation-delay: 1.5s;
}
@keyframes haloDrift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-5px, -5px); }
}
@keyframes haloParticle1 {
    0%, 100% { opacity: 0; transform: translate(0, 0); }
    25% { opacity: 1; }
    75% { opacity: 1; }
    100% { opacity: 0; transform: translate(10px, -20px); }
}
@keyframes haloParticle2 {
    0%, 100% { opacity: 0; transform: translate(0, 0); }
    25% { opacity: 0.8; }
    75% { opacity: 0.6; }
    100% { opacity: 0; transform: translate(-15px, -10px); }
}

/* ===== 7. Tier 2 — 闪耀支持者 ===== */
.honor-card.tier-2 {
    border-color: rgba(243,176,20,0.25);
    background: linear-gradient(135deg, rgba(20,18,35,0.92), rgba(25,22,18,0.85));
    box-shadow: 0 0 15px rgba(243,176,20,0.05), inset 0 0 15px rgba(243,176,20,0.02);
}
.honor-card.tier-2::before {
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(243,176,20,0.35), transparent);
}
.honor-card.tier-2:hover {
    box-shadow: 0 0 40px rgba(243,176,20,0.18), 0 0 60px rgba(243,176,20,0.08), inset 0 0 30px rgba(243,176,20,0.03);
    border-color: rgba(243,176,20,0.5);
    transform: translateY(-6px) scale(1.02);
}
.honor-card.tier-2::after {
    content: '';
    position: absolute;
    inset: -1.5px;
    border-radius: 17px;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(243,176,20,0.2),
        rgba(255,216,102,0.3),
        rgba(243,176,20,0.2),
        transparent
    );
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1.5px;
    animation: tier2Border 5s linear infinite;
    pointer-events: none;
    z-index: 1;
}
@keyframes tier2Border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.honor-card.tier-2 .honor-avatar-ring {
    border-color: rgba(243,176,20,0.35);
    box-shadow: 0 0 6px rgba(243,176,20,0.1);
    animation: tier2RingPulse 3s ease-in-out infinite;
}
@keyframes tier2RingPulse {
    0%, 100% { box-shadow: 0 0 2px rgba(243,176,20,0.05); }
    50% { box-shadow: 0 0 12px rgba(243,176,20,0.2); }
}
.honor-card.tier-2 .honor-card-name {
    color: var(--honor-gold-light);
    text-shadow: 0 0 8px rgba(243,176,20,0.15);
}
.honor-card.tier-2 .honor-card-glow {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(ellipse at 50% 0%, rgba(243,176,20,0.04), transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: tier2Breath 4s ease-in-out infinite;
}
@keyframes tier2Breath {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.9; }
}

/* ===== 8. Tier 3 — 荣誉成员 ===== */
.honor-card.tier-3 {
    border-color: rgba(180,140,60,0.2);
    background: linear-gradient(135deg, rgba(15,16,30,0.88), rgba(18,18,22,0.82));
}
.honor-card.tier-3::before {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(180,140,60,0.2), transparent);
}
.honor-card.tier-3:hover {
    box-shadow: 0 12px 45px rgba(0,0,0,0.5), 0 0 20px rgba(180,140,60,0.06);
    border-color: rgba(180,140,60,0.4);
    transform: translateY(-4px) scale(1.01);
}
.honor-card.tier-3 .honor-avatar-ring {
    border-color: rgba(180,140,60,0.2);
    width: 86px;
    height: 86px;
    animation: tier3RingGlow 4s ease-in-out infinite;
}
@keyframes tier3RingGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(180,140,60,0); border-color: rgba(180,140,60,0.2); }
    50% { box-shadow: 0 0 6px rgba(180,140,60,0.1); border-color: rgba(180,140,60,0.35); }
}
.honor-card.tier-3:hover .honor-avatar-ring {
    border-color: rgba(180,140,60,0.45);
    box-shadow: 0 0 12px rgba(180,140,60,0.2);
}
.honor-card.tier-3 .honor-card-name {
    color: #d4c8a0;
}
.honor-card.tier-3 .honor-card-glow {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(ellipse at 50% 0%, rgba(180,140,60,0.03), transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: tier3Breath 5s ease-in-out infinite;
}
@keyframes tier3Breath {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* ===== 9. Tier 4 — 新晋赞助 ===== */
.honor-card.tier-4 {
    border-color: rgba(100,100,140,0.15);
    background: linear-gradient(135deg, rgba(12,13,26,0.85), rgba(14,14,20,0.8));
}
.honor-card.tier-4::before {
    height: 1px;
    opacity: 0.4;
    background: linear-gradient(90deg, transparent, rgba(100,100,140,0.15), transparent);
}
.honor-card.tier-4:hover {
    box-shadow: 0 12px 45px rgba(0,0,0,0.5), 0 0 12px rgba(100,100,140,0.05);
    border-color: rgba(100,100,140,0.35);
    transform: translateY(-3px) scale(1.01);
}
.honor-card.tier-4 .honor-avatar-ring {
    border-color: rgba(100,100,140,0.15);
    width: 86px;
    height: 86px;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.honor-card.tier-4:hover .honor-avatar-ring {
    border-color: rgba(100,100,140,0.3);
    box-shadow: 0 0 6px rgba(100,100,140,0.1);
}
.honor-card.tier-4 .honor-card-name {
    color: #b0b0c0;
}

/* ===== 爆裂粒子 ===== */
.burst-dot {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: burstFly 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes burstFly {
    0% { opacity: 1; transform: translate(0, 0) scale(1); }
    100% { opacity: 0; transform: translate(var(--bx), var(--by)) scale(0.2); }
}

/* ===== 粒子背景画布 ===== */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ===== 增强入场动画 ===== */
.honor-card {
    opacity: 0;
}
.honor-card.honor-card-revealed {
    animation: cardReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--enter-delay, 0s);
}
@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translate(var(--from-x, 0px), var(--from-y, 30px)) scale(var(--from-scale, 1));
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* ===== 10. 响应式 ===== */
@media (max-width: 1200px) {
    .honor-grid { gap: 20px; }
}
@media (max-width: 768px) {
    .honor-section { padding: 110px 16px 70px; }
    .honor-header { margin-bottom: 35px; }
    .honor-grid { 
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }
    .honor-card-inner { padding: 22px 16px 20px; }
    .honor-card.tier-1 .honor-card-name { font-size: 1.05rem; }
}
@media (max-width: 480px) {
    .honor-section { padding: 100px 12px 50px; }
    .honor-grid { 
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .honor-card-inner { padding: 18px 14px 16px; }
}
/* ===== 11. 会员赞助权益表 ★ 核心变现 ===== */
.tier-benefits-section {
    position: relative;
    padding: 70px 20px 50px;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}
/* . . . 金色粒子闪烁层 . . . */
.tier-benefits-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(243,176,20,0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 50%, rgba(243,176,20,0.5) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 50% 10%, rgba(243,176,20,0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 40%, rgba(243,176,20,0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 85% 70%, rgba(243,176,20,0.6) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 20% 80%, rgba(243,176,20,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 15%, rgba(243,176,20,0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 45% 90%, rgba(243,176,20,0.6) 0%, transparent 100%);
    animation: tierSparkle 5s ease-in-out infinite;
}
@keyframes tierSparkle {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}
/* . . . 顶部流光扫描线 . . . */
.tier-benefits-section::after {
    content: '';
    position: absolute;
    top: 0; left: 5%; right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f3b014, #ffd700, #f3b014, transparent);
    opacity: 0.8;
    animation: tierScan 4s ease-in-out infinite;
}
@keyframes tierScan {
    0%, 100% { transform: scaleX(0.3); opacity: 0.3; }
    50% { transform: scaleX(1); opacity: 1; }
}
.tier-benefits-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}
/* . . . 流光金色标题 . . . */
.tier-benefits-section .section-title h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    letter-spacing: 6px;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #f3b014, #ffd700, #f3b014, #daa520, #f3b014);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: tierShimmer 4s linear infinite;
}
@keyframes tierShimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}
.tier-benefits-section .section-title p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    letter-spacing: 2px;
}
/* . . . 表格外框 - 呼吸光晕 . . . */
.tier-table-wrapper {
    position: relative;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(243,176,20,0.2);
    background: rgba(11,4,70,0.6);
    backdrop-filter: blur(6px);
    box-shadow: 0 0 20px rgba(243,176,20,0.05);
    animation: tierBorderGlow 3s ease-in-out infinite;
    /* hide scrollbar while keeping scroll functionality */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.tier-table-wrapper::-webkit-scrollbar { display: none; }
@keyframes tierBorderGlow {
    0%, 100% { border-color: rgba(243,176,20,0.2); box-shadow: 0 0 20px rgba(243,176,20,0.05); }
    50% { border-color: rgba(243,176,20,0.5); box-shadow: 0 0 40px rgba(243,176,20,0.12), 0 0 80px rgba(243,176,20,0.06); }
}
/* . . . 表格内扫描光效 . . . */
.tier-table-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(243,176,20,0.04) 50%, transparent 100%);
    pointer-events: none;
    animation: tierRowScan 6s ease-in-out infinite;
    z-index: 2;
}
@keyframes tierRowScan {
    0% { transform: translateY(-100%); }
    30%, 70% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}
.tier-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    min-width: 640px;
}
/* . . . 列头 - 金色渐变 + 悬停光晕 . . . */
.tier-table th {
    background: linear-gradient(180deg, rgba(243,176,20,0.12) 0%, rgba(243,176,20,0.04) 100%);
    color: #f3b014;
    padding: 16px 14px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(243,176,20,0.2);
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}
.tier-table th:not(:first-child)::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(243,176,20,0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}
.tier-table th:not(:first-child):hover::after { opacity: 1; }
.tier-table th:not(:first-child):hover {
    background: linear-gradient(180deg, rgba(243,176,20,0.25) 0%, rgba(243,176,20,0.1) 100%);
    text-shadow: 0 0 20px rgba(243,176,20,0.6);
}
.tier-table th:first-child {
    text-align: left;
    color: #ccc;
    background: rgba(255,255,255,0.03);
}
.tier-table td {
    padding: 12px 14px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.75);
    transition: all 0.25s ease;
    position: relative;
}
/* . . . 行入场动画 . . . */
.tier-table tbody tr {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tier-table tbody tr.tier-visible {
    opacity: 1;
    transform: translateY(0);
}
.tier-table td:first-child {
    text-align: left;
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    background: rgba(255,255,255,0.02);
    font-weight: 500;
}
.tier-table tr:hover td {
    background: rgba(243,176,20,0.06);
}
.tier-table tr:hover td:first-child { color: #f3b014; }
.tier-table tr:last-child td { border-bottom: none; }
.tier-table .tier-crown {
    display: inline-block;
    margin-right: 4px;
    font-size: 0.85em;
    animation: tierCrownPulse 2s ease-in-out infinite;
}
@keyframes tierCrownPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; filter: drop-shadow(0 0 4px rgba(243,176,20,0.5)); }
}
/* . . . 对勾标记动画 . . . */
.tier-table td .tier-check {
    display: inline-block;
    animation: tierCheckPop 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
    opacity: 0;
    transform: scale(0);
}
@keyframes tierCheckPop {
    0% { opacity: 0; transform: scale(0); }
    60% { opacity: 1; transform: scale(1.15); }
    100% { opacity: 1; transform: scale(1); }
}

/* ===== 每日礼包 合并单元格 ===== */
.tier-table td.tier-merge {
    text-align: center;
    white-space: nowrap;
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* ===== 12. 赞助商城 ===== */
.shop-section {
    position: relative;
    padding: 50px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}

.shop-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}
.shop-section .section-title h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: #f3b014;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(243,176,20,0.3);
    margin-bottom: 8px;
}
.shop-section .section-title p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* ===== 赞助声明（非商品） ===== */
.shop-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(139,0,0,0.12), rgba(139,0,0,0.04));
    border: 1px solid rgba(255,60,60,0.2);
    border-radius: 8px;
    padding: 14px 24px;
    margin-bottom: 28px;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}
.shop-notice:hover {
    border-color: rgba(255,60,60,0.35);
    background: linear-gradient(135deg, rgba(139,0,0,0.18), rgba(139,0,0,0.07));
}
.shop-notice-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    line-height: 1;
}
.shop-notice-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .shop-notice { flex-wrap: wrap; text-align: center; gap: 8px; padding: 12px 16px; }
    .shop-notice-text { white-space: normal; font-size: 0.82rem; }
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}
.shop-card {
    text-align: center;
    background: rgba(11,4,70,0.5);
    border: 1px solid rgba(243,176,20,0.1);
    border-radius: 10px;
    padding: 22px 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.shop-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f3b014, transparent);
    opacity: 0.4;
}
.shop-card:hover {
    border-color: rgba(243,176,20,0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(243,176,20,0.1);
    background: rgba(11,4,70,0.7);
}
.shop-card .item-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    margin: 0 auto 14px;
    background: linear-gradient(145deg, rgba(243,176,20,0.2), rgba(243,176,20,0.04));
    border: 1px solid rgba(243,176,20,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: shopIconPulse 3s ease-in-out infinite;
}
.shop-card .item-icon svg {
    width: 28px;
    height: 28px;
    display: block;
    filter: drop-shadow(0 0 6px rgba(243,176,20,0.5));
}
@keyframes shopIconPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(243,176,20,0.1); }
    50% { box-shadow: 0 0 18px rgba(243,176,20,0.25); }
}
.shop-card .item-name {
    color: #f3b014;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.shop-card .item-price {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.shop-card .item-duration {
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
    margin-bottom: 8px;
}
.shop-card .item-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    line-height: 1.5;
}

/* ===== 商城响应式 ===== */
@media (max-width: 768px) {
    .tier-benefits-section { padding: 40px 14px; }
    .shop-section { padding: 30px 14px 60px; }
    .shop-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
    .tier-table { font-size: 0.78rem; }
    .tier-table th, .tier-table td { padding: 10px 8px; }
}

/* ===== Footer visibility fix ===== */
.footer-area {
    background-color: #080a30 !important;
    background-image: none !important;
    position: relative !important;
    z-index: 1;
    border-top: 2px solid rgba(243,176,20,0.15);
}
.footer-area .copyright-area {
    background-color: #151854 !important;
    padding: 22px 0 !important;
}

/* ===== Accessibility: prefers-reduced-motion ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .honor-card {
        opacity: 1 !important;
        transform: none !important;
    }
    .tier-table tbody tr {
        opacity: 1 !important;
        transform: none !important;
    }
    #particleCanvas { display: none !important; }
    /* .honor-bg-layer and .bg-grid-overlay removed (dead CSS) */
    .honor-card-glow, .honor-particle-halo,
    .card-scanline {
        display: none !important;
    }
}

/* ===== Keyboard focus ===== */
:focus-visible {
    outline: 2px solid var(--honor-gold);
    outline-offset: 3px;
    border-radius: 4px;
}