/* ============================================
   万博体育 - 太空探索未来风格主题样式
   所有自定义CSS类名以 wb- 作为前缀
   ============================================ */

/* === 基础重置与全局变量 === */
:root {
    --wb-color-primary: #0A0A2A;
    --wb-color-secondary: #7C4DFF;
    --wb-color-accent: #00E5FF;
    --wb-color-text: #B0B0D0;
    --wb-color-link: #7C4DFF;
    --wb-color-white: #FFFFFF;
    --wb-color-light-bg: #F0F2F5;
    --wb-color-card-bg: rgba(20, 20, 60, 0.85);
    --wb-color-glass: rgba(10, 10, 42, 0.7);
    --wb-font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    --wb-transition: all 0.3s ease;
    --wb-border-glow: 1px solid rgba(124, 77, 255, 0.3);
    --wb-shadow-glow: 0 0 20px rgba(124, 77, 255, 0.15);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--wb-font-family);
    background-color: var(--wb-color-primary);
    color: var(--wb-color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--wb-color-link);
    text-decoration: none;
    transition: var(--wb-transition);
}

a:hover {
    color: var(--wb-color-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === 干扰标签隐藏 === */
.space-interference {
    display: none;
}

/* === 星空背景粒子动画 === */
.wb-stars-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--wb-color-primary);
    overflow: hidden;
}

.wb-stars-bg::before,
.wb-stars-bg::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: var(--wb-color-white);
    box-shadow:
        100px 200px var(--wb-color-white),
        300px 100px var(--wb-color-white),
        500px 300px var(--wb-color-accent),
        700px 150px var(--wb-color-white),
        900px 400px var(--wb-color-secondary),
        150px 500px var(--wb-color-white),
        350px 600px var(--wb-color-accent),
        550px 50px var(--wb-color-white),
        750px 350px var(--wb-color-white),
        950px 250px var(--wb-color-secondary),
        200px 450px var(--wb-color-white),
        400px 550px var(--wb-color-white),
        600px 650px var(--wb-color-accent),
        800px 50px var(--wb-color-white),
        1000px 500px var(--wb-color-white),
        1200px 300px var(--wb-color-secondary),
        1400px 100px var(--wb-color-white),
        50px 700px var(--wb-color-white),
        250px 350px var(--wb-color-accent),
        450px 750px var(--wb-color-white);
    animation: wb-twinkle 4s ease-in-out infinite alternate;
}

.wb-stars-bg::after {
    width: 1px;
    height: 1px;
    box-shadow:
        80px 180px var(--wb-color-white),
        280px 80px var(--wb-color-white),
        480px 280px var(--wb-color-white),
        680px 130px var(--wb-color-accent),
        880px 380px var(--wb-color-white),
        130px 480px var(--wb-color-white),
        330px 580px var(--wb-color-white),
        530px 30px var(--wb-color-secondary),
        730px 330px var(--wb-color-white),
        930px 230px var(--wb-color-white);
    animation-delay: 2s;
}

@keyframes wb-twinkle {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* === 加载动画 === */
.wb-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--wb-color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.wb-loader.wb-loaded {
    opacity: 0;
    visibility: hidden;
}

.wb-loader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(124, 77, 255, 0.2);
    border-top-color: var(--wb-color-accent);
    border-radius: 50%;
    animation: wb-spin 1s linear infinite;
    position: relative;
}

.wb-loader-spinner::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid transparent;
    border-top-color: var(--wb-color-secondary);
    border-radius: 50%;
    animation: wb-spin 2s linear infinite reverse;
}

@keyframes wb-spin {
    to { transform: rotate(360deg); }
}

/* === 导航栏 === */
.wb-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--wb-transition);
    background: transparent;
}

.wb-header.wb-scrolled {
    background: rgba(10, 10, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(124, 77, 255, 0.15);
}

.wb-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.wb-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wb-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wb-color-white);
    text-decoration: none;
}

.wb-logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
}

.wb-logo-icon svg {
    width: 100%;
    height: 100%;
}

.wb-logo-text {
    background: linear-gradient(135deg, var(--wb-color-accent), var(--wb-color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.wb-nav-links a {
    color: var(--wb-color-text);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.wb-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--wb-color-accent), var(--wb-color-secondary));
    transition: width 0.3s ease;
}

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

.wb-nav-links a:hover,
.wb-nav-links a.wb-active {
    color: var(--wb-color-white);
}

.wb-nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wb-btn-primary {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--wb-color-secondary), var(--wb-color-accent));
    color: var(--wb-color-white);
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--wb-transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.wb-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.wb-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(124, 77, 255, 0.4);
    color: var(--wb-color-white);
}

