:root {
    --primary-color: #f3ba2f; /* BNB Yellow */
    --bg-dark: #0b0e11;
    --bg-card: #1e2329;
    --text-main: #eaecef;
    --text-muted: #848e9c;
    --white: #ffffff;
    --container-width: 1100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏基础样式 */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #2b2f36;
    background: rgba(11, 14, 17, 0.98);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
}

/* 仅在首页（有沉浸式背景时）启用透明悬浮模式 */
body:has(.hero-v2) .navbar {
    position: absolute;
    top: 36px;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body:has(.hero-v2) .activity-ticker {
    position: absolute;
    top: 0;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 20px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* 按钮样式 */
.btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, opacity 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* 跑马灯基础样式 */

/* Hero V2 样式 (参考截图) */
.hero-v2 {
    position: relative;
    padding: 0;
    background: radial-gradient(circle at 70% 30%, rgba(243, 186, 47, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(153, 50, 204, 0.08) 0%, transparent 50%);
    overflow: hidden;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.hero-floating-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 650px;
    z-index: 2; /* 位于视频之上 */
    pointer-events: none;
    user-select: none;
}

.hero-floating-visual img {
    width: 100%;
    height: auto;
    /* 移除投影和动效 */
}

.hero-overlay-v2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 强化底部遮罩，从透明到完全不透明的背景色过渡 */
    background: linear-gradient(
        to bottom,
        rgba(11, 14, 17, 0.2) 0%,
        rgba(11, 14, 17, 0.5) 70%,
        var(--bg-dark) 100%
    );
    z-index: 3; /* 位于装饰图之上，产生压盖感 */
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 4; /* 文字始终在最顶层 */
    width: 100%;
    padding-top: 120px; /* 为顶部的透明导航预留空间 */
}

.hero-content-left {
    flex: 1;
    max-width: 600px;
}

.hero-title-v2 {
    font-family: 'Noto Serif SC', serif;
    font-size: 4.2rem;
    font-weight: 500;
    line-height: 1.1; /* 紧凑的行高 */
    margin-bottom: 12px;
    letter-spacing: -0.02em; /* 较小的字间距，显得更厚重精致 */
    color: #fff;
    text-align: left;
}

.highlight-v2 {
    color: #fff;
    display: inline;
}

.hero-subtitle-v2 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-align: left;
}

.hero-actions-v2 {
    display: flex;
    gap: 25px;
    justify-content: flex-start;
}

.btn-v2 {
    padding: 10px 35px; /* 截图中的按钮比较扁平长条 */
    border-radius: 50px; /* 胶囊形状 */
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    color: #fff;
}

.btn-primary-v2 {
    background: linear-gradient(90deg, #ff8c00, #f3ba2f); /* 橙黄渐变 */
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.3); /* 橙色发光 */
    border: none;
}

.btn-primary-v2:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.5);
}

.btn-outline-v2 {
    background: linear-gradient(90deg, #e91e63, #9c27b0); /* 粉紫渐变 */
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.3); /* 粉色发光 */
    border: none;
}

.btn-outline-v2:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(233, 30, 99, 0.5);
    border-color: transparent;
}

.hero-visual-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    perspective: 1000px;
}

.video-floating-card {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    transform: rotateY(-15deg) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5),
                0 0 40px rgba(243, 186, 47, 0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: rotateY(-15deg) rotateX(5deg) translateY(0); }
    50% { transform: rotateY(-12deg) rotateX(2deg) translateY(-20px); }
}

.video-overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(11, 14, 17, 0.4) 100%);
    pointer-events: none;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 4s ease-in-out;
}

.hero-video.active {
    opacity: 1;
}

/* 响应式适配 */
@media (max-width: 1200px) {
    .hero-title-v2 { font-size: 3.8rem; }
    .video-floating-card { width: 400px; height: 400px; }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content-left {
        max-width: 100%;
        margin-bottom: 60px;
    }
    .hero-actions-v2 { justify-content: center; }
    .hero-visual-right { justify-content: center; }
    .video-floating-card { transform: none; animation: float-simple 6s ease-in-out infinite; }
}

