/* ========================================
   $PEPE 邀请空投网站样式
   设计风格：赛博朋克 + Meme文化
======================================== */

:root {
    /* 主色调 - PEPE绿色主题 */
    --primary: #3cba54;
    --primary-dark: #2d9a42;
    --secondary: #00ff88;
    --accent: #ffcc00;
    --warning: #ff6b35;
    
    /* 背景色 */
    --bg-dark: #0a0a0f;
    --bg-card: rgba(20, 20, 35, 0.95);
    --bg-gradient: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #0f1a0a 100%);
    
    /* 文字色 */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    /* 特效 */
    --glow-primary: 0 0 20px rgba(0, 255, 136, 0.5);
    --glow-secondary: 0 0 20px rgba(255, 0, 255, 0.5);
    --glow-accent: 0 0 20px rgba(255, 204, 0, 0.5);
}

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

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

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

/* ========================================
   背景动画
======================================== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--bg-gradient);
    overflow: hidden;
}

.stars, .twinkling {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stars {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="%23fff" cx="10" cy="10" r="0.5"/><circle fill="%23fff" cx="30" cy="25" r="0.3"/><circle fill="%23fff" cx="50" cy="15" r="0.4"/><circle fill="%23fff" cx="70" cy="35" r="0.5"/><circle fill="%23fff" cx="90" cy="20" r="0.3"/><circle fill="%23fff" cx="20" cy="50" r="0.4"/><circle fill="%23fff" cx="40" cy="70" r="0.5"/><circle fill="%23fff" cx="60" cy="55" r="0.3"/><circle fill="%23fff" cx="80" cy="80" r="0.4"/><circle fill="%23fff" cx="15" cy="85" r="0.5"/><circle fill="%23fff" cx="45" cy="90" r="0.3"/><circle fill="%23fff" cx="75" cy="60" r="0.4"/><circle fill="%23fff" cx="95" cy="75" r="0.5"/><circle fill="%23fff" cx="25" cy="40" r="0.3"/><circle fill="%23fff" cx="55" cy="45" r="0.4"/><circle fill="%23fff" cx="85" cy="10" r="0.5"/></svg>') repeat;
    background-size: 200px 200px;
    animation: moveStars 100s linear infinite;
}

.twinkling {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="%2300ff88" cx="25" cy="30" r="1" opacity="0.3"/><circle fill="%23ff00ff" cx="75" cy="60" r="1" opacity="0.3"/><circle fill="%23ffcc00" cx="50" cy="85" r="1" opacity="0.3"/></svg>') repeat;
    background-size: 300px 300px;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes moveStars {
    from { transform: translateY(0); }
    to { transform: translateY(-200px); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.rocket {
    position: absolute;
    font-size: 3rem;
    bottom: 20%;
    left: 10%;
    animation: rocketFly 15s ease-in-out infinite;
}

.moon {
    position: absolute;
    font-size: 5rem;
    top: 10%;
    right: 10%;
    animation: moonGlow 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 200, 0.5));
}

@keyframes rocketFly {
    0% { transform: translate(0, 0) rotate(45deg); }
    25% { transform: translate(50vw, -30vh) rotate(45deg); }
    50% { transform: translate(80vw, -50vh) rotate(45deg); opacity: 0; }
    51% { transform: translate(-20vw, 30vh) rotate(45deg); opacity: 0; }
    52% { opacity: 1; }
    100% { transform: translate(0, 0) rotate(45deg); }
}

@keyframes moonGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 255, 200, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 255, 200, 0.8)); }
}

/* 浮动表情 */
.floating-emojis {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-emoji {
    position: absolute;
    font-size: 2rem;
    animation: floatUp 6s ease-out forwards;
    opacity: 0;
}

@keyframes floatUp {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-20vh) scale(1.5); opacity: 0; }
}

/* ========================================
   主容器
======================================== */
.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ========================================
   头部
======================================== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: sticky;
    top: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.logo-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    color: var(--primary);
    text-shadow: var(--glow-primary);
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: var(--glow-primary);
}

.chain-icon {
    width: 16px;
    height: 16px;
}

