@import url('variables.css');

/* ===== 基础样式 ===== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* ===== 导航栏 ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.75rem 2rem;
    background: rgba(10, 10, 15, 0.95);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: var(--shadow-glow); }
    50% { transform: scale(1.05); box-shadow: 0 0 60px rgba(var(--particle-color), 0.5); }
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

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

/* 导航栏专属空间特殊效果 */
.nav-link-space {
    background: linear-gradient(135deg, var(--accent) 0%, #667eea 100%);
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    animation: space-glow 2s ease-in-out infinite;
}

.nav-link-space::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    animation: space-shine 3s linear infinite;
}

.nav-link-space::after {
    display: none;
}

.nav-link-space .space-icon-wrapper {
    display: inline-flex;
    align-items: center;
    margin-right: 6px;
}

.nav-link-space .space-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-link-space:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.4);
    color: white !important;
}

@keyframes space-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(32, 201, 151, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(32, 201, 151, 0.5);
    }
}

@keyframes space-shine {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* 移动端专属空间 */
.mobile-link-space {
    background: linear-gradient(135deg, var(--accent) 0%, #667eea 100%);
    color: white !important;
    padding: 12px 20px !important;
    border-radius: 25px;
    margin: 8px 16px;
    text-align: center;
    animation: space-glow 2s ease-in-out infinite;
}

.mobile-link-space .space-icon-wrapper {
    margin-right: 8px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ===== 主题切换器 ===== */
.theme-switcher {
    position: relative;
}

.theme-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    background: rgba(var(--particle-color), 0.1);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-btn:hover {
    background: rgba(var(--particle-color), 0.2);
    color: var(--text-primary);
}

.theme-btn .fa-chevron-down {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.theme-switcher.active .theme-btn .fa-chevron-down {
    transform: rotate(180deg);
}

.theme-name {
    font-weight: 500;
}

.theme-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-height: 70vh;
    overflow-y: auto;
}

.theme-section {
    padding: 0.25rem 0;
}

.theme-section:not(:last-child) {
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
    margin-bottom: 0.25rem;
}

.theme-section-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    padding: 0.5rem 0.75rem 0.25rem;
    font-weight: 600;
}

.theme-switcher.active .theme-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.theme-option:hover {
    background: rgba(var(--particle-color), 0.1);
}

.theme-option.active {
    background: rgba(var(--particle-color), 0.15);
}

.theme-preview {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    flex-shrink: 0;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.theme-option.active .theme-preview {
    border-color: var(--accent);
}

.theme-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.theme-option.active .theme-label {
    color: var(--text-primary);
}

.join-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-accent);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.join-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem;
    z-index: 999;
    border-bottom: 1px solid var(--border);
}

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

.mobile-link {
    display: block;
    padding: 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.mobile-link:hover,
.mobile-link.active {
    color: var(--text-primary);
    background: rgba(var(--particle-color), 0.1);
}

.mobile-theme-switcher {
    padding: 1rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
}

.mobile-theme-switcher span {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.mobile-theme-options {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

.mobile-theme-options .theme-option {
    padding: 0.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-theme-options .theme-preview {
    width: 36px;
    height: 36px;
}

/* ===== Hero区域 ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 5% 80px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    background: rgba(var(--particle-color), 0.15);
    border: 1px solid rgba(var(--particle-color), 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary-light);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sub-title {
    color: var(--text-primary);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.primary-btn,
.secondary-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn {
    background: var(--gradient-accent);
    border: none;
    color: white;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.secondary-btn {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text-primary);
}

.secondary-btn:hover {
    background: rgba(var(--particle-color), 0.1);
    border-color: var(--accent);
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s ease 0.5s backwards;
}

.orbit-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.center-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: var(--shadow-glow);
    animation: corePulse 3s ease-in-out infinite;
}

@keyframes corePulse {
    0%, 100% {
        box-shadow: 0 0 40px rgba(var(--particle-color), 0.4),
                    0 0 80px rgba(var(--particle-color), 0.2);
    }
    50% {
        box-shadow: 0 0 60px rgba(var(--particle-color), 0.6),
                    0 0 120px rgba(var(--particle-color), 0.3);
    }
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(var(--particle-color), 0.2);
    border-radius: 50%;
    animation: rotate linear infinite;
}

.orbit-1 {
    width: 200px;
    height: 200px;
    margin: -100px 0 0 -100px;
    animation-duration: 8s;
}

.orbit-2 {
    width: 300px;
    height: 300px;
    margin: -150px 0 0 -150px;
    animation-duration: 12s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 380px;
    height: 380px;
    margin: -190px 0 0 -190px;
    animation-duration: 16s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit-dot {
    position: absolute;
    top: -6px;
    left: 50%;
    margin-left: -6px;
    width: 12px;
    height: 12px;
    background: var(--orbit-1);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--orbit-1);
}

.orbit-2 .orbit-dot {
    background: var(--orbit-2);
    box-shadow: 0 0 20px var(--orbit-2);
}

.orbit-3 .orbit-dot {
    background: var(--orbit-3);
    box-shadow: 0 0 20px var(--orbit-3);
}

/* ===== 数据统计区 ===== */
.stats-section {
    padding: 4rem 5%;
    background: linear-gradient(180deg, transparent 0%, rgba(var(--particle-color), 0.03) 100%);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--particle-color), 0.3);
    box-shadow: 0 20px 60px rgba(var(--particle-color), 0.15);
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(var(--particle-color), 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== 核心理念 ===== */
.concept-section {
    padding: 6rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.concept-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.concept-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    cursor: default;
}

.concept-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--particle-color), 0.3);
    background: var(--bg-card-hover);
}

.concept-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    transition: transform 0.3s ease;
}

.concept-card:hover .concept-icon {
    transform: scale(1.1) rotate(5deg);
}

.concept-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.concept-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== 模块展示 ===== */
.modules-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, rgba(var(--particle-color), 0.03) 0%, transparent 100%);
}