.wb-btn-primary:hover::before {
    left: 100%;
}

.wb-btn-outline {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--wb-color-secondary);
    color: var(--wb-color-secondary);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--wb-transition);
    text-decoration: none;
    background: transparent;
}

.wb-btn-outline:hover {
    background: var(--wb-color-secondary);
    color: var(--wb-color-white);
    box-shadow: 0 0 20px rgba(124, 77, 255, 0.3);
}

.wb-lang-switch {
    color: var(--wb-color-text);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 5px 10px;
    border: 1px solid rgba(176, 176, 208, 0.3);
    border-radius: 15px;
    background: transparent;
    transition: var(--wb-transition);
}

.wb-lang-switch:hover {
    border-color: var(--wb-color-accent);
    color: var(--wb-color-accent);
}

/* 汉堡菜单 */
.wb-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.wb-hamburger span {
    width: 25px;
    height: 2px;
    background: var(--wb-color-white);
    transition: var(--wb-transition);
}

.wb-hamburger.wb-open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.wb-hamburger.wb-open span:nth-child(2) {
    opacity: 0;
}

.wb-hamburger.wb-open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.wb-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: rgba(10, 10, 42, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(124, 77, 255, 0.2);
}

.wb-mobile-menu.wb-open {
    right: 0;
}

.wb-mobile-menu a {
    display: block;
    padding: 15px 0;
    color: var(--wb-color-text);
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(124, 77, 255, 0.1);
}

.wb-mobile-menu a:hover {
    color: var(--wb-color-accent);
}

.wb-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

/* === Banner 模块 === */
.wb-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.wb-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.wb-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wb-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 42, 0.3) 0%,
        rgba(10, 10, 42, 0.6) 50%,
        rgba(10, 10, 42, 0.9) 100%
    );
    z-index: 1;
}

.wb-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.wb-banner-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--wb-color-white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 40px rgba(124, 77, 255, 0.3);
}

.wb-banner-content h1 .wb-highlight {
    background: linear-gradient(135deg, var(--wb-color-accent), var(--wb-color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wb-banner-content p {
    font-size: 1.2rem;
    color: var(--wb-color-text);
    margin-bottom: 35px;
    line-height: 1.8;
}

.wb-banner-content .wb-btn-primary {
    font-size: 1.1rem;
    padding: 14px 40px;
}

/* === 通用模块样式 === */
.wb-section {
    padding: 80px 0;
    position: relative;
}

.wb-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.wb-section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--wb-color-white);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.wb-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--wb-color-accent), var(--wb-color-secondary));
    border-radius: 2px;
}

.wb-section-header p {
    font-size: 1.05rem;
    color: var(--wb-color-text);
    max-width: 600px;
    margin: 20px auto 0;
}

/* === 星际赛场入口 === */
.wb-arena-section {
    background: linear-gradient(135deg, rgba(10, 10, 42, 0.95), rgba(20, 15, 50, 0.95));
    position: relative;
    overflow: hidden;
}

.wb-arena-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(124, 77, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(0, 229, 255, 0.05) 0%, transparent 50%);
    animation: wb-nebula 20s ease-in-out infinite alternate;
}

@keyframes wb-nebula {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-5%, 5%) rotate(5deg); }
}

.wb-arena-intro {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.wb-arena-visual {
    flex: 1;
    position: relative;
}

.wb-arena-planet {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--wb-color-accent), var(--wb-color-secondary), var(--wb-color-primary));
    margin: 0 auto;
    position: relative;
    animation: wb-float 6s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(124, 77, 255, 0.3), inset 0 0 60px rgba(0, 229, 255, 0.1);
}

.wb-arena-planet::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -40px;
    right: -40px;
    bottom: -20px;
    border: 2px solid rgba(0, 229, 255, 0.2);
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: wb-orbit 8s linear infinite;
}

.wb-arena-planet::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -50px;
    right: -50px;
    bottom: -30px;
    border: 1px solid rgba(124, 77, 255, 0.15);
    border-radius: 50%;
    transform: rotateX(70deg) rotateZ(30deg);
    animation: wb-orbit 12s linear infinite reverse;
}

