/* ============================================
   绿茵纪元 (GreenEra) - 全局样式表
   CSS前缀: wc-
   设计风格: 绿茵战场科技风
   Mobile-First 响应式设计
   ============================================ */

/* --- CSS Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background-color: #0a0e1a;
    color: #e0e0e0;
    line-height: 1.7;
    overflow-x: hidden;
}
a { color: #FFD700; text-decoration: none; transition: color 0.3s ease; }
a:hover { color: #2E8B57; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* --- 占位符标记样式（开发时可见） --- */
.wc-placeholder { color: #FFD700; font-weight: bold; }

/* --- 全局容器 --- */
.wc-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
}

/* --- 导航栏 --- */
.wc-header {
    background: linear-gradient(135deg, #0d1333 0%, #191970 100%);
    padding: 12px 0;
    position: relative;
    z-index: 100;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}
.wc-header .wc-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wc-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.wc-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2E8B57, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: #0a0e1a;
}
.wc-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: 1px;
}
.wc-nav { display: none; }
.wc-nav.wc-nav-open { display: flex; }
.wc-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0d1333;
    padding: 10px 0;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    z-index: 99;
}
.wc-nav ul li a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}
.wc-nav ul li a:hover,
.wc-nav ul li a.wc-active {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.15);
}
.wc-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}
.wc-hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* --- Hero / Banner 通用 --- */
.wc-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.wc-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.wc-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,14,26,0.6) 0%, rgba(10,14,26,0.85) 100%);
    z-index: 1;
}
.wc-hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}
.wc-hero-content h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}
.wc-hero-content p {
    font-size: 1rem;
    color: #c0c0c0;
    max-width: 700px;
    margin: 0 auto 24px;
}
.wc-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}
.wc-btn-primary {
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    color: #fff;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.4);
}
.wc-btn-primary:hover {
    background: linear-gradient(135deg, #3CB371, #2E8B57);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 139, 87, 0.6);
    color: #fff;
}
.wc-btn-gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0a0e1a;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}
.wc-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    color: #0a0e1a;
}

/* --- 区块通用 --- */
.wc-section {
    padding: 50px 0;
}
.wc-section-title {
    text-align: center;
    margin-bottom: 36px;
}
.wc-section-title h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}
.wc-section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2E8B57, #FFD700);
    margin: 10px auto 0;
    border-radius: 2px;
}
.wc-section-title p {
    color: #a0a0a0;
    font-size: 0.95rem;
}