.modules-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.module-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
}

.module-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
                rgba(var(--particle-color), 0.15), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.module-card:hover .module-glow {
    opacity: 1;
}

.module-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--particle-color), 0.4);
    box-shadow: 0 20px 60px rgba(var(--particle-color), 0.15);
}

.module-content {
    flex: 1;
}

.module-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.module-card:hover .module-icon {
    transform: scale(1.1);
}

.module-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.module-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.module-tags {
    display: flex;
    gap: 0.5rem;
}

.tag {
    padding: 0.35rem 0.75rem;
    background: rgba(var(--particle-color), 0.1);
    border: 1px solid rgba(var(--particle-color), 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--primary-light);
}

.module-arrow {
    width: 50px;
    height: 50px;
    background: rgba(var(--particle-color), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.module-card:hover .module-arrow {
    background: var(--gradient-accent);
    color: white;
    transform: translateX(5px);
}

/* ===== CTA区域 ===== */
.cta-section {
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1.25rem 2.5rem;
    background: var(--gradient-accent);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.cta-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--particle-color), 0.15), transparent 70%);
    pointer-events: none;
}

/* ===== 页脚 ===== */
.footer {
    padding: 4rem 5% 2rem;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.4rem 0;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ===== 弹窗 ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    animation: modalIconPulse 2s ease-in-out infinite;
}

@keyframes modalIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.modal-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* 联系信息弹窗 */
.contact-info-modal {
    text-align: center;
}
.contact-info-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 1.5rem 0;
}
.contact-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-dark);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-primary);
}
.contact-info-item i {
    font-size: 1.2rem;
    color: var(--accent);
}

.modal-close {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.875rem 2rem;
    background: var(--gradient-accent);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== 响应式设计 ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .concept-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .orbit-container {
        width: 300px;
        height: 300px;
        margin-top: 2rem;
    }

    .orbit-1 { width: 150px; height: 150px; margin: -75px 0 0 -75px; }
    .orbit-2 { width: 220px; height: 220px; margin: -110px 0 0 -110px; }
    .orbit-3 { width: 280px; height: 280px; margin: -140px 0 0 -140px; }

    .center-core {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .navbar .nav-right {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .concept-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .module-card {
        flex-direction: column;
        text-align: center;
    }

    .module-tags {
        justify-content: center;
    }

    .module-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }

    .hero {
        padding: 100px 1.5rem 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }
}

/* ===== 平台价值看板 ===== */
.value-section {
    padding: 4rem 5%;
    background: linear-gradient(180deg, transparent 0%, rgba(var(--particle-color), 0.05) 100%);
}

.value-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.4s ease;
}

.value-card.main-value {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(var(--particle-color), 0.1) 100%);
    border-color: rgba(var(--particle-color), 0.3);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(var(--particle-color), 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.value-content {
    flex: 1;
}

.value-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 0.5rem;
}

.value-amount .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
}