@keyframes float-simple {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@media (max-width: 768px) {
    .hero-v2 {
        height: auto;
        padding: 100px 0 60px;
    }
    .hero-container {
        padding-top: 100px;
        flex-direction: column;
        gap: 40px;
    }
    .hero-title-v2 {
        font-size: 2.4rem; /* 进一步缩小标题 */
        line-height: 1.2;
        letter-spacing: 0;
        text-align: center;
    }
    .hero-subtitle-v2 {
        font-size: 0.95rem;
        text-align: center;
        margin-bottom: 30px;
    }
    .hero-actions-v2 {
        width: 100%;
        padding: 0 20px;
    }
    .btn-v2 {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }
    
    /* 导航栏适配优化 */
    .navbar {
        height: auto;
        padding: 15px 0;
    }
    .navbar .container {
        flex-direction: column;
        gap: 12px;
    }
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .nav-links a {
        margin: 0 8px;
        font-size: 0.85rem;
    }
    .auth-buttons {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }
}

/* 原有 Hero 样式清理 */
.hero { display: none; }

/* 统计看板 */
.stats-board {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 1px solid #2b2f36;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: #2b2f36;
}

/* 产品优势区域 - Bento Grid 升级版 */
.advantages-section {
    padding: 120px 0;
    background: #0b0e11;
    position: relative;
}

.section-header-v2 {
    text-align: center;
    margin-bottom: 70px;
}

.section-title-v3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 4px;
    margin-bottom: 15px;
    color: #fff;
}

.section-subtitle-v3 {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.advantages-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 25px;
}

.bento-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 45px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.card-large {
    grid-column: span 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.card-small {
    grid-column: span 1;
}

.bento-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.5s ease;
    flex-shrink: 0;
}

.card-large .bento-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 0;
}

.bento-card:hover .bento-icon {
    background: var(--primary-color);
    color: #000;
    transform: rotate(-10deg) scale(1.1);
}

.bento-icon svg {
    width: 32px;
    height: 32px;
}

.card-large .bento-icon svg {
    width: 48px;
    height: 48px;
}

.bento-card h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 1px;
}

.bento-card p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    font-size: 1rem;
}

.bento-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(243, 186, 47, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bento-card:hover .bento-bg-glow {
    opacity: 1;
}

.bento-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-large .bento-content {
    flex-direction: row;
    align-items: center;
}

.card-large .bento-text {
    flex: 1;
}

@media (max-width: 1100px) {
    .advantages-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }
    .card-large {
        grid-column: span 2;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .card-large .bento-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .advantages-bento {
        grid-template-columns: 1fr;
    }
    .card-large, .card-small {
        grid-column: span 1;
    }
    .section-title-v3 {
        font-size: 2.2rem;
    }
}

/* 运作方式 - 流程化设计 */
.steps-section {
    padding: 120px 0;
    background: #0b0e11;
}

.steps-flow {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    gap: 40px;
    position: relative;
}

.step-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-visual {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number-v2 {
    position: absolute;
    font-size: 6rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03); /* 极淡的底纹数字 */
    z-index: 0;
    font-family: 'Inter', sans-serif;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step-icon-v2 {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    background: rgba(243, 186, 47, 0.05);
    border: 1px solid rgba(243, 186, 47, 0.2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.5s ease;
}

.step-node:hover .step-icon-v2 {
    background: var(--primary-color);
    color: #000;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(243, 186, 47, 0.3);
}

.step-icon-v2 svg {
    width: 32px;
    height: 32px;
}

.step-info h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 1px;
}

.step-info p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
}

/* 连接线 */
.step-line {
    position: absolute;
    top: 60px;
    left: calc(50% + 70px);
    width: calc(100% - 140px);
    height: 1px;
    background: linear-gradient(90deg, rgba(243, 186, 47, 0.3) 0%, transparent 100%);
    z-index: 0;
}

@media (max-width: 992px) {
    .steps-flow {
        flex-direction: column;
        align-items: flex-start;
        gap: 60px;
        padding-left: 40px;
    }
    .step-node {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 30px;
    }
    .step-visual { margin-bottom: 0; }
    .step-line {
        top: 120px;
        left: 60px;
        width: 1px;
        height: calc(100% - 20px);
        background: linear-gradient(180deg, rgba(243, 186, 47, 0.3) 0%, transparent 100%);
    }
}

/* 步骤区域 (原有清理) */
.steps { display: none; }


/* 跑马灯基础样式 */
.activity-ticker {
    background: #1e2329;
    border-bottom: 1px solid #2b2f36;
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    z-index: 100;
}

body:has(.hero-v2) .activity-ticker {
    position: absolute;
    top: 0;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.activity-ticker:hover .ticker-content {
    animation-play-state: paused;
}

.ticker-content {
    display: inline-block;
    padding-left: 0; /* 移除 100% 偏移，让内容立刻出现 */
    animation: ticker 150s linear infinite;
}

.ticker-content span {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 120px;
    display: inline-block; /* 确保间距生效 */
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); } /* 因为 JS 复制了 3 份，所以移动 1/3 即可实现无缝 */
}