/* ========================================
   英雄区域
======================================== */
.hero {
    text-align: center;
    padding: 40px 0;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--warning), var(--accent));
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Glitch 效果 */
.glitch {
    position: relative;
    color: var(--primary);
    text-shadow: var(--glow-primary);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: var(--secondary);
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: var(--accent);
    z-index: -2;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-1px, 1px); }
    80% { transform: translate(1px, -1px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(-2px, 2px); }
    60% { transform: translate(1px, -1px); }
    80% { transform: translate(-1px, 1px); }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* 价值预测横幅 */
.value-prediction {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.15), rgba(255, 107, 53, 0.15));
    border: 2px solid var(--accent);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    animation: valuePulse 3s ease-in-out infinite;
}

@keyframes valuePulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(255, 204, 0, 0.5);
        transform: scale(1.01);
    }
}

.prediction-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent), var(--warning));
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.prediction-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.prediction-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 25px;
    border-radius: 12px;
}

.prediction-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.prediction-value {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2rem;
}

.prediction-value.gold {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.8);
}

.prediction-value.green {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    animation: moneyGlow 1.5s ease-in-out infinite;
}

@keyframes moneyGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(0, 255, 136, 0.8); }
    50% { text-shadow: 0 0 40px rgba(0, 255, 136, 1), 0 0 60px rgba(0, 255, 136, 0.5); }
}

.prediction-arrow {
    font-size: 1.5rem;
    color: var(--accent);
    animation: arrowBounce 1s ease-in-out infinite;
}

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

.prediction-text {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: bold;
}

.stat.highlight {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.1), rgba(255, 107, 53, 0.1));
}

.stat.highlight .stat-value {
    color: var(--accent);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 15px 20px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    min-width: 100px;
}

.stat-value {
    display: block;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    color: var(--primary);
    margin-bottom: 5px;
}

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

/* ========================================
   空投卡片
======================================== */
.airdrop-card {
    position: relative;
    margin: 30px 0;
    border-radius: 20px;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 400% 400%;
    animation: glowRotate 3s linear infinite;
    border-radius: 22px;
    z-index: -1;
}

@keyframes glowRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.card-content {
    background: var(--bg-card);
    padding: 30px 25px;
    border-radius: 20px;
}

.card-title {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--text-primary);
}

/* 钱包连接 */
.wallet-section {
    text-align: center;
}

.connect-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.connect-btn:disabled {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    cursor: not-allowed;
}

.connect-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

.connect-btn:not(:disabled):active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 1.3rem;
}

.btn-loading {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.connect-btn.loading .btn-text {
    display: none;
}

.connect-btn.loading .btn-loading {
    display: block;
}

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

.wallet-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.wallet-logos {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 1.2rem;
    opacity: 0.7;
}

/* ========================================
   已连接状态 - 邀请系统
======================================== */
.connected-section {
    text-align: center;
}

.wallet-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(0, 255, 136, 0.1);
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.wallet-icon {
    font-size: 1.2rem;
}

.wallet-address {
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--primary);
}

.disconnect-btn {
    padding: 6px 12px;
    background: rgba(255, 71, 87, 0.2);
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-radius: 6px;
    color: #ff4757;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.disconnect-btn:hover {
    background: rgba(255, 71, 87, 0.3);
}

/* ========================================
   两阶段领取系统
======================================== */

/* 领取进度总览 */
.claim-progress-overview {
    background: linear-gradient(135deg, rgba(60, 186, 84, 0.15), rgba(0, 255, 136, 0.1));
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.progress-title {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.total-claimed-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

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

.total-value {
    font-family: 'Press Start 2P', cursive;
    font-size: 2rem;
    color: var(--primary);
    text-shadow: var(--glow-primary);
    animation: numberGlow 2s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(0, 255, 136, 0.5); }
    50% { text-shadow: 0 0 40px rgba(0, 255, 136, 0.8); }
}

.total-unit {
    font-size: 1rem;
    color: var(--text-secondary);
}

.total-potential {
    font-size: 0.85rem;
    color: var(--accent);
}

.potential-value {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.9rem;
    color: var(--accent);
}

/* 阶段卡片 */
.claim-stage {
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.claim-stage.unlocked {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(60, 186, 84, 0.3);
}

.claim-stage.completed {
    background: rgba(60, 186, 84, 0.05);
    border-color: rgba(60, 186, 84, 0.3);
}

.stage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.stage-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.stage-badge.stage2 {
    background: linear-gradient(135deg, var(--accent), var(--warning));
}

.stage-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-icon {
    font-size: 1rem;
}

.status-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.stage-content {
    /* 内容区域 */
}

.stage-info h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.stage-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.stage-reward {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.stage-reward.highlight {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.15), rgba(255, 107, 53, 0.1));
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.reward-amount {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    color: var(--primary);
}

.stage-reward.highlight .reward-amount {
    color: var(--accent);
}

.reward-token {
    font-size: 1rem;
    color: var(--text-secondary);
}

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

.stage-claim-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stage-claim-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    cursor: not-allowed;
}

.stage-claim-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

.stage-claim-btn.stage2:not(:disabled) {
    background: linear-gradient(135deg, var(--accent), var(--warning));
    animation: stage2Pulse 2s ease-in-out infinite;
}

@keyframes stage2Pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 204, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 204, 0, 0.6); }
}