@keyframes wb-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes wb-orbit {
    to { transform: rotateX(70deg) rotateZ(360deg); }
}

.wb-arena-info {
    flex: 1;
}

.wb-arena-info h2 {
    font-size: 2rem;
    color: var(--wb-color-white);
    margin-bottom: 20px;
}

.wb-arena-info p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* === 热门赛事象限 === */
.wb-quadrant {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.wb-quadrant-item {
    background: var(--wb-color-card-bg);
    border: var(--wb-border-glow);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--wb-transition);
    position: relative;
    overflow: hidden;
}

.wb-quadrant-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--wb-color-accent), var(--wb-color-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wb-quadrant-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--wb-shadow-glow);
    border-color: rgba(124, 77, 255, 0.5);
}

.wb-quadrant-item:hover::before {
    opacity: 1;
}

.wb-quadrant-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.wb-quadrant-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wb-quadrant-item h4 {
    font-size: 1.2rem;
    color: var(--wb-color-white);
    margin-bottom: 10px;
}

.wb-quadrant-item p {
    font-size: 0.9rem;
    color: var(--wb-color-text);
}

.wb-quadrant-match {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    font-size: 0.85rem;
}

.wb-quadrant-match .wb-vs {
    color: var(--wb-color-accent);
    font-weight: 700;
}

/* === AI预测战报 === */
.wb-report-section {
    background: linear-gradient(90deg, rgba(124, 77, 255, 0.1), rgba(0, 229, 255, 0.1));
    padding: 20px 0;
    overflow: hidden;
}

.wb-report-ticker {
    display: flex;
    gap: 60px;
    animation: wb-ticker 30s linear infinite;
    white-space: nowrap;
}

@keyframes wb-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.wb-report-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding: 5px 20px;
}

.wb-report-item .wb-dot {
    width: 8px;
    height: 8px;
    background: var(--wb-color-accent);
    border-radius: 50%;
    animation: wb-pulse 2s ease-in-out infinite;
}

@keyframes wb-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 10px rgba(0, 229, 255, 0); }
}

.wb-report-item p {
    font-size: 0.9rem;
    color: var(--wb-color-text);
}

.wb-report-item .wb-accent {
    color: var(--wb-color-accent);
    font-weight: 600;
}

/* === 资讯与分析舰队 === */
.wb-news-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.wb-news-tab {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid rgba(124, 77, 255, 0.3);
    color: var(--wb-color-text);
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--wb-transition);
}

.wb-news-tab:hover,
.wb-news-tab.wb-active {
    background: var(--wb-color-secondary);
    color: var(--wb-color-white);
    border-color: var(--wb-color-secondary);
}

.wb-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.wb-news-card {
    background: var(--wb-color-card-bg);
    border: var(--wb-border-glow);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--wb-transition);
}

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

.wb-news-card-img {
    height: 200px;
    overflow: hidden;
}

.wb-news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wb-news-card:hover .wb-news-card-img img {
    transform: scale(1.05);
}

.wb-news-card-body {
    padding: 20px;
}

.wb-news-card-tag {
    display: inline-block;
    padding: 3px 12px;
    background: rgba(124, 77, 255, 0.2);
    color: var(--wb-color-secondary);
    border-radius: 12px;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.wb-news-card-body h3 {
    font-size: 1.1rem;
    color: var(--wb-color-white);
    margin-bottom: 10px;
    line-height: 1.5;
}

.wb-news-card-body p {
    font-size: 0.9rem;
    color: var(--wb-color-text);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wb-news-card-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(124, 77, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(176, 176, 208, 0.6);
}

/* === 合作伙伴星链 === */
.wb-partners-section {
    background: rgba(10, 10, 42, 0.5);
}

.wb-partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.wb-partner-item {
    width: 150px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: var(--wb-transition);
    filter: grayscale(1) brightness(2);
}

.wb-partner-item:hover {
    opacity: 1;
    filter: grayscale(0) brightness(1);
}

.wb-partner-item span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--wb-color-text);
    letter-spacing: 2px;
}

/* === 荣誉勋章展示 === */
.wb-honor-section {
    text-align: center;
}

.wb-honor-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.wb-honor-item {
    background: var(--wb-color-card-bg);
    border: var(--wb-border-glow);
    border-radius: 16px;
    padding: 30px;
    max-width: 300px;
    text-align: center;
    transition: var(--wb-transition);
}