/* --- 倒计时模块 --- */
.wc-countdown-section {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.wc-countdown-wrap {
    position: relative;
    z-index: 2;
    padding: 30px 20px;
}
.wc-countdown-label {
    font-size: 1.2rem;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 2px;
}
.wc-countdown-timer {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.wc-countdown-item {
    background: rgba(25, 25, 112, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 15px 18px;
    min-width: 70px;
    backdrop-filter: blur(10px);
}
.wc-countdown-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: #FFD700;
    line-height: 1;
}
.wc-countdown-unit {
    font-size: 0.75rem;
    color: #a0a0a0;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.wc-countdown-match {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.wc-countdown-team {
    text-align: center;
}
.wc-countdown-team-name {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-top: 6px;
    font-weight: 600;
}
.wc-countdown-vs {
    font-size: 1.5rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* --- 比分墙 --- */
.wc-scoreboard {
    background: linear-gradient(180deg, #0d1333 0%, #0a0e1a 100%);
}
.wc-score-cards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}
.wc-score-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: rgba(25, 25, 112, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}
.wc-score-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.4);
}
.wc-score-card-status {
    font-size: 0.75rem;
    color: #2E8B57;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.wc-score-card-status.wc-live { color: #ff4444; }
.wc-score-card-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.wc-score-card-team { font-size: 0.9rem; font-weight: 600; }
.wc-score-card-result {
    font-size: 1.8rem;
    font-weight: 900;
    color: #FFD700;
    min-width: 60px;
}
.wc-score-card-time {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #888;
}

/* --- 竞猜擂台 --- */
.wc-guess-section {
    background: linear-gradient(135deg, #0a0e1a 0%, #0d1333 100%);
}
.wc-guess-arena {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.wc-guess-match {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}
.wc-guess-team {
    text-align: center;
    flex: 1;
}
.wc-guess-team-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-top: 8px;
}
.wc-guess-vs {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}
.wc-guess-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.wc-guess-btn {
    padding: 12px 28px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    background: rgba(25, 25, 112, 0.5);
    color: #FFD700;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.wc-guess-btn:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: #FFD700;
    transform: scale(1.05);
}
.wc-guess-progress {
    width: 100%;
    max-width: 500px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
}
.wc-guess-bar-win { background: #2E8B57; height: 100%; }
.wc-guess-bar-draw { background: #FFD700; height: 100%; }
.wc-guess-bar-lose { background: #cc3333; height: 100%; }

/* --- 专家锦囊 --- */
.wc-expert-section {
    background: #0a0e1a;
}
.wc-expert-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.wc-expert-card {
    background: rgba(25, 25, 112, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}
.wc-expert-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
}
.wc-expert-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.wc-expert-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2E8B57, #FFD700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #0a0e1a;
    font-size: 1.2rem;
}
.wc-expert-name { font-weight: 700; color: #e0e0e0; }
.wc-expert-rate {
    font-size: 0.8rem;
    color: #2E8B57;
    font-weight: 600;
}
.wc-expert-card p {
    font-size: 0.9rem;
    color: #a0a0a0;
    line-height: 1.6;
}

/* --- 赔率风向标 --- */
.wc-odds-section {
    background: linear-gradient(180deg, #0d1333 0%, #0a0e1a 100%);
}
.wc-odds-table {
    width: 100%;
    overflow-x: auto;
}
.wc-odds-table table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}
.wc-odds-table th {
    background: rgba(25, 25, 112, 0.6);
    color: #FFD700;
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: left;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}
.wc-odds-table td {
    padding: 12px 16px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.wc-odds-table tr:hover td {
    background: rgba(255, 215, 0, 0.03);
}
.wc-odds-up { color: #2E8B57; font-weight: 600; }
.wc-odds-down { color: #cc3333; font-weight: 600; }

/* --- 球星聚光灯 --- */
.wc-stars-section {
    background: #0a0e1a;
}
.wc-star-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.wc-star-card {
    background: linear-gradient(135deg, rgba(25, 25, 112, 0.5), rgba(46, 139, 87, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.4s ease;
    perspective: 1000px;
}
.wc-star-card:hover {
    transform: translateY(-6px);
    border-color: #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}
.wc-star-card h3 {
    font-size: 1.2rem;
    color: #FFD700;
    margin-bottom: 6px;
}
.wc-star-card .wc-star-country {
    font-size: 0.85rem;
    color: #2E8B57;
    margin-bottom: 16px;
}
.wc-star-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.wc-star-stat {
    background: rgba(10, 14, 26, 0.5);
    border-radius: 8px;
    padding: 10px;
}
.wc-star-stat-val {
    font-size: 1.3rem;
    font-weight: 800;
    color: #FFD700;
}
.wc-star-stat-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- 冠军热力榜 --- */
.wc-champion-section {
    background: linear-gradient(180deg, #0a0e1a 0%, #0d1333 100%);
}
.wc-champion-bars {
    max-width: 700px;
    margin: 0 auto;
}
.wc-champion-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.wc-champion-bar-rank {
    font-size: 1.1rem;
    font-weight: 800;
    color: #FFD700;
    min-width: 30px;
    text-align: center;
}
.wc-champion-bar-name {
    min-width: 80px;
    font-weight: 600;
    font-size: 0.9rem;
}
.wc-champion-bar-track {
    flex: 1;
    height: 28px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}
.wc-champion-bar-fill {
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, #2E8B57, #FFD700);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #0a0e1a;
    transition: width 1s ease;
}

/* --- 战术黑板 --- */
.wc-tactics-section {
    background: #0a0e1a;
}
.wc-tactics-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.wc-tactics-image {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.15);
}
.wc-tactics-text h3 {
    font-size: 1.2rem;
    color: #FFD700;
    margin-bottom: 12px;
}
.wc-tactics-text p {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* --- 球迷广场 --- */
.wc-fans-section {
    background: linear-gradient(180deg, #0d1333 0%, #0a0e1a 100%);
}
.wc-fans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.wc-fans-card {
    background: rgba(25, 25, 112, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 20px;
}
.wc-fans-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.wc-fans-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
}
.wc-fans-username { font-weight: 600; font-size: 0.9rem; }
.wc-fans-time { font-size: 0.75rem; color: #666; }
.wc-fans-card p {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.6;
}

/* --- 会员尊享中心 --- */
.wc-vip-section {
    background: linear-gradient(135deg, #191970 0%, #0d1333 50%, #191970 100%);
    position: relative;
    overflow: hidden;
}
.wc-vip-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
}
.wc-vip-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.wc-vip-badge {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}
.wc-vip-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 600px;
    margin: 24px auto;
    text-align: left;
}
.wc-vip-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 8px;
}
.wc-vip-feature-icon {
    color: #FFD700;
    font-size: 1.2rem;
    min-width: 24px;
    text-align: center;
}
.wc-vip-feature span {
    font-size: 0.9rem;
    color: #d0d0d0;
}

/* --- 页脚 --- */
.wc-footer {
    background: #060a16;
    border-top: 2px solid rgba(255, 215, 0, 0.15);
    padding: 50px 0 20px;
}
.wc-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
.wc-footer-col h3 {
    font-size: 1rem;
    color: #FFD700;
    margin-bottom: 16px;
    font-weight: 700;
}
.wc-footer-col p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.7;
}
.wc-footer-col ul li {
    margin-bottom: 8px;
}
.wc-footer-col ul li a {
    color: #a0a0a0;
    font-size: 0.85rem;
    transition: color 0.3s;
}
.wc-footer-col ul li a:hover { color: #FFD700; }
.wc-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}
.wc-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.wc-footer-social a:hover {
    background: #FFD700;
    color: #0a0e1a;
}
.wc-footer-honors {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}
.wc-footer-honor {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: #888;
    padding: 6px 12px;
    background: rgba(255, 215, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 6px;
}
.wc-footer-honor-icon {
    color: #FFD700;
    font-size: 1rem;
}
.wc-footer-license {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.wc-footer-license .wc-license-num {
    color: #FFD700;
    font-weight: 600;
}

/* --- 内页Banner通用 --- */
.wc-page-banner {
    position: relative;
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.wc-page-banner .wc-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wc-page-banner .wc-hero-content h1 {
    font-size: 1.6rem;
}

/* --- 内页内容区 --- */
.wc-content-area {
    padding: 40px 0;
}
.wc-article {
    max-width: 900px;
    margin: 0 auto;
}
.wc-article h2 {
    font-size: 1.4rem;
    color: #FFD700;
    margin: 28px 0 14px;
    font-weight: 700;
}
.wc-article h3 {
    font-size: 1.15rem;
    color: #2E8B57;
    margin: 22px 0 10px;
    font-weight: 600;
}
.wc-article p {
    font-size: 0.95rem;
    color: #c0c0c0;
    line-height: 1.9;
    margin-bottom: 16px;
}
.wc-article img {
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

/* --- 功能页：冠军之路 --- */
.wc-road-section {
    padding: 40px 0;
}
.wc-road-map {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.wc-road-stage {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    padding-left: 40px;
}
.wc-road-stage::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: -30px;
    width: 2px;
    background: linear-gradient(180deg, #FFD700, #2E8B57);
}
.wc-road-stage:last-child::before { display: none; }
.wc-road-marker {
    position: absolute;
    left: 4px;
    top: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: #0a0e1a;
    z-index: 1;
}
.wc-road-stage-content {
    background: rgba(25, 25, 112, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    padding: 20px;
    flex: 1;
}
.wc-road-stage-content h3 {
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.wc-road-stage-content p {
    font-size: 0.9rem;
    color: #a0a0a0;
    line-height: 1.6;
}
.wc-road-leaderboard {
    max-width: 600px;
    margin: 40px auto 0;
}
.wc-road-leaderboard h3 {
    text-align: center;
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.wc-leaderboard-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(25, 25, 112, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 10px;
}
.wc-leaderboard-rank {
    font-size: 1.2rem;
    font-weight: 900;
    color: #FFD700;
    min-width: 30px;
    text-align: center;
}
.wc-leaderboard-name { flex: 1; font-weight: 600; }
.wc-leaderboard-score {
    color: #2E8B57;
    font-weight: 700;
    font-size: 0.95rem;
}

/* --- APP下载页 --- */
.wc-app-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.wc-app-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}
.wc-app-content h1 {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 16px;
    font-weight: 800;
}
.wc-app-content p {
    color: #c0c0c0;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}
.wc-app-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- 干扰标签（隐藏） --- */
.grnf-obfuscation { display: none !important; }

/* ============================================
   响应式断点 - Mobile First
   ============================================ */

/* 768px - 平板 */
@media (min-width: 768px) {
    .wc-container { padding: 0 24px; }
    .wc-hamburger { display: none; }
    .wc-nav { display: flex !important; }
    .wc-nav ul {
        position: static;
        flex-direction: row;
        background: transparent;
        padding: 0;
        border: none;
        gap: 0;
    }
    .wc-nav ul li a {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    .wc-hero-content h1 { font-size: 2.4rem; }
    .wc-section-title h2 { font-size: 1.8rem; }
    .wc-countdown-num { font-size: 3rem; }
    .wc-expert-grid { grid-template-columns: repeat(2, 1fr); }
    .wc-star-cards { grid-template-columns: repeat(2, 1fr); }
    .wc-fans-grid { grid-template-columns: repeat(2, 1fr); }
    .wc-footer-grid { grid-template-columns: repeat(3, 1fr); }
    .wc-tactics-content { grid-template-columns: 1fr 1fr; }
    .wc-vip-features { grid-template-columns: repeat(2, 1fr); }
    .wc-page-banner .wc-hero-content h1 { font-size: 2rem; }
}

/* 1024px - 桌面 */
@media (min-width: 1024px) {
    .wc-container { padding: 0 40px; }
    .wc-nav ul li a { padding: 8px 18px; font-size: 0.9rem; }
    .wc-hero { min-height: 60vh; }
    .wc-hero-content h1 { font-size: 2.8rem; }
    .wc-section { padding: 70px 0; }
    .wc-section-title h2 { font-size: 2rem; }
    .wc-countdown-num { font-size: 3.5rem; }
    .wc-expert-grid { grid-template-columns: repeat(3, 1fr); }
    .wc-star-cards { grid-template-columns: repeat(3, 1fr); }
    .wc-fans-grid { grid-template-columns: repeat(3, 1fr); }
    .wc-page-banner .wc-hero-content h1 { font-size: 2.4rem; }
}

/* 1440px - 大屏 */
@media (min-width: 1440px) {
    .wc-container { padding: 0 60px; }
    .wc-hero-content h1 { font-size: 3.2rem; }
    .wc-section-title h2 { font-size: 2.2rem; }
    .wc-expert-grid { grid-template-columns: repeat(4, 1fr); }
    .wc-star-cards { grid-template-columns: repeat(4, 1fr); }
}