.stage-claim-btn.claimed {
    background: rgba(60, 186, 84, 0.2);
    color: var(--primary);
}

.stage-claim-btn.ready {
    animation: readyPulse 1.5s ease-in-out infinite;
}

/* 邀请进度区域 */
.invite-progress-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
}

/* 邀请系统 */
.invite-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.invite-title {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* 邀请进度 */
.invite-progress {
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 6px;
    transition: width 0.5s ease;
    box-shadow: var(--glow-primary);
}

.progress-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.progress-text span:first-child {
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    color: var(--primary);
}

/* 邀请列表 */
.invited-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.invited-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.invited-item.success {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
}

.invited-item.empty {
    opacity: 0.6;
}

.item-icon {
    font-size: 1.2rem;
}

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

.invited-item.success .item-text {
    color: var(--primary);
    font-family: monospace;
}

/* 邀请链接 */
.invite-link-section {
    background: rgba(60, 186, 84, 0.1);
    border-radius: 12px;
    padding: 15px;
    border: 1px dashed rgba(60, 186, 84, 0.3);
}

.invite-link-section h4 {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.invite-link-box {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.invite-link-input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.8rem;
    font-family: monospace;
}

.invite-link-input:focus {
    outline: none;
    border-color: var(--primary);
}

.copy-link-btn {
    padding: 12px 20px;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* 分享按钮 */
.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.share-btn.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: #fff;
}

.share-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #0066aa);
    color: #fff;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* 价值提示框 */
.value-hint-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(255, 204, 0, 0.1));
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    animation: hintGlow 2s ease-in-out infinite;
}

@keyframes hintGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 136, 0.2); }
    50% { box-shadow: 0 0 25px rgba(0, 255, 136, 0.4); }
}

.value-icon {
    font-size: 2rem;
    animation: coinSpin 2s ease-in-out infinite;
}

@keyframes coinSpin {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

.value-hint-content {
    flex: 1;
}

.value-hint-title {
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 3px;
}

.value-hint-desc {
    font-size: 0.8rem;
    color: var(--accent);
}

/* 领取按钮 */
.claim-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: bold;
    color: var(--text-muted);
    cursor: not-allowed;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.claim-btn:not(:disabled) {
    background: linear-gradient(135deg, var(--accent), var(--warning));
    border: none;
    color: #000;
    cursor: pointer;
    animation: pulseGlow 2s ease-in-out infinite;
}

.claim-btn.ready {
    animation: readyPulse 1.5s ease-in-out infinite;
}

@keyframes readyPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 0 40px rgba(255, 204, 0, 0.6);
    }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 204, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 204, 0, 0.6); }
}

.claim-btn:not(:disabled):hover {
    transform: translateY(-2px);
}

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

/* 成功状态 */
.success-section {
    text-align: center;
}

.success-animation {
    font-size: 4rem;
    animation: successBounce 1s ease-out;
    margin-bottom: 15px;
}

@keyframes successBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.success-title {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.success-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* 领取明细 */
.success-breakdown {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breakdown-item:last-of-type {
    border-bottom: none;
}

.breakdown-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0 0 0;
    margin-top: 10px;
    border-top: 2px solid var(--primary);
}

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

.breakdown-value {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: bold;
}

.breakdown-value.total {
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    color: var(--primary);
    text-shadow: var(--glow-primary);
}

.success-value-box {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.2), rgba(0, 255, 136, 0.2));
    border: 2px solid var(--accent);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    animation: successValuePulse 2s ease-in-out infinite;
}

@keyframes successValuePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 204, 0, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 0 40px rgba(255, 204, 0, 0.5); }
}