.wb-honor-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--wb-shadow-glow);
}

.wb-honor-item img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 20px;
}

.wb-honor-item h4 {
    color: var(--wb-color-white);
    font-size: 1rem;
    margin-bottom: 10px;
}

.wb-honor-item p {
    font-size: 0.85rem;
    color: var(--wb-color-text);
}

/* === 用户星际议会 === */
.wb-council-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.wb-council-card {
    background: var(--wb-color-card-bg);
    border: var(--wb-border-glow);
    border-radius: 16px;
    padding: 25px;
    transition: var(--wb-transition);
}

.wb-council-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
}

.wb-council-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.wb-council-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wb-color-secondary), var(--wb-color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wb-color-white);
    font-weight: 700;
    font-size: 1.1rem;
}

.wb-council-name {
    color: var(--wb-color-white);
    font-weight: 600;
}

.wb-council-rank {
    font-size: 0.75rem;
    color: var(--wb-color-accent);
}

.wb-council-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--wb-color-text);
}

.wb-council-stars {
    margin-top: 15px;
    color: #FFD700;
    font-size: 0.9rem;
}

/* === APP下载引导 === */
.wb-app-section {
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.1), rgba(0, 229, 255, 0.05));
    position: relative;
    overflow: hidden;
}

.wb-app-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.wb-app-info {
    flex: 1;
}

.wb-app-info h2 {
    font-size: 2rem;
    color: var(--wb-color-white);
    margin-bottom: 20px;
}

.wb-app-info p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.wb-app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.wb-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--wb-color-white);
    transition: var(--wb-transition);
    text-decoration: none;
}

.wb-app-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--wb-color-accent);
    color: var(--wb-color-white);
}

.wb-app-btn-icon {
    font-size: 1.5rem;
}

.wb-app-btn-text small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.7;
}

.wb-app-btn-text span {
    font-size: 1rem;
    font-weight: 600;
}

.wb-app-mockup {
    flex: 0 0 350px;
    max-width: 350px;
}

.wb-app-mockup img {
    width: 100%;
    border-radius: 20px;
}

/* === 页脚 === */
.wb-footer {
    background: var(--wb-color-primary);
    border-top: 1px solid rgba(124, 77, 255, 0.15);
    padding: 60px 0 0;
}

.wb-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.wb-footer-col h4 {
    color: var(--wb-color-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.wb-footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--wb-color-accent);
}

.wb-footer-col ul {
    list-style: none;
}

.wb-footer-col ul li {
    margin-bottom: 10px;
}

.wb-footer-col ul li a {
    color: var(--wb-color-text);
    font-size: 0.9rem;
    transition: var(--wb-transition);
}

.wb-footer-col ul li a:hover {
    color: var(--wb-color-accent);
    padding-left: 5px;
}

.wb-footer-bottom {
    border-top: 1px solid rgba(124, 77, 255, 0.1);
    padding: 25px 0;
    text-align: center;
}

.wb-footer-bottom .wb-honor-badge {
    margin-bottom: 15px;
}

.wb-footer-bottom .wb-honor-badge img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    object-fit: contain;
}

.wb-footer-bottom p {
    font-size: 0.85rem;
    color: rgba(176, 176, 208, 0.6);
    margin-bottom: 8px;
}

.wb-footer-bottom a {
    color: rgba(176, 176, 208, 0.6);
    font-size: 0.8rem;
}

.wb-footer-bottom a:hover {
    color: var(--wb-color-accent);
}

.wb-divider {
    margin: 0 10px;
    color: rgba(176, 176, 208, 0.3);
}

.wb-gongan-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

/* === 面包屑导航 === */
.wb-breadcrumb {
    padding: 15px 0;
    font-size: 0.85rem;
}

.wb-breadcrumb a {
    color: var(--wb-color-text);
}

.wb-breadcrumb a:hover {
    color: var(--wb-color-accent);
}

.wb-breadcrumb span {
    color: rgba(176, 176, 208, 0.5);
    margin: 0 8px;
}

.wb-breadcrumb .wb-current {
    color: var(--wb-color-accent);
}

/* === 内页通用样式 === */
.wb-page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.wb-page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wb-page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wb-page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,10,42,0.5), rgba(10,10,42,0.9));
}

.wb-page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.wb-page-hero-content h1 {
    font-size: 2.5rem;
    color: var(--wb-color-white);
    margin-bottom: 15px;
}