.value-amount .number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.value-formula {
    font-size: 0.875rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.value-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.value-note {
    max-width: 1000px;
    margin: 1.5rem auto 0;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.value-note i {
    color: var(--accent);
}

/* ===== 资助计划 ===== */
.sponsor-section {
    padding: 5rem 5%;
    background: var(--bg-card);
}

.sponsor-section .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.sponsor-section .section-title i {
    color: #ef4444;
}

.sponsor-main {
    max-width: 500px;
    margin: 0 auto 3rem;
    text-align: center;
}

.sponsor-total {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.sponsor-total .sponsor-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.sponsor-total .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ef4444;
}

.sponsor-total .number {
    font-size: 3rem;
    font-weight: 900;
    color: #ef4444;
}

.sponsor-total .sponsor-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.sponsor-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.sponsor-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sponsor-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.sponsor-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.sponsor-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--border);
}

.sponsor-divider span {
    background: var(--bg-card);
    padding: 0 1.5rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.sponsor-list {
    max-width: 900px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.sponsor-card {
    background: rgba(var(--particle-color), 0.05);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.sponsor-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}

/* 共建者宣传图 */
.sponsor-promo {
    margin-top: 10px;
    width: 100%;
}

.sponsor-promo-img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.sponsor-promo-img:hover {
    opacity: 0.85;
}

.sponsor-card:hover {
    border-color: rgba(var(--particle-color), 0.3);
    transform: translateY(-3px);
}

.sponsor-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

.sponsor-info {
    flex: 1;
    min-width: 0;
}

.sponsor-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.sponsor-amount {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
}

.sponsor-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== 任务区域 ===== */
.tasks-section {
    padding: 5rem 5%;
}

.tasks-grid {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.task-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
    transition: all 0.4s ease;
    cursor: pointer;
}

.task-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--particle-color), 0.4);
    box-shadow: 0 20px 50px rgba(var(--particle-color), 0.15);
}

.task-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.4rem 0.8rem;
    background: rgba(var(--particle-color), 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.task-category i {
    font-size: 0.7rem;
}

.task-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.task-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.task-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.task-meta > div {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.task-meta i {
    font-size: 0.75rem;
}

.task-reward {
    color: var(--accent) !important;
    font-weight: 600;
}

.task-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--gradient-accent);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.task-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.view-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
    padding: 0.875rem 2rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: rgba(var(--particle-color), 0.1);
    border-color: var(--accent);
}

/* ===== 实时收益 ===== */
.live-feed-section {
    padding: 3rem 5%;
    background: rgba(var(--particle-color), 0.03);
}

.live-feed-section .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.25rem;
}