.success-value-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.success-value-amount {
    font-family: 'Press Start 2P', cursive;
    font-size: 2rem;
    color: var(--primary);
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
    margin-bottom: 8px;
    animation: moneyGlow 1.5s ease-in-out infinite;
}

.success-value-note {
    font-size: 0.8rem;
    color: var(--accent);
}

.success-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    flex: 1;
    padding: 12px 15px;
    background: var(--primary);
    border: none;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.action-btn.secondary:hover {
    box-shadow: var(--glow-secondary);
}

/* ========================================
   活动规则
======================================== */
.rules-section {
    margin: 40px 0;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rule-item {
    display: flex;
    gap: 15px;
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.rule-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.rule-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    color: #000;
    flex-shrink: 0;
}

.rule-content h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

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

/* ========================================
   全局统计
======================================== */
.global-stats {
    margin: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stat-card {
    background: var(--bg-card);
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.stat-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
}

.stat-card .stat-value {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.65rem;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

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

/* ========================================
   PEPE 特色区域
======================================== */
.features {
    margin: 40px 0;
}

.section-title {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.feature-card {
    background: var(--bg-card);
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(60, 186, 84, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
}

.feature-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.feature-card h3 {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.feature-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ========================================
   代币信息
======================================== */
.token-info {
    margin: 40px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.info-card {
    background: var(--bg-card);
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-card.full-width {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: left;
}

.info-icon {
    font-size: 1.5rem;
}

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

.info-value {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--primary);
}

.info-value.contract {
    font-family: monospace;
    font-size: 0.8rem;
    word-break: break-all;
}

.copy-btn {
    padding: 6px 15px;
    background: var(--primary);
    border: none;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: scale(1.05);
}

/* ========================================
   社区
======================================== */
.community {
    margin: 40px 0;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #0066aa);
    color: #fff;
}

.social-btn.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: #fff;
}

.social-btn.website {
    background: linear-gradient(135deg, #3cba54, #2d9a42);
    color: #fff;
}

.social-btn.etherscan {
    background: linear-gradient(135deg, #21325b, #1a2744);
    color: #fff;
}

.social-btn.coingecko {
    background: linear-gradient(135deg, #8dc63f, #6ba52d);
    color: #fff;
}

.social-btn.dextools {
    background: linear-gradient(135deg, #05a2c2, #048a9e);
    color: #fff;
}

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

/* ========================================
   页脚
======================================== */
.footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 0.7rem !important;
    color: var(--warning) !important;
}

/* ========================================
   Toast 通知
======================================== */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 0.9rem;
    border: 1px solid var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
    max-width: 90%;
    text-align: center;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast.error {
    border-color: #ff4757;
}

.toast.success {
    border-color: var(--primary);
}

/* ========================================
   语言切换器
======================================== */
.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-card);
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    user-select: none;
}

.lang-switcher:hover {
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.current-lang-flag {
    font-size: 1.2rem;
}

.current-lang-name {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: none;
}

@media (min-width: 400px) {
    .current-lang-name {
        display: inline;
    }
}

.lang-arrow {
    font-size: 0.6rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.lang-switcher:hover .lang-arrow {
    color: var(--primary);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: rgba(0, 255, 136, 0.1);
}

.lang-option .lang-flag {
    font-size: 1.2rem;
}

.lang-option .lang-name {
    font-size: 0.85rem;
    color: var(--text-primary);
}

/* 链标识包装器 */
.chain-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.chain-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(98, 126, 234, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #627eea;
    border: 1px solid rgba(98, 126, 234, 0.3);
}

/* ========================================
   响应式
======================================== */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .stat {
        min-width: 80px;
        padding: 10px 15px;
    }
    
    .stat-value {
        font-size: 0.6rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .info-card.full-width {
        grid-column: 1 / -1;
    }
    
    .social-links {
        flex-direction: row;
    }
    
    .social-btn {
        flex: 1;
    }
}

/* ========================================
   动画工具类
======================================== */
.fade-in {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.shake {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* ========================================
   倒计时样式
======================================== */
.countdown-wrapper {
    text-align: center;
    margin-bottom: 25px;
}

.countdown-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.countdown-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.countdown-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.countdown-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.countdown-progress {
    fill: none;
    stroke: var(--primary);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear;
    filter: drop-shadow(var(--glow-primary));
}

.countdown-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Press Start 2P', cursive;
    font-size: 2rem;
    color: var(--primary);
    text-shadow: var(--glow-primary);
}

.countdown-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.countdown-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    transition: width 1s linear;
    box-shadow: var(--glow-primary);
}

.countdown-complete {
    text-align: center;
    padding: 20px;
}

/* ========================================
   钱包选择弹窗
======================================== */
.wallet-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 15px;
    backdrop-filter: blur(10px);
    overflow-y: auto;
}

.wallet-modal.show {
    display: flex;
}

.wallet-modal-content {
    background: linear-gradient(135deg, rgba(20, 20, 35, 0.98), rgba(30, 30, 50, 0.98));
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 25px 20px;
    max-width: 400px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
    box-shadow: 0 0 50px rgba(60, 186, 84, 0.3);
    animation: modalPop 0.3s ease-out;
    position: relative;
}

@keyframes modalPop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 71, 87, 0.3);
    color: #ff4757;
}

.wallet-modal-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 5px;
    text-shadow: var(--glow-primary);
}

.wallet-modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.wallet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.wallet-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wallet-item:hover {
    background: rgba(60, 186, 84, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.wallet-item:active {
    transform: scale(0.95);
}

.wallet-item img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: contain;
    background: #fff;
    padding: 4px;
}

.wallet-item span {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.2;
}

.wallet-note {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wallet-note p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ========================================
   额度已满弹窗
======================================== */
.quota-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.quota-modal.show {
    display: flex;
}

.quota-content {
    background: linear-gradient(135deg, rgba(20, 20, 35, 0.98), rgba(35, 25, 40, 0.98));
    border: 2px solid #ff6b35;
    border-radius: 20px;
    padding: 30px 25px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.3);
    animation: modalPop 0.3s ease-out;
}

.quota-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: sadShake 2s ease-in-out infinite;
}

@keyframes sadShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.quota-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    color: #ff6b35;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.quota-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.quota-info {
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}

.quota-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #ff4757;
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.quota-status span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.quota-status strong {
    color: #ff4757;
}

.quota-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 5px 0;
}

.quota-timer {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}

.quota-timer > p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 8px;
    min-width: 60px;
}

.timer-value {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2rem;
    color: var(--primary);
    text-shadow: var(--glow-primary);
}

.timer-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.timer-sep {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2rem;
    color: var(--primary);
    animation: blink 1s ease-in-out infinite;
}

.quota-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(60, 186, 84, 0.1);
    border: 1px solid rgba(60, 186, 84, 0.3);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 15px;
}

.quota-note span {
    font-size: 1.3rem;
}

.quota-note p {
    font-size: 0.75rem;
    color: var(--primary);
    text-align: left;
}

.quota-social {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.quota-social-btn {
    flex: 1;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.quota-social-btn:hover {
    background: rgba(60, 186, 84, 0.2);
    border-color: var(--primary);
}

.quota-close-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff6b35, #ff4757);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quota-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

/* ========================================
   代币经济
======================================== */
.tokenomics {
    margin: 40px 0;
}

.tokenomics-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tokenomics-item {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tokenomics-bar {
    height: 8px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px;
    width: var(--percent);
    margin-bottom: 10px;
    box-shadow: var(--glow-primary);
}

.tokenomics-bar.burned {
    background: linear-gradient(90deg, #ff6b35, #ff4757);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.tokenomics-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.tokenomics-value {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    color: var(--primary);
}

.tokenomics-note {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(60, 186, 84, 0.1);
    border-radius: 10px;
    border: 1px dashed var(--primary);
}

.tokenomics-note p {
    font-size: 0.85rem;
    color: var(--primary);
}

/* ========================================
   路线图
======================================== */
.roadmap {
    margin: 40px 0;
}

.roadmap-timeline {
    position: relative;
    padding-left: 30px;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary), rgba(255, 255, 255, 0.1));
}

.roadmap-item {
    position: relative;
    margin-bottom: 25px;
}

.roadmap-dot {
    position: absolute;
    left: -24px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.roadmap-item.completed .roadmap-dot {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.roadmap-item.current .roadmap-dot {
    background: var(--secondary);
    border-color: var(--secondary);
    box-shadow: var(--glow-secondary);
    animation: dotPulse 2s ease-in-out infinite;
}

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

.roadmap-content {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.roadmap-content h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.roadmap-content ul {
    list-style: none;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.roadmap-content li {
    margin-bottom: 6px;
}