.wb-page-hero-content p {
    font-size: 1.1rem;
    color: var(--wb-color-text);
    max-width: 600px;
    margin: 0 auto;
}

.wb-page-content {
    padding: 60px 0;
}

.wb-content-area {
    background: var(--wb-color-light-bg);
    border-radius: 16px;
    padding: 40px;
    color: #333;
    line-height: 1.8;
}

.wb-content-area h2 {
    color: var(--wb-color-primary);
    font-size: 1.6rem;
    margin: 30px 0 15px;
}

.wb-content-area h3 {
    color: var(--wb-color-primary);
    font-size: 1.3rem;
    margin: 25px 0 12px;
}

.wb-content-area p {
    margin-bottom: 15px;
    color: #555;
}

/* === 星际赛场页面 === */
.wb-arena-page {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    margin-top: 20px;
}

.wb-arena-sidebar {
    background: var(--wb-color-card-bg);
    border: var(--wb-border-glow);
    border-radius: 16px;
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.wb-arena-sidebar h3 {
    color: var(--wb-color-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(124, 77, 255, 0.2);
}

.wb-filter-group {
    margin-bottom: 20px;
}

.wb-filter-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--wb-color-text);
    margin-bottom: 8px;
}

.wb-filter-select {
    width: 100%;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(124, 77, 255, 0.2);
    border-radius: 8px;
    color: var(--wb-color-text);
    font-size: 0.9rem;
    appearance: none;
    cursor: pointer;
}

.wb-filter-select option {
    background: var(--wb-color-primary);
}

.wb-match-list {
    list-style: none;
    margin-top: 15px;
}

.wb-match-item {
    padding: 12px;
    border: 1px solid rgba(124, 77, 255, 0.15);
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: var(--wb-transition);
}

.wb-match-item:hover,
.wb-match-item.wb-selected {
    border-color: var(--wb-color-accent);
    background: rgba(0, 229, 255, 0.05);
}

.wb-match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--wb-color-white);
}

.wb-match-teams .wb-vs {
    color: var(--wb-color-accent);
    font-weight: 700;
    font-size: 0.8rem;
}

.wb-match-meta {
    font-size: 0.75rem;
    color: rgba(176, 176, 208, 0.5);
    margin-top: 5px;
}

.wb-arena-main {
    background: var(--wb-color-card-bg);
    border: var(--wb-border-glow);
    border-radius: 16px;
    padding: 30px;
    min-height: 500px;
}

.wb-arena-display {
    text-align: center;
}

.wb-arena-display h3 {
    color: var(--wb-color-white);
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.wb-gauge-container {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 30px;
}

.wb-gauge-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid rgba(124, 77, 255, 0.15);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wb-gauge-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid transparent;
    border-top-color: var(--wb-color-accent);
    border-right-color: var(--wb-color-accent);
    transform: rotate(45deg);
}

.wb-gauge-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--wb-color-accent);
}

.wb-gauge-label {
    font-size: 0.9rem;
    color: var(--wb-color-text);
    display: block;
}

.wb-arena-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.wb-arena-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(124, 77, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: var(--wb-transition);
}

.wb-arena-card:hover {
    border-color: var(--wb-color-accent);
    background: rgba(0, 229, 255, 0.05);
}

.wb-arena-card h4 {
    color: var(--wb-color-accent);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.wb-arena-card p {
    font-size: 0.85rem;
    color: var(--wb-color-text);
}

/* === 数据模型页面 === */
.wb-model-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.wb-model-card {
    background: var(--wb-color-card-bg);
    border: var(--wb-border-glow);
    border-radius: 16px;
    padding: 30px;
    transition: var(--wb-transition);
}

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

.wb-model-card h3 {
    color: var(--wb-color-white);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wb-model-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--wb-color-secondary), var(--wb-color-accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.wb-model-card p {
    font-size: 0.9rem;
    color: var(--wb-color-text);
    line-height: 1.7;
    margin-bottom: 15px;
}

.wb-model-stats {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.wb-model-stat {
    text-align: center;
}

.wb-model-stat .wb-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wb-color-accent);
}

.wb-model-stat .wb-stat-label {
    font-size: 0.75rem;
    color: var(--wb-color-text);
}

/* === 关于我们页面 === */
.wb-about-timeline {
    position: relative;
    padding: 20px 0;
}

.wb-about-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--wb-color-accent), var(--wb-color-secondary));
    transform: translateX(-50%);
}