.live-indicator {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.live-feed-container {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.live-feed {
    display: flex;
    gap: 1rem;
    animation: scrollFeed 30s linear infinite;
}

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

.feed-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.feed-avatar {
    width: 32px;
    height: 32px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.feed-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.feed-user {
    font-weight: 600;
    color: var(--text-primary);
}

.feed-action {
    color: var(--text-secondary);
}

.feed-reward {
    color: var(--accent);
    font-weight: 600;
}

/* ===== 用户故事 ===== */
.stories-section {
    padding: 5rem 5%;
}

.stories-carousel {
    max-width: 700px;
    margin: 0 auto 2rem;
    position: relative;
}

.story-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    display: none;
}

.story-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.story-quote {
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.story-text {
    font-size: 1.25rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.story-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-detail {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.story-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.story-dots .dot {
    width: 10px;
    height: 10px;
    background: var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-dots .dot.active {
    background: var(--accent);
    width: 30px;
    border-radius: 5px;
}

/* ===== 为什么选择我们 ===== */
.why-section {
    padding: 5rem 5%;
    background: var(--bg-card);
}

.why-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: rgba(var(--particle-color), 0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--particle-color), 0.3);
    background: rgba(var(--particle-color), 0.08);
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
}

.why-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== 登录按钮 ===== */
.login-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.25rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

.login-btn:hover {
    background: rgba(var(--particle-color), 0.1);
    border-color: var(--accent);
}

/* ===== 资助弹窗 ===== */
.sponsor-modal {
    max-width: 450px;
}

.sponsor-modal .modal-icon.heart {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.sponsor-modal-desc {
    font-size: 0.95rem;
    line-height: 1.6;
}

.sponsor-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.sponsor-option {
    padding: 0.75rem;
    background: rgba(var(--particle-color), 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sponsor-option:hover,
.sponsor-option.active {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.sponsor-anonymous {
    margin-bottom: 1.5rem;
}

.sponsor-anonymous label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.sponsor-anonymous input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

.sponsor-contact {
    background: rgba(var(--particle-color), 0.05);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.sponsor-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.sponsor-contact p:last-child {
    margin-bottom: 0;
}

.sponsor-contact strong {
    color: var(--accent);
}

/* ===== 移动端认证按钮 ===== */
.mobile-auth-btns {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    border-top: 1px solid var(--border);
}

.mobile-auth-btns .login-btn {
    flex: 1;
    justify-content: center;
    margin: 0;
}

.mobile-auth-btns .join-btn {
    flex: 1;
    justify-content: center;
}

/* ===== Hero优化 ===== */
.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== 响应式补充 ===== */
@media (max-width: 992px) {
    .value-container {
        grid-template-columns: 1fr;
    }

    .tasks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sponsor-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tasks-grid {
        grid-template-columns: 1fr;
    }

    .sponsor-list {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .story-card {
        padding: 2rem;
    }

    .story-text {
        font-size: 1.1rem;
    }

    .live-feed {
        animation-duration: 15s;
    }
}

/* ===== Hero Stats Bar ===== */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.hero-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}

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

.hero-stat-divider {
    width: 1px;
    height: 30px;
    background: var(--border);
}

/* ===== Vision Section ===== */
.vision-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.vision-problem,
.vision-solution {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    max-width: 600px;
    text-align: center;
}

.vision-problem h3,
.vision-solution h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.vision-problem h3 i { color: var(--secondary); }
.vision-solution h3 i { color: var(--accent); }

.vision-problem p,
.vision-solution p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.vision-solution .highlight {
    color: var(--accent);
    font-weight: 600;
}

.vision-arrow {
    color: var(--accent);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.vision-how {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.vision-how h3 {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.vision-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.vision-step {
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-dark);
    margin: 0 auto 1rem;
    font-size: 1.1rem;
}

.vision-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.vision-difference h3 {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.diff-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.diff-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
    color: white;
}

.diff-item h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

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

/* ===== Sponsor Tiers ===== */
.sponsor-tier {
    margin-top: 2rem;
}

.tier-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.tier-header i { font-size: 1.1rem; }
.tier-header span { font-weight: 600; color: var(--text-primary); }

.tier-badge {
    background: var(--bg-card);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.gold-tier .tier-header i { color: #ffd700; }
.gold-tier .tier-badge { background: rgba(255, 215, 0, 0.1); color: #ffd700; }

.partner-tier .tier-header i { color: var(--secondary); }
.partner-tier .tier-badge { background: rgba(59, 130, 246, 0.1); color: var(--secondary); }

.supporter-tier .tier-header i { color: var(--accent); }

.tier-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tier-list.compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.sponsor-card.gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, var(--bg-card) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 300px;
}

.sponsor-card.gold .sponsor-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #1a1a1a;
}

.sponsor-card.gold .sponsor-info { flex: 1; }
.sponsor-card.gold .sponsor-name { font-weight: 600; color: #ffd700; }
.sponsor-card.gold .sponsor-amount { color: #ffd700; font-weight: 700; }

.sponsor-links {
    display: flex;
    gap: 0.5rem;
}

.sponsor-links a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
}

.sponsor-links a:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.sponsor-message {
    width: 100%;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

.sponsor-card.partner {
    background: var(--bg-card);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 200px;
}

.sponsor-card.partner .sponsor-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
}

.sponsor-card.partner .sponsor-name { color: var(--secondary); }

.sponsor-card.mini {
    background: var(--bg-card);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sponsor-avatar.small {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
}

.sponsor-card.mini .sponsor-name { flex: 1; font-size: 0.9rem; }
.sponsor-card.mini .sponsor-amount { font-size: 0.85rem; color: var(--accent); }

/* ===== Story Quote Cards ===== */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.story-quote-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.quote-icon {
    color: var(--accent);
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.quote-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quote-author .author-avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-weight: 600;
}

.quote-author .author-name { color: var(--text-primary); font-weight: 500; }
.quote-author .author-detail { color: var(--text-muted); font-size: 0.85rem; }

/* ===== Responsive Updates ===== */
@media (max-width: 992px) {
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .hero-stat-divider { display: none; }
    .vision-steps,
    .difference-grid { grid-template-columns: repeat(2, 1fr); }
    .tier-list.compact { grid-template-columns: repeat(2, 1fr); }
    .stories-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-stats { padding: 0.75rem 1rem; }
    .hero-stat-value { font-size: 0.95rem; }
    .vision-steps,
    .difference-grid { grid-template-columns: 1fr; }
    .tier-list.compact { grid-template-columns: 1fr; }
    .sponsor-card.gold {
        flex-direction: column;
        text-align: center;
        min-width: auto;
    }
    .sponsor-card.gold .sponsor-info { text-align: center; }
}
/* ===== Hero Stats Bar ===== */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.hero-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}

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

.hero-stat-divider {
    width: 1px;
    height: 30px;
    background: var(--border);
}

/* ===== Vision Section ===== */
.vision-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.vision-problem,
.vision-solution {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    max-width: 600px;
    text-align: center;
}

.vision-problem h3,
.vision-solution h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.vision-problem h3 i { color: var(--secondary); }
.vision-solution h3 i { color: var(--accent); }

.vision-problem p,
.vision-solution p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.vision-solution .highlight {
    color: var(--accent);
    font-weight: 600;
}

.vision-arrow {
    color: var(--accent);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.vision-how {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.vision-how h3 {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.vision-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.vision-step {
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-dark);
    margin: 0 auto 1rem;
    font-size: 1.1rem;
}

.vision-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.vision-difference {
    margin-top: 2rem;
}

.vision-difference h3 {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.diff-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.diff-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
    color: white;
}

.diff-item h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

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

/* ===== Sponsor Tiers ===== */
.sponsor-tier {
    margin-top: 2rem;
}

.tier-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.tier-header i { font-size: 1.1rem; }
.tier-header span { font-weight: 600; color: var(--text-primary); }

.tier-badge {
    background: var(--bg-card);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.gold-tier .tier-header i { color: #ffd700; }
.gold-tier .tier-badge { background: rgba(255, 215, 0, 0.1); color: #ffd700; }

.partner-tier .tier-header i { color: var(--secondary); }
.partner-tier .tier-badge { background: rgba(59, 130, 246, 0.1); color: var(--secondary); }

.supporter-tier .tier-header i { color: var(--accent); }

.tier-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tier-list.compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.sponsor-card.gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, var(--bg-card) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 300px;
}

.sponsor-card.gold .sponsor-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #1a1a1a;
}

.sponsor-card.gold .sponsor-info { flex: 1; }
.sponsor-card.gold .sponsor-name { font-weight: 600; color: #ffd700; }
.sponsor-card.gold .sponsor-amount { color: #ffd700; font-weight: 700; }

.sponsor-links {
    display: flex;
    gap: 0.5rem;
}

.sponsor-links a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
}

.sponsor-links a:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.sponsor-message {
    width: 100%;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

.sponsor-card.partner {
    background: var(--bg-card);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 200px;
}

.sponsor-card.partner .sponsor-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
}

.sponsor-card.partner .sponsor-name { color: var(--secondary); }

.sponsor-card.mini {
    background: var(--bg-card);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sponsor-avatar.small {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
}

.sponsor-card.mini .sponsor-name { flex: 1; font-size: 0.9rem; }
.sponsor-card.mini .sponsor-amount { font-size: 0.85rem; color: var(--accent); }

/* ===== Story Quote Cards ===== */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.story-quote-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.quote-icon {
    color: var(--accent);
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.quote-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quote-author .author-avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-weight: 600;
}

.quote-author .author-name { color: var(--text-primary); font-weight: 500; }
.quote-author .author-detail { color: var(--text-muted); font-size: 0.85rem; }

/* ===== Responsive Updates ===== */
@media (max-width: 992px) {
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .hero-stat-divider { display: none; }
    .vision-steps,
    .difference-grid { grid-template-columns: repeat(2, 1fr); }
    .tier-list.compact { grid-template-columns: repeat(2, 1fr); }
    .stories-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-stats { padding: 0.75rem 1rem; }
    .hero-stat-value { font-size: 0.95rem; }
    .vision-steps,
    .difference-grid { grid-template-columns: 1fr; }
    .tier-list.compact { grid-template-columns: 1fr; }
    .sponsor-card.gold {
        flex-direction: column;
        text-align: center;
        min-width: auto;
    }
    .sponsor-card.gold .sponsor-info { text-align: center; }
}
/* ===== 方案C文案更新补充样式 ===== */

/* Hero徽章样式优化 */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-badge i {
    font-size: 0.85rem;
}

/* 副标题样式 */
.sub-title {
    display: block;
    font-size: 0.5em;
    font-weight: 300;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* 按钮文字调整 */
.hero-actions .join-btn span {
    font-size: 0.95rem;
}

/* 在这里你可以 - 卡片网格 */
.can-do-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.can-do-card {
    background: var(--bg-card);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.can-do-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.can-do-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: var(--bg-dark);
}

.can-do-card h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

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

/* 理念说明文字 */
.vision-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(var(--accent), 0.05);
    border-radius: 12px;
    border: 1px dashed var(--border);
}

.vision-note p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* 任务卡片优化 - 次要位置显示金额 */
.task-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.task-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.task-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    width: fit-content;
}

.task-title {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.task-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.task-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.task-meta > div {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.task-meta > div i {
    font-size: 0.8rem;
}

/* 金额次要显示 */
.task-reward {
    opacity: 0.7;
    font-size: 0.8rem !important;
}

.task-reward::after {
    content: "惊喜";
    margin-left: 0.25rem;
    font-size: 0.75rem;
    color: var(--accent);
}

.task-slots {
    color: var(--secondary) !important;
}

.task-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--gradient-accent);
    border: none;
    border-radius: 10px;
    color: var(--bg-dark);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.task-btn:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow);
}

/* 直播流优化 - 弱化金额 */
.feed-reward {
    font-size: 0.75rem;
    opacity: 0.6;
    color: var(--accent);
}

.feed-extra {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--secondary);
    background: rgba(59, 130, 246, 0.1);
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    margin-left: 0.5rem;
}

/* 共建区域优化 */
.sponsor-main {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-card);
    border-radius: 20px;
    margin-bottom: 2rem;
}

.sponsor-total {
    margin-bottom: 1rem;
}

.sponsor-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
}

.sponsor-amount .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.sponsor-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.sponsor-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.sponsor-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-accent);
    border: none;
    border-radius: 50px;
    color: var(--bg-dark);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sponsor-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* 共建者等级样式 */
.sponsor-tier {
    margin-top: 2rem;
}

.tier-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.tier-header i {
    font-size: 1.1rem;
}

.tier-header span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

/* 金牌守护者 */
.gold-tier .tier-header i { color: #ffd700; }

.gold-tier .sponsor-card.gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, var(--bg-card) 100%);
    border: 1px solid rgba(255, 215, 0, 0.25);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    min-width: 280px;
}

.gold-tier .sponsor-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.gold-tier .sponsor-info { flex: 1; }
.gold-tier .sponsor-name { color: #ffd700; font-weight: 600; font-size: 1.05rem; }
.gold-tier .sponsor-contribution { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.25rem; }

.sponsor-links {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.sponsor-links a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
}

.sponsor-links a:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.sponsor-message {
    width: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

/* 合作者 */
.partner-tier .tier-header i { color: var(--secondary); }

.partner-tier .sponsor-card.partner {
    background: var(--bg-card);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 200px;
}

.partner-tier .sponsor-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.partner-tier .sponsor-name { color: var(--secondary); font-weight: 500; }
.partner-tier .sponsor-contribution { color: var(--text-muted); font-size: 0.8rem; }

/* 伙伴 */
.supporter-tier .tier-header i { color: var(--accent); }

.supporter-tier .tier-list.compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.supporter-tier .sponsor-card.mini {
    background: var(--bg-card);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sponsor-avatar.small {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
}

.sponsor-card.mini .sponsor-name {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.sponsor-card.mini .sponsor-contribution {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* CTA区域优化 */
.cta-section {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--gradient-accent);
    border: none;
    border-radius: 50px;
    color: var(--bg-dark);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(var(--accent-rgb), 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* 隐藏元素 */
.hidden {
    display: none !important;
}

/* 响应式补充 */
@media (max-width: 992px) {
    .can-do-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .can-do-grid {
        grid-template-columns: 1fr;
    }

    .supporter-tier .tier-list.compact {
        grid-template-columns: 1fr;
    }

    .gold-tier .sponsor-card.gold {
        flex-direction: column;
        text-align: center;
        min-width: auto;
    }

    .gold-tier .sponsor-links {
        justify-content: center;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* ===== 专属空间页面 ===== */
.space-section {
    min-height: 100vh;
    padding: 100px 20px 60px;
    background: var(--bg-dark);
}

.space-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* 已登录状态 - 双栏布局 */
.space-logged-in {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* 第一行:身份卡 + 收益卡 并排 */
.space-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

/* 身份卡紧凑版 */
.space-logged-in .identity-card {
    padding: 20px;
}

.space-logged-in .identity-card .identity-main {
    margin-bottom: 16px;
}

.space-logged-in .identity-card .identity-avatar {
    width: 56px;
    height: 56px;
}

.space-logged-in .identity-card .identity-avatar img {
    width: 56px;
    height: 56px;
}

.space-logged-in .identity-card .identity-name {
    font-size: 1.1rem;
}

.space-logged-in .identity-card .identity-stats {
    padding: 12px 0;
    gap: 16px;
}

.space-logged-in .identity-card . stat-item .stat-value {
    font-size: 1.2rem;
}

.space-logged-in .identity-card .identity-progress {
    margin-top: 16px;
}

.space-logged-in .identity-card .identity-progress .progress-header {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.space-logged-in .identity-card .identity-progress .progress-bar {
    height: 6px;
    margin-bottom: 12px;
}

.space-logged-in .identity-card .apply-member-btn {
    padding: 10px;
    font-size: 0.9rem;
}

/* 收益卡紧凑版 */
.space-logged-in .earnings-card {
    padding: 20px;
}

.space-logged-in .earnings-card .card-header {
    margin-bottom: 16px;
}

.space-logged-in .earnings-card .card-header h3 {
    font-size: 1rem;
}

.space-logged-in .earnings-card .earnings-overview {
    margin-bottom: 16px;
}

.space-logged-in .earnings-card .earning-main {
    padding: 12px 0;
    margin-bottom: 12px;
}

.space-logged-in .earnings-card .earning-amount {
    font-size: 2rem;
}

.space-logged-in .earnings-card .earning-details {
    gap: 20px;
}

.space-logged-in .earnings-card .withdraw-btn {
    padding: 12px;
    font-size: 0.9rem;
}

/* 第一行并排布局 */
.space-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

/* 第二行:任务大厅 */
.tasks-card {
    grid-column: 1 / 2;
}

.tasks-card .task-filters {
    margin-bottom: 16px;
    gap: 8px;
}

.tasks-card .task-item {
    padding: 12px;
}

.tasks-card .task-join-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* 未登录状态 */
.space-header {
    text-align: center;
    margin-bottom: 40px;
}

.space-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-glow);
}

.space-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.space-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
}

/* 功能介绍卡片 */
.space-intro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.intro-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 16px;
    transition: all 0.3s ease;
}

.intro-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.intro-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.intro-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.intro-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* 身份等级 */
.space-levels {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 40px;
}

.levels-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: center;
}

.levels-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.level-card {
    text-align: center;
    padding: 16px;
}

.level-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 12px;
}

.level-badge.visitor {
    background: var(--bg-card-hover);
    color: var(--text-muted);
    border: 2px dashed var(--border);
}

.level-badge.participant {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #fff;
}

.level-badge.member {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.level-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.level-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.level-arrow {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* 登录注册表单 */
.space-auth {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
}

.auth-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.auth-tab {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-tab.active {
    background: var(--gradient-accent);
    border-color: transparent;
    color: white;
    font-weight: 600;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(var(--particle-color), 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.code-input {
    display: flex;
    gap: 12px;
}

.code-input input {
    flex: 1;
}

.send-code-btn {
    padding: 0 20px;
    background: transparent;
    border: 1px solid var(--accent);
    border-radius: 10px;
    color: var(--accent);
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.send-code-btn:hover {
    background: var(--accent);
    color: white;
}

.auth-submit {
    width: 100%;
    padding: 16px;
    background: var(--gradient-accent);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ===== 已登录状态 ===== */
.space-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}

/* 身份卡和收益卡 - 统一高度布局 */
.space-logged-in .space-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* 身份卡 - 紧凑布局 */
.identity-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
    display: flex;
    flex-direction: column;
}

.identity-card .identity-main {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.identity-card .identity-avatar {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.identity-card .identity-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

.identity-card .avatar-edit {
    width: 20px;
    height: 20px;
    font-size: 0.6rem;
}

.identity-card .identity-info {
    flex: 1;
}

.identity-card .identity-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.identity-card .identity-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
}

.identity-card .identity-badge.participant {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
}

.identity-card .identity-badge.member {
    background: rgba(167, 139, 250, 0.15);
    color: #a78bfa;
}

.identity-card .identity-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.identity-card .stat-item .stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.identity-card .stat-item .stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.identity-card .stat-divider {
    display: none;
}

/* 收益卡明细行样式修正 */
.earnings-card .earning-details {
    border-top: none;
    padding-top: 0;
}

.earnings-card .earning-details .earning-item .label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.earnings-card .earning-details .earning-item .value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.identity-card .identity-progress {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 12px;
}

.identity-card .progress-header {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.identity-card .progress-bar {
    height: 6px;
    margin-bottom: 10px;
}

.identity-card .apply-member-btn {
    padding: 10px;
    font-size: 0.85rem;
    border-radius: 8px;
}

/* 收益卡 - 紧凑布局 */
.earnings-card {
    display: flex;
    flex-direction: column;
}

.earnings-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 12px;
}

.earnings-card .card-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.earnings-card .card-header h3 i {
    color: var(--accent);
}

.earnings-card .view-all {
    font-size: 0.8rem;
    color: var(--accent);
    text-decoration: none;
}

.earnings-card .earnings-overview {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.earnings-card .earning-main {
    text-align: center;
    padding: 8px 0;
}

.earnings-card .earning-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.earnings-card .earning-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.earnings-card .earning-amount .currency {
    font-size: 1rem;
    margin-right: 2px;
}

.earnings-card .earning-details {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.earnings-card .earning-item {
    text-align: center;
}

.earnings-card .earning-item .label {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 2px;
}

.earnings-card .earning-item .value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.earnings-card .earnings-actions {
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.earnings-card .withdraw-btn {
    width: 100%;
    padding: 10px;
    background: var(--gradient-accent);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.earnings-card .withdraw-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.earnings-card .withdraw-btn .lock-tip {
    font-size: 0.75rem;
    opacity: 0.8;
}

.earnings-card .withdraw-btn:not(:disabled):hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

/* 卡片通用头部 */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-header h3 i {
    color: var(--accent);
}

.view-all {
    font-size: 0.85rem;
    color: var(--accent);
    text-decoration: none;
}

.view-all:hover {
    text-decoration: underline;
}

/* 任务大厅 */

/* 任务大厅 */
.task-filters,
.record-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-dark);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.task-item:hover {
    background: var(--bg-card-hover);
}

.task-tag {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.task-tag.cash {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.task-tag.contribution {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.task-info {
    flex: 1;
    min-width: 0;
}

.task-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.task-meta {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.task-meta i {
    margin-right: 4px;
}

.task-join-btn {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--accent);
    border-radius: 8px;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.task-join-btn:hover {
    background: var(--accent);
    color: white;
}

/* 记录列表 */
.record-list {
    min-height: 100px;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.empty-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    opacity: 0.5;
}

.empty-text {
    font-size: 0.9rem;
}

/* 更多功能 - 紧凑版 */
.more-card {
    margin-bottom: 0;
}

/* 标题旁的注解文案 */
.more-header-intro {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 12px;
    opacity: 0.8;
}

.more-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.more-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    background: var(--bg-dark);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.more-item:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.more-icon {
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 6px;
}

.more-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

/* 功能状态标签 */
.more-status {
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.more-status.dev {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.more-status.active {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

/* 卡片间距统一 */
.space-row {
    margin-bottom: 20px;
}

.tasks-card,
.more-card,
.records-card {
    margin-bottom: 20px;
}

.tasks-card:last-child,
.more-card:last-child,
.records-card:last-child {
    margin-bottom: 0;
}

/* 响应式 */
@media (max-width: 768px) {
    .space-section {
        padding: 80px 16px 40px;
    }

    .space-container {
        padding: 0 8px;
    }

    .space-intro {
        grid-template-columns: 1fr;
    }

    .levels-grid {
        flex-direction: column;
        gap: 8px;
    }

    .level-arrow {
        transform: rotate(90deg);
    }

    .space-row {
        grid-template-columns: 1fr;
    }

    .space-logged-in .identity-card,
    .space-logged-in .earnings-card {
        padding: 16px;
    }

    .identity-stats {
        gap: 16px;
    }

    .earning-details {
        flex-direction: column;
        gap: 12px;
    }

    .more-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .more-item {
        padding: 10px 6px;
    }

    .more-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .more-name {
        font-size: 0.75rem;
    }

    .more-status {
        font-size: 0.55rem;
        padding: 1px 4px;
    }

    .more-header-intro {
        display: block;
        margin-left: 0;
        margin-top: 4px;
    }

    .task-item {
        flex-wrap: wrap;
    }

    .task-join-btn {
        width: 100%;
        margin-top: 12px;
    }

    /* 已登录状态默认隐藏"我的记录" */
    .space-logged-in .records-card {
        display: none;
    }
}

/* ===== 共建弹窗新样式 ===== */
.sponsor-custom-amount {
    margin: 0 0 1rem;
}

.sponsor-custom-amount input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(var(--particle-color), 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
}

.sponsor-custom-amount input:focus {
    outline: none;
    border-color: #ef4444;
}

.sponsor-message-area {
    margin-bottom: 1rem;
}

.sponsor-message-area textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(var(--particle-color), 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.9rem;
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.sponsor-message-area textarea:focus {
    outline: none;
    border-color: #ef4444;
}

.sponsor-message-area textarea::placeholder {
    color: var(--text-muted);
}

.sponsor-char-count {
    text-align: right;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.sponsor-submit-btn {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.sponsor-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

.sponsor-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* 守护者头像图片 */
.sponsor-avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.sponsor-avatar-img.small {
    width: 28px;
    height: 28px;
}

.sponsor-card.gold .sponsor-avatar-img {
    width: 50px;
    height: 50px;
}

.sponsor-card.partner .sponsor-avatar-img {
    width: 40px;
    height: 40px;
}

/* 了解更多文案 */
.sponsor-learn-more {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 1.5rem 0 1rem;
    font-style: italic;
}