/* FOMO 区域与精简排行榜 */
.fomo-section {
    padding: 100px 0 80px;
    margin-top: -120px; /* 适度的负边距让内容微微浮在视频渐变层上 */
    position: relative;
    z-index: 10; /* 确保内容在视频层之上 */
    background: transparent; /* 背景透明，显示下方的渐变过渡 */
}

.fomo-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    align-items: flex-start;
}

.stats-board-v2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background: rgba(30, 35, 41, 0.4);
    backdrop-filter: blur(10px);
    padding: 25px 35px;
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid transparent;
    background-clip: padding-box;
}

/* 渐变边框实现 */
.stat-card::before, .mini-leaderboard::before {
    content: "";
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    border-radius: inherit;
    padding: 1px; /* 边框厚度 */
    background: linear-gradient(135deg, #ff8c00, #f3ba2f, #e91e63, #9c27b0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-value {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ff8c00, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-right: 10px;
}

.mini-leaderboard {
    background: rgba(30, 35, 41, 0.4);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
    border: 1px solid transparent;
}

.board-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.board-header h3 { font-size: 1.2rem; }
.view-all { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; }

.leader-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #2b2f36;
}

.leader-item:last-child { border-bottom: none; }

.rank-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #2b2f36;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    margin-right: 15px;
}