.wb-timeline-item {
    display: flex;
    justify-content: flex-end;
    padding: 20px 0;
    width: 50%;
    position: relative;
}

.wb-timeline-item:nth-child(even) {
    margin-left: 50%;
    justify-content: flex-start;
}

.wb-timeline-content {
    background: var(--wb-color-card-bg);
    border: var(--wb-border-glow);
    border-radius: 12px;
    padding: 20px;
    max-width: 400px;
    margin: 0 30px;
}

.wb-timeline-content h4 {
    color: var(--wb-color-accent);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.wb-timeline-content h3 {
    color: var(--wb-color-white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.wb-timeline-content p {
    font-size: 0.85rem;
    color: var(--wb-color-text);
}

.wb-timeline-dot {
    position: absolute;
    right: -8px;
    top: 30px;
    width: 16px;
    height: 16px;
    background: var(--wb-color-accent);
    border-radius: 50%;
    border: 3px solid var(--wb-color-primary);
}

.wb-timeline-item:nth-child(even) .wb-timeline-dot {
    left: -8px;
    right: auto;
}

/* === APP下载页面 === */
.wb-download-section {
    text-align: center;
    padding: 80px 0;
}

.wb-download-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.wb-download-feature {
    background: var(--wb-color-card-bg);
    border: var(--wb-border-glow);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--wb-transition);
}

.wb-download-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--wb-shadow-glow);
}

.wb-download-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--wb-color-secondary), var(--wb-color-accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.wb-download-feature h3 {
    color: var(--wb-color-white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.wb-download-feature p {
    font-size: 0.85rem;
    color: var(--wb-color-text);
}

.wb-qrcode {
    width: 160px;
    height: 160px;
    background: var(--wb-color-white);
    border-radius: 12px;
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.wb-qrcode-placeholder {
    width: 100%;
    height: 100%;
    background: repeating-conic-gradient(#333 0% 25%, #fff 0% 50%) 0 0 / 10px 10px;
    border-radius: 8px;
}

/* === 响应式设计 === */

/* 桌面设备 (小) - 1024px */
@media (max-width: 1024px) {
    .wb-arena-page {
        grid-template-columns: 1fr;
    }

    .wb-arena-sidebar {
        position: static;
    }

    .wb-arena-intro {
        flex-direction: column;
        text-align: center;
    }

    .wb-app-content {
        flex-direction: column;
        text-align: center;
    }

    .wb-app-buttons {
        justify-content: center;
    }

    .wb-about-timeline::before {
        left: 20px;
    }

    .wb-timeline-item,
    .wb-timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        justify-content: flex-start;
        padding-left: 50px;
    }

    .wb-timeline-dot,
    .wb-timeline-item:nth-child(even) .wb-timeline-dot {
        left: 12px;
        right: auto;
    }
}

/* 平板设备 - 768px */
@media (max-width: 768px) {
    .wb-nav-links {
        display: none;
    }

    .wb-nav-actions .wb-btn-outline,
    .wb-nav-actions .wb-lang-switch {
        display: none;
    }

    .wb-hamburger {
        display: flex;
    }

    .wb-mobile-menu {
        display: block;
    }

    .wb-banner-content h1 {
        font-size: 2.2rem;
    }

    .wb-banner-content p {
        font-size: 1rem;
    }

    .wb-section-header h2 {
        font-size: 1.8rem;
    }

    .wb-quadrant {
        grid-template-columns: 1fr;
    }

    .wb-news-grid {
        grid-template-columns: 1fr;
    }

    .wb-council-grid {
        grid-template-columns: 1fr;
    }

    .wb-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .wb-footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .wb-model-grid {
        grid-template-columns: 1fr;
    }

    .wb-arena-cards {
        grid-template-columns: 1fr;
    }

    .wb-download-features {
        grid-template-columns: 1fr;
    }

    .wb-page-hero {
        height: 300px;
    }

    .wb-page-hero-content h1 {
        font-size: 1.8rem;
    }

    .wb-content-area {
        padding: 25px;
    }

    .wb-app-mockup {
        flex: 0 0 250px;
        max-width: 250px;
    }
}

/* 移动设备 - 360px */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .wb-banner {
        min-height: 500px;
    }

    .wb-banner-content h1 {
        font-size: 1.8rem;
    }

    .wb-banner-content .wb-btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .wb-section {
        padding: 50px 0;
    }

    .wb-section-header h2 {
        font-size: 1.5rem;
    }

    .wb-news-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .wb-news-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .wb-arena-planet {
        width: 200px;
        height: 200px;
    }

    .wb-app-buttons {
        flex-direction: column;
        align-items: center;
    }

    .wb-honor-badges {
        flex-direction: column;
        align-items: center;
    }

    .wb-partners-grid {
        gap: 25px;
    }

    .wb-partner-item {
        width: 100px;
    }
}

/* === 滚动动画 === */
.wb-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.wb-fade-in.wb-visible {
    opacity: 1;
    transform: translateY(0);
}

/* === 脉冲光效按钮 === */
.wb-btn-primary:active {
    transform: scale(0.98);
}

/* === 玻璃面板效果 === */
.wb-glass-panel {
    background: var(--wb-color-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: var(--wb-border-glow);
    border-radius: 16px;
}

/* === 文章页样式 === */
.wb-article-content {
    max-width: 800px;
    margin: 0 auto;
}

.wb-article-content h1 {
    font-size: 2rem;
    color: var(--wb-color-primary);
    margin-bottom: 20px;
    line-height: 1.4;
}

.wb-article-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.wb-article-content img {
    border-radius: 12px;
    margin: 20px 0;
}

/* === 资讯中心列表 === */
.wb-news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wb-news-list-item {
    display: flex;
    gap: 20px;
    background: var(--wb-color-card-bg);
    border: var(--wb-border-glow);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--wb-transition);
}

.wb-news-list-item:hover {
    transform: translateX(5px);
    box-shadow: var(--wb-shadow-glow);
}

.wb-news-list-img {
    flex: 0 0 250px;
    height: 180px;
    overflow: hidden;
}

.wb-news-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wb-news-list-body {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wb-news-list-body h3 {
    color: var(--wb-color-white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.wb-news-list-body p {
    font-size: 0.9rem;
    color: var(--wb-color-text);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wb-news-list-meta {
    margin-top: 10px;
    font-size: 0.8rem;
    color: rgba(176, 176, 208, 0.5);
}

@media (max-width: 768px) {
    .wb-news-list-item {
        flex-direction: column;
    }

    .wb-news-list-img {
        flex: none;
        height: 200px;
    }
}

/* === 团队成员 === */
.wb-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.wb-team-card {
    background: var(--wb-color-card-bg);
    border: var(--wb-border-glow);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: var(--wb-transition);
}

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

.wb-team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wb-color-secondary), var(--wb-color-accent));
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--wb-color-white);
}

.wb-team-card h4 {
    color: var(--wb-color-white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.wb-team-card .wb-team-role {
    color: var(--wb-color-accent);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.wb-team-card p {
    font-size: 0.85rem;
    color: var(--wb-color-text);
}

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

@media (max-width: 480px) {
    .wb-team-grid {
        grid-template-columns: 1fr;
    }
}

/* === 文章详情页 === */
.wb-article {
    max-width: 900px;
    margin: 0 auto;
}

.wb-article-header {
    margin-bottom: 30px;
}

.wb-article-header h1 {
    font-size: 2rem;
    color: var(--wb-color-white);
    line-height: 1.4;
    margin: 15px 0;
}

.wb-article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(176, 176, 208, 0.6);
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(124, 77, 255, 0.15);
}

.wb-article-img {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.wb-article-img img {
    width: 100%;
    border-radius: 12px;
}

.wb-article-body {
    line-height: 1.9;
}

.wb-article-body h2 {
    color: var(--wb-color-white);
    font-size: 1.5rem;
    margin: 35px 0 15px;
    padding-left: 15px;
    border-left: 3px solid var(--wb-color-accent);
}

.wb-article-body p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--wb-color-text);
}

.wb-article-footer {
    margin-top: 40px;
    padding: 20px;
    background: rgba(124, 77, 255, 0.05);
    border: 1px solid rgba(124, 77, 255, 0.15);
    border-radius: 12px;
}

.wb-article-footer p {
    font-size: 0.85rem;
    color: rgba(176, 176, 208, 0.6);
    font-style: italic;
}

@media (max-width: 768px) {
    .wb-article-header h1 {
        font-size: 1.5rem;
    }

    .wb-article-meta {
        flex-direction: column;
        gap: 8px;
    }
}