.rank-circle.gold { background: linear-gradient(135deg, #ffd700, #b8860b); color: #000; }
.rank-circle.silver { background: linear-gradient(135deg, #c0c0c0, #708090); color: #000; }
.rank-circle.bronze { background: linear-gradient(135deg, #cd7f32, #8b4513); color: #000; }

.user-info { flex: 1; }
.user-address { font-family: monospace; font-size: 0.95rem; }
.user-earnings { color: var(--primary-color); font-weight: 700; font-size: 1rem; }

/* 页脚样式 */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid #2b2f36;
    background: #0b0e11;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.footer-disclaimer {
    max-width: 800px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
    padding: 0 20px;
}

.footer-social {
    margin: 10px 0;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 10px;
}

/* 收益排行榜 - 现代榜单设计 */
.leaderboard-section {
    padding: 120px 0;
    background: #0b0e11;
}

.leaderboard-modern-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* 前三名领奖台 */
.top-performers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: flex-end;
    margin-bottom: 60px;
}

.podium-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.5s ease;
}

.podium-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
}

.podium-card.rank-1 {
    height: 320px;
    order: 2;
    background: linear-gradient(180deg, rgba(243, 186, 47, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(243, 186, 47, 0.2);
}

.podium-card.rank-2 { height: 280px; order: 1; }
.podium-card.rank-3 { height: 260px; order: 3; }

.rank-badge-v2 {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1e2329;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: -54px auto 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.rank-1 .rank-badge-v2 { background: var(--primary-color); color: #000; border-color: #ffc107; box-shadow: 0 0 20px rgba(243, 186, 47, 0.3); }
.rank-2 .rank-badge-v2 { background: #c0c0c0; color: #000; }
.rank-3 .rank-badge-v2 { background: #cd7f32; color: #000; }

.podium-addr { font-family: monospace; font-size: 1.1rem; margin-bottom: 10px; display: block; color: #fff; }
.podium-earnings { font-size: 1.8rem; font-weight: 800; color: var(--primary-color); display: block; }
.podium-meta { font-size: 0.85rem; color: rgba(255, 255, 255, 0.4); margin-top: 10px; display: block; }

/* 列表卡片 */
.leaderboard-list-card {
    background: rgba(30, 35, 41, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.list-header {
    display: grid;
    grid-template-columns: 80px 1fr 120px 150px 100px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.list-item-v2 {
    display: grid;
    grid-template-columns: 80px 1fr 120px 150px 100px;
    padding: 20px 30px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.3s;
}

.list-item-v2:hover { background: rgba(255, 255, 255, 0.02); }
.list-item-v2:last-child { border-bottom: none; }

.list-rank { font-weight: 700; color: rgba(255, 255, 255, 0.3); }
.list-addr { font-family: monospace; color: #fff; }
.list-count { color: rgba(255, 255, 255, 0.6); }
.list-earnings { font-weight: 700; color: var(--primary-color); }
.list-score { color: #28a745; font-weight: 600; }

@media (max-width: 768px) {
    .top-performers { grid-template-columns: 1fr; align-items: stretch; }
    .podium-card { height: auto !important; order: unset !important; padding: 40px 20px; }
    .rank-badge-v2 { margin-top: 0; position: absolute; left: 20px; top: 20px; width: 36px; height: 36px; font-size: 1rem; }
    .list-header { display: none; }
    .list-item-v2 { grid-template-columns: 40px 1fr 80px; gap: 10px; }
    .list-count, .list-score { display: none; }
}

/* 原有排行榜清理 */
.leaderboard { display: none; }

.badge {
    background: var(--primary-color);
    color: #000;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 4px;
    vertical-align: middle;
}

/* Toast 通知 */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-card);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: transform 0.3s, opacity 0.3s;
}

.toast.hidden {
    transform: translateY(100px);
    opacity: 0;
}

.toast-icon { font-size: 1.5rem; }
.toast-title { font-weight: 700; color: var(--primary-color); }
.toast-desc { font-size: 0.85rem; color: var(--text-muted); }

/* 首页热门任务预览 - 高端卡片流 */
.featured-tasks-section {
    margin-top: 80px;
    padding: 0;
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hot-tag {
    background: linear-gradient(90deg, #ff4d4d, #f9cb28);
    color: #000;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 1px;
    animation: hot-pulse 2s infinite;
}

@keyframes hot-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 rgba(255, 77, 77, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 15px rgba(255, 77, 77, 0.6); }
    100% { transform: scale(1); box-shadow: 0 0 0 rgba(255, 77, 77, 0.4); }
}

.view-all-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    color: var(--primary-color);
}

.view-all-btn:hover svg {
    transform: translateX(5px);
}

.featured-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* 热门任务卡片 V2 */
.featured-card-v2 {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.featured-card-v2:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.featured-card-v2::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(243, 186, 47, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.card-project-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-icon-v2 {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.card-project-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.card-title-v2 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.4rem;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 25px;
    height: 4rem; /* 限制高度保持整齐 */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-stats-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
}

.card-reward-v2 {
    display: flex;
    flex-direction: column;
}

.reward-label-v2 {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.reward-amount-v2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.card-spots-v2 {
    text-align: right;
}

.spots-label-v2 {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    display: block;
}

.spots-value-v2 {
    font-weight: 700;
    color: #fff;
}

@media (max-width: 992px) {
    .featured-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .featured-grid-v2 { grid-template-columns: 1fr; }
    .featured-header { flex-direction: column; align-items: flex-start; gap: 15px; }
}

/* 原有热门任务清理 */
.featured-tasks { display: none; }


/* 任务卡片基础样式优化 */
.task-card {
    background: rgba(11, 14, 17, 0.6);
    padding: 25px;
    border-radius: 20px;
    position: relative;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.task-card::before {
    content: "";
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, #f3ba2f, #e91e63);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.3;
}

.task-card:hover {
    transform: translateY(-8px);
    background: rgba(30, 35, 41, 0.8);
}

.task-card:hover::before {
    opacity: 0.8;
}

.task-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #fff;
}

.reward-value {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ff8c00, #f3ba2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* 页面通用布局 */
.page-content {
    padding: 40px 20px;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 2rem;
    font-weight: 800;
}

/* 筛选栏 */
.filter-bar {
    display: flex;
    gap: 10px;
}

.filter-btn {
    background: #1e2329;
    border: 1px solid #2b2f36;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* 发布任务页面布局 */
.create-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-card {
    background: var(--bg-card);
    border: 1px solid #2b2f36;
    border-radius: 24px;
    padding: 40px;
}

.form-header {
    margin-bottom: 40px;
    text-align: center;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #2b2f36;
}

.form-section:last-of-type { border-bottom: none; }
.form-section h3 { margin-bottom: 25px; color: var(--primary-color); }

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group textarea {
    width: 100%;
    background: #0b0e11;
    border: 1px solid #2b2f36;
    border-radius: 12px;
    padding: 14px;
    color: #fff;
    resize: vertical;
    outline: none;
}

.input-group textarea:focus { border-color: var(--primary-color); }

.budget-preview {
    background: rgba(243, 186, 47, 0.05);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px dashed var(--primary-color);
}

.total-value { font-size: 1.5rem; font-weight: 800; color: var(--primary-color); }

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
}

/* 个人中心布局 */
.dashboard-hero {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.balance-card {
    background: linear-gradient(135deg, var(--bg-card), #2b2f36);
    border: 1px solid var(--primary-color);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.balance-info .label { color: var(--text-muted); font-size: 1rem; margin-bottom: 10px; display: block; }
.balance-info .value { font-size: 3rem; font-weight: 800; color: var(--primary-color); }
.balance-info .unit { font-size: 1.2rem; margin-left: 10px; }

.stats-mini-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.stat-mini-card {
    background: var(--bg-card);
    border: 1px solid #2b2f36;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-mini-card .label { color: var(--text-muted); font-size: 0.9rem; }
.stat-mini-card .value { font-weight: 700; font-size: 1.1rem; }
.stat-mini-card .value.highlight { color: var(--primary-color); }

/* 任务记录列表 */
.dashboard-sections {
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid #2b2f36;
    padding: 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
}

.creator-task-list {
    display: flex;
    gap: 10px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 8px 16px;
    cursor: pointer;
    font-weight: 600;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.record-item {
    display: grid;
    grid-template-columns: 60px 1fr 120px 120px 120px;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #2b2f36;
    transition: background 0.3s;
}

.record-item:last-child { border-bottom: none; }
.record-item:hover { background: rgba(255,255,255,0.02); }

.record-icon { font-size: 1.5rem; }
.record-title h4 { margin-bottom: 4px; font-size: 1rem; }
.record-title p { font-size: 0.8rem; color: var(--text-muted); }

.record-reward { font-weight: 700; color: var(--primary-color); }

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
}

.status-pending { background: rgba(255, 193, 7, 0.1); color: #ffc107; }
.status-approved { background: rgba(40, 167, 69, 0.1); color: #28a745; }
.status-rejected { background: rgba(220, 53, 69, 0.1); color: #dc3545; }

/* 项目方管理列表 */
.creator-task-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.creator-task-item {
    background: #12161c;
    border: 1px solid #2b2f36;
    border-radius: 16px;
    padding: 20px 25px;
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr;
    align-items: center;
    gap: 20px;
}

.task-info-main h4 { margin-bottom: 5px; font-size: 1.1rem; }
.progress-container {
    background: #2b2f36;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 8px;
    width: 100%;
}

.progress-bar {
    background: var(--primary-color);
    height: 100%;
    border-radius: 4px;
}

.creator-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-small {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 6px;
}

.mb-40 { margin-bottom: 40px; }

/* 身份切换标签 */
.identity-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.identity-btn {
    background: #1e2329;
    border: 1px solid #2b2f36;
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.identity-btn.active {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

.identity-btn:hover:not(.active) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}



/* 弹窗 (Modal) */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--primary-color);
    border-radius: 24px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.modal-content h3 { margin-bottom: 15px; }
.modal-content .input-group { margin: 25px 0; }
.modal-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.hidden { display: none !important; }

.modal-icon {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 800;
}

.auth-feature-list {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 15px;
    margin: 20px 0;
    text-align: left;
}

.feature-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item:last-child { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }

/* 退出登录按钮 */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logout-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    border: 1px solid #2b2f36;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.logout-btn:hover {
    background: rgba(246, 70, 93, 0.1);
    color: #f6465d;
    border-color: rgba(246, 70, 93, 0.2);
    transform: translateY(-2px);
}

.logout-btn:active {
    transform: scale(0.95);
}

.logout-btn svg {
    display: block;
}

/* 任务卡片门槛标签 */
.task-thresholds {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.t-badge {
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
}

.t-badge.blue {
    color: #1d9bf0;
    border-color: rgba(29, 155, 240, 0.3);
    background: rgba(29, 155, 240, 0.05);
}

.t-badge.target {
    color: var(--primary-color);
    border-color: rgba(243, 186, 47, 0.3);
    background: rgba(243, 186, 47, 0.05);
}

/* 详情页门槛展示 */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.req-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #2b2f36;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.req-item.active {
    border-color: var(--primary-color);
    background: rgba(243, 186, 47, 0.05);
}

/* 蓝V认证切换开关（整合修复版） */
.threshold-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.6fr !important; /* 强制比例，给开关更多空间 */
    align-items: flex-end;
    gap: 20px;
}

.blue-verify-toggle {
    height: 48px;
    display: flex !important;
    align-items: center !important;
    background: #0b0e11;
    border: 1px solid #2b2f36;
    padding: 0 12px;
    border-radius: 10px;
    margin-top: 5px;
    cursor: pointer;
    position: relative;
    user-select: none;
    width: 100%;
    box-sizing: border-box;
}

.blue-verify-toggle input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.toggle-slider {
    width: 34px !important;
    height: 18px !important;
    background: #2b2f36;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s;
    flex-shrink: 0 !important; /* 强制不被压缩 */
    margin-right: 12px !important; /* 强制与文字隔离 */
}

.toggle-slider::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background: #848e9c;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
}

.blue-verify-toggle input:checked + .toggle-slider {
    background: #28a745 !important; /* 强制绿色 */
}

.blue-verify-toggle input:checked + .toggle-slider::before {
    transform: translateX(16px) !important;
    background: #fff !important;
}

.toggle-label {
    font-size: 0.85rem !important;
    color: var(--text-muted);
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
}

.mt-10 { margin-top: 10px; }
.ml-10 { margin-left: 10px; }

/* 详情页布局 */
.detail-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    margin-top: 20px;
}

.detail-main {
    background: var(--bg-card);
    border: 1px solid #2b2f36;
    border-radius: 24px;
    padding: 40px;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #2b2f36;
}

.project-info-large {
    display: flex;
    align-items: center;
    gap: 20px;
}

.project-icon-large {
    width: 80px;
    height: 80px;
    background: #2b2f36;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.reward-tag-large {
    text-align: right;
    background: rgba(243, 186, 47, 0.1);
    padding: 15px 25px;
    border-radius: 16px;
    border: 1px solid rgba(243, 186, 47, 0.2);
}

.reward-tag-large .label { display: block; font-size: 0.9rem; color: var(--text-muted); }
.reward-tag-large .value { font-size: 1.8rem; font-weight: 800; color: var(--primary-color); }

.task-section { margin-bottom: 40px; }
.task-section h3 { margin-bottom: 20px; font-size: 1.3rem; }

.copy-box {
    background: #0b0e11;
    border: 1px solid #2b2f36;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    margin-bottom: 20px;
}

.copy-box code {
    display: block;
    color: var(--text-main);
    font-family: inherit;
    margin-bottom: 15px;
    line-height: 1.6;
}

.requirements-list {
    list-style: none;
    color: var(--text-muted);
}

.requirements-list li { margin-bottom: 10px; }

/* 侧边栏提交卡片 */
.submit-card {
    background: var(--bg-card);
    border: 1px solid var(--primary-color);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 20px;
}

.submit-card h3 { margin-bottom: 15px; }

.input-group { margin: 25px 0; }
.input-group label { display: block; margin-bottom: 10px; font-size: 0.9rem; }
.input-group input, .form-select {
    width: 100%;
    background: #0b0e11;
    border: 1px solid #2b2f36;
    border-radius: 10px;
    padding: 14px;
    color: #fff;
    outline: none;
    appearance: none; /* 移除原生样式 */
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23848e9c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    cursor: pointer;
}

.input-group input:focus, .form-select:focus { border-color: var(--primary-color); }

.btn-full { width: 100%; padding: 16px; font-size: 1rem; }

.status-tip {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

.help-card {
    background: #12161c;
    border-radius: 24px;
    padding: 25px;
    border: 1px solid #2b2f36;
}

.help-card h4 { margin-bottom: 15px; }
.help-card ol { padding-left: 20px; color: var(--text-muted); font-size: 0.9rem; }
.help-card li { margin-bottom: 10px; }

.tasks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.task-card {
    background: var(--bg-card);
    border: 1px solid #2b2f36;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.task-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.task-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: #000;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-bottom-left-radius: 12px;
}

.task-project {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.project-icon {
    width: 40px;
    height: 40px;
    background: #2b2f36;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.project-name {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.task-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.task-reward {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #2b2f36;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.reward-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.reward-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
}

.task-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: right;
}

.task-meta b {
    color: var(--text-main);
}

/* 响应式适配 */
@media (max-width: 992px) {
    .hero-floating-visual {
        display: none;
    }
    .fomo-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .featured-tasks .tasks-grid {
        grid-template-columns: 1fr;
    }
    .stats-board {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .stat-divider {
        width: 50px;
        height: 1px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .navbar .container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
    }
    .navbar {
        height: auto;
    }
}
