/* ===== 变量定义 ===== */
:root {
    --brand-color: #00ff41;
    --brand-light: #39ff14;
    --brand-dark: #00cc00;
    --brand-accent: #00ff00;
    --text-primary: #00ff41;
    --text-secondary: #00cc00;
    --text-muted: #00ff4170;
    --bg-primary: #0a0a0a;
    --bg-secondary: #000000;
    --bg-tertiary: #0f0f0f;
    --bg-card: #0d0d0d;
    --border-color: #00ff4120;
    --border-highlight: #00ff41;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 24px 16px 64px 0 rgba(0, 0, 0, 0.08);
    --radius-sm: 0.125rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --transition: all 0.25s ease-in-out;
}

/* ===== 主题切换变量 ===== */
body.light {
    --text-primary: #00ff41;
    --text-secondary: #00cc00;
    --text-muted: #00ff4170;
    --bg-primary: #0a0a0a;
    --bg-secondary: #000000;
    --bg-tertiary: #0f0f0f;
    --bg-card: #0d0d0d;
    --border-color: #00ff4120;
}

body.dark {
    --text-primary: #00ff41;
    --text-secondary: #00cc00;
    --text-muted: #00ff4170;
    --bg-primary: #1a1a1a;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #1f1f1f;
    --bg-card: #1d1d1d;
    --border-color: #00ff4140;
}

/* ===== 基础样式 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Courier New', 'Monaco', 'Consolas', monospace;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

.container {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== 导航栏 ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-highlight);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
    transition: var(--transition);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-color);
    text-decoration: none;
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-text {
    background: linear-gradient(135deg, var(--brand-color), var(--brand-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    filter: drop-shadow(0 0 5px rgba(0, 255, 65, 0.8));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-color);
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.8);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--brand-color);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-language {
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    min-width: 50px;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 255, 65, 0.1);
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

.btn-language:hover {
    background: var(--bg-tertiary);
    color: var(--brand-color);
    border-color: var(--brand-color);
    transform: translateY(-1px);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.8);
}

.btn-connect {
    padding: 0.5rem 1.5rem;
    background: var(--bg-card);
    color: var(--brand-color);
    border: 1px solid var(--brand-color);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.btn-connect span {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    display: inline-block;
}

.btn-connect:hover {
    background: var(--brand-color);
    color: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
}

.btn-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    width: 30px;
    height: 30px;
    justify-content: center;
}

.btn-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--brand-color);
    border-radius: 2px;
    transition: var(--transition);
    box-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.btn-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.btn-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.btn-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== Hero 区域 ===== */
.hero {
    padding: 4rem 0 6rem;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 65, 0.03) 2px,
            rgba(0, 255, 65, 0.03) 4px
        );
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-visual {
    display: flex;
    align-items: stretch;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5), 0 0 20px rgba(0, 255, 65, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-color), var(--brand-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(0, 255, 65, 0.8));
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.btn-primary {
    background: var(--bg-card);
    color: var(--brand-color);
    border: 2px solid var(--brand-color);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
}

.btn-primary:hover {
    background: var(--brand-color);
    color: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--brand-color);
    border: 2px solid var(--brand-color);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.btn-secondary:hover {
    background: var(--brand-color);
    color: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* 统计数据 */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
    transition: var(--transition);
    transform: perspective(1000px) rotateX(4deg) rotateY(-16deg) rotate(4deg);
}

.stat-card:hover {
    transform: perspective(1000px) rotateX(4deg) rotateY(-16deg) rotate(4deg) scale(1.05);
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.4);
    border-color: var(--brand-color);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

/* Hero 视觉区域 */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-height: 100%;
}

.floating-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.3);
    transform: perspective(1000px) rotateX(4deg) rotateY(-16deg) rotate(6deg);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.floating-card:hover {
    transform: perspective(1000px) rotateX(4deg) rotateY(-16deg) rotate(6deg) scale(1.05);
    border-color: var(--brand-color);
    box-shadow: 0 0 35px rgba(0, 255, 65, 0.5);
}

@keyframes float {
    0%, 100% {
        transform: perspective(1000px) rotateX(4deg) rotateY(-16deg) rotate(6deg) translateY(0);
    }
    50% {
        transform: perspective(1000px) rotateX(4deg) rotateY(-16deg) rotate(6deg) translateY(-10px);
    }
}

.card-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    font-size: 2rem;
}

.card-title {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-primary);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.card-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-color), var(--brand-light));
    border-radius: 4px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.6);
}

.progress-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: right;
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

/* 卡片内快速操作链接样式 */
.card-actions a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
}

.card-actions a:hover {
    background: var(--bg-card);
    border-color: var(--brand-color);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
    transform: translateX(4px);
}

.card-actions a svg {
    transition: transform 0.2s ease;
}

.card-actions a:hover svg {
    transform: translateX(4px);
}

/* ===== 功能特性 ===== */
.features {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.4);
    border-color: var(--brand-color);
}

.feature-icon {
    display: inline-flex;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

/* ===== 预售列表 ===== */
.launchpads {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-filter {
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-secondary);
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

.btn-filter:hover,
.btn-filter.active {
    background: var(--bg-card);
    color: var(--brand-color);
    border-color: var(--brand-color);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.8);
}

.launchpads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.launchpad-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
    transition: var(--transition);
}

.launchpad-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.4);
    border-color: var(--brand-color);
}

.launchpad-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.launchpad-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.launchpad-info {
    flex: 1;
}

.launchpad-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.launchpad-symbol {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

.launchpad-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
}

.launchpad-badge.live {
    background: rgba(0, 255, 65, 0.1);
    color: var(--brand-color);
    border: 1px solid var(--brand-color);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
}

.launchpad-badge.upcoming {
    background: rgba(255, 204, 0, 0.1);
    color: #ffcc00;
    border: 1px solid #ffcc00;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.8);
}

.launchpad-progress {
    margin-bottom: 1.5rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

.progress-details {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

.launchpad-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.launchpad-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

.btn-view {
    padding: 0.5rem 1.5rem;
    background: var(--bg-card);
    color: var(--brand-color);
    border: 1px solid var(--brand-color);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
}

.btn-view:hover {
    background: var(--brand-color);
    color: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
}

/* ===== 支持的链 ===== */
.chains {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.chains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
}

.chain-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
    transition: var(--transition);
    cursor: pointer;
}

.chain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
    border-color: var(--brand-color);
}

.chain-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chain-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.chain-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

/* ===== 页脚 ===== */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-highlight);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    box-shadow: 0 -5px 15px rgba(0, 255, 65, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-color);
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

.footer-links a:hover {
    color: var(--brand-color);
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.8);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

.footer-legal a:hover {
    color: var(--brand-color);
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.8);
}

/* ===== 响应式设计 ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border-top: 1px solid var(--border-highlight);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 99;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.mobile-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
        text-align: center;
        font-size: 1.1rem;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .btn-menu-toggle {
        display: flex;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .btn-language,
    .btn-connect {
        font-size: 0.875rem !important;
        padding: 0.4rem 0.8rem;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    .btn-connect span {
        font-size: 0.875rem !important;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .launchpads-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr repeat(3, minmax(100px, 1fr));
        gap: 1.5rem;
    }
    
    /* 第一个 footer-section (logo) 在移动端单独一行 */
    .footer-content > .footer-section:first-child {
        grid-column: 1 / -1;
    }
    
    /* 后面三个 footer-section (产品、资源、社区) 横排 */
    .footer-content > .footer-section:not(:first-child) {
        min-width: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    /* 极小屏幕上，三个 footer-section 保持横排但缩小间距 */
    .footer-content {
        grid-template-columns: 1fr repeat(3, minmax(80px, 1fr));
        gap: 1rem;
    }
    
    .footer-title {
        font-size: 0.875rem;
    }
    
    .btn-connect,
    .btn-connect span {
        font-size: 0.875rem !important;
        -webkit-text-size-adjust: 100% !important;
        text-size-adjust: 100% !important;
    }
    
    .footer-links a {
        font-size: 0.75rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* ===== 动画效果 ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.launchpad-card,
.chain-card {
    animation: fadeIn 0.6s ease-out;
}

/* ===== 滚动条样式 ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-color);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-light);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.8);
}

/* ===== 代币创建页面样式 ===== */
.token-type-selector {
    margin-bottom: 2rem;
}

.type-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.type-tab {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.type-tab span {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-primary);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.type-tab small {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

.type-tab:hover {
    border-color: var(--brand-color);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.type-tab.active {
    border-color: var(--brand-color);
    background: var(--bg-card);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.token-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
}

.form-section {
    margin-bottom: 2rem;
}

.form-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Courier New', monospace;
}

.form-group input:focus {
    outline: none;
    border-color: var(--brand-color);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

.network-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.network-selector-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
    max-height: 400px;
    overflow-y: auto;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

/* 响应式布局 - 大屏幕显示更多列 */
@media (min-width: 1200px) {
    .network-selector-wrapper {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .network-selector-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .network-selector-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .network-selector-wrapper {
        grid-template-columns: repeat(2, 1fr);
        max-height: 350px;
    }
}

.network-selector-wrapper::-webkit-scrollbar {
    width: 6px;
}

.network-selector-wrapper::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: 3px;
}

.network-selector-wrapper::-webkit-scrollbar-thumb {
    background: var(--brand-color);
    border-radius: 3px;
}

.network-selector-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

.network-btn {
    padding: 0.75rem 0.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    position: relative;
}

.network-btn span:first-child,
.network-btn span:first-child img {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.network-btn span:first-child img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: contain;
}

.network-btn span:first-child {
    font-size: 2rem;
}

.network-btn span:nth-child(2) {
    font-weight: 600;
    color: var(--text-primary);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
    font-size: 0.8125rem;
    line-height: 1.2;
    word-break: break-word;
    text-align: center;
}

.network-btn small {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

.network-btn:hover {
    border-color: var(--brand-color);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.network-btn.active {
    border-color: var(--brand-color);
    background: var(--bg-card);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.fee-preview {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-top: 2rem;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.fee-item:last-child {
    border-bottom: none;
}

.fee-item span:first-child {
    color: var(--text-secondary);
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

.fee-item span:last-child {
    font-weight: 600;
    color: var(--brand-color);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
}

/* ===== 模态框样式 ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--brand-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
    animation: slideIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--brand-color);
    transform: rotate(90deg);
}

.modal-body {
    color: var(--text-secondary);
}

.result-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.result-item strong {
    color: var(--text-primary);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.result-item code {
    flex: 1;
    font-family: 'Courier New', monospace;
    color: var(--brand-color);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
    word-break: break-all;
}

.btn-copy {
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--brand-color);
    border-radius: var(--radius-md);
    color: var(--brand-color);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.5);
}

.btn-copy:hover {
    background: var(--brand-color);
    color: var(--bg-secondary);
}

.result-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.result-actions .btn-primary,
.result-actions .btn-secondary {
    flex: 1;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.token-info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.token-info-item:last-child {
    border-bottom: none;
}

.token-info-item span:first-child {
    color: var(--text-secondary);
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

.token-info-item span:last-child {
    font-weight: 600;
    color: var(--brand-color);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
}

.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Courier New', monospace;
    resize: vertical;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-color);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    cursor: pointer;
}

.form-group input[type="datetime-local"] {
    font-family: 'Courier New', monospace;
}

.form-group label:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.lock-type-selector {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
}

.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Courier New', monospace;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: var(--brand-color);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

/* 代币类型选择器（跨链桥） */
.token-type-selector-bridge {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.token-type-btn {
    padding: 1.25rem 1rem;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.token-type-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1) 0%, rgba(0, 255, 200, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.token-type-btn:hover::before {
    opacity: 1;
}

.token-type-btn:hover {
    border-color: var(--brand-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 65, 0.2);
}

.token-type-btn.active {
    border-color: var(--brand-color);
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.15) 0%, rgba(0, 255, 200, 0.15) 100%);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

.token-type-btn.active::before {
    opacity: 1;
}

.token-icon {
    font-size: 2rem;
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(0, 255, 65, 0.5));
    transition: transform 0.3s ease;
}

.token-type-btn:hover .token-icon {
    transform: scale(1.1) rotate(5deg);
}

.token-type-btn.active .token-icon {
    filter: drop-shadow(0 0 12px rgba(0, 255, 65, 0.8));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.token-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

.token-type-btn.active .token-label {
    color: var(--brand-color);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.6);
}

.token-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.token-type-btn.active .token-desc {
    color: var(--text-primary);
    opacity: 1;
}

@media (max-width: 767px) {
    .token-type-selector-bridge {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .token-type-btn {
        padding: 1rem 0.75rem;
    }
    
    .token-icon {
        font-size: 1.75rem;
    }
}

/* ===== SWAP 样式 ===== */
.swap-main {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.swap-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.swap-card {
    margin-bottom: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.15), 0 0 60px rgba(0, 255, 65, 0.05);
    overflow: hidden;
    position: relative;
}

.swap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-color), transparent);
    opacity: 0.5;
}

.swap-card-content {
    padding: 2rem;
    position: relative;
}

.swap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.swap-title {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
    background: linear-gradient(135deg, var(--brand-color) 0%, var(--brand-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.swap-header-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-icon {
    padding: 0.5rem;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.25rem;
}

.btn-icon:hover {
    background: var(--bg-secondary);
    border-color: var(--brand-color);
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.swap-network-section {
    margin-bottom: 1.5rem;
}

.swap-network-section .form-label {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    display: block;
}

.swap-box {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(0, 255, 65, 0.02) 100%);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-color);
    position: relative;
    box-shadow: 
        inset 0 0 20px rgba(0, 255, 65, 0.05),
        0 0 30px rgba(0, 255, 65, 0.1);
    overflow: hidden;
}

.swap-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 65, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.swap-token-row {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 65, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
}

.swap-token-row:hover {
    background: rgba(0, 255, 65, 0.04);
    border-color: var(--border-color);
}

.swap-token-row:last-of-type {
    margin-bottom: 0;
}

.swap-token-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.swap-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.swap-balance {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.swap-balance span:last-child {
    color: var(--brand-color);
    font-weight: 600;
    margin-left: 0.25rem;
}

.swap-token-input-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.token-select-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: var(--bg-tertiary);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    min-width: 160px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.token-select-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    transition: left 0.5s;
}

.token-select-btn:hover::before {
    left: 100%;
}

.token-select-btn:hover {
    background: var(--bg-card);
    border-color: var(--brand-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 65, 0.3);
}

.token-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-color);
    flex-shrink: 0;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 8px rgba(0, 255, 65, 0.2);
}

.token-symbol {
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
    text-align: left;
}

.token-arrow {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.swap-amount-wrapper {
    flex: 1;
    position: relative;
    min-width: 0;
}

.swap-amount-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    text-align: right;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.3);
}

.swap-amount-input:focus {
    outline: none;
    text-shadow: 0 0 12px rgba(0, 255, 65, 0.5);
}

.swap-amount-input[readonly] {
    cursor: not-allowed;
    opacity: 0.8;
}

.swap-amount-usd {
    position: absolute;
    bottom: -1.5rem;
    right: 0;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.swap-switch-btn-wrapper {
    display: flex;
    justify-content: center;
    margin: 0.5rem 0;
}

.swap-switch-btn {
    padding: 0.5rem;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.5rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.swap-switch-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-color), var(--brand-light));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.swap-switch-btn:hover::before {
    opacity: 0.2;
}

.swap-switch-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--brand-color);
    transform: rotate(180deg) scale(1.15);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.swap-price-info {
    display: none;
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, rgba(0, 255, 65, 0.03) 100%);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: inset 0 0 15px rgba(0, 255, 65, 0.05);
}

.swap-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.swap-price-row:last-child {
    margin-bottom: 0;
}

.swap-price-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.swap-price-value {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 600;
}

.swap-action-btn {
    width: 100%;
    padding: 1.125rem;
    margin-top: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.swap-action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.swap-action-btn:hover::before {
    width: 300px;
    height: 300px;
}

.swap-wallet-info {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.swap-wallet-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.swap-wallet-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.swap-wallet-address {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: var(--brand-color);
    word-break: break-all;
}

.swap-disconnect-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-left: 1rem;
}

.swap-status {
    display: none;
    margin-top: 1rem;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.swap-status-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.swap-status-icon {
    font-size: 1.5rem;
}

.swap-status-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.swap-status-message {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
}

.swap-tx-hash {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.swap-tx-hash a {
    color: var(--brand-color);
    text-decoration: none;
}

.swap-tx-hash a:hover {
    text-decoration: underline;
}

/* 模态框样式 */
.swap-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.swap-modal-content {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
    border: 1px solid var(--border-color);
}

.swap-token-modal {
    max-width: 420px;
    padding: 1.5rem;
}

.swap-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.swap-modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.swap-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.swap-modal-close:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    transform: rotate(90deg);
}

.swap-modal-body {
    margin-bottom: 1.5rem;
}

.swap-settings-group {
    margin-bottom: 1.5rem;
}

.swap-settings-group:last-child {
    margin-bottom: 0;
}

.slippage-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.slippage-btn {
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    flex: 1;
    min-width: 70px;
}

.slippage-btn:hover {
    background: var(--bg-secondary);
    border-color: var(--brand-color);
}

.slippage-btn.active {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.15) 0%, rgba(0, 255, 200, 0.15) 100%);
    border-color: var(--brand-color);
    color: var(--brand-color);
}

.swap-settings-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.swap-modal-save {
    width: 100%;
    padding: 0.75rem;
}

.swap-token-search {
    margin-bottom: 1rem;
}

.swap-token-list-wrapper {
    max-height: 400px;
    overflow-y: auto;
}

.swap-token-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.token-item {
    padding: 0.75rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.token-item:hover {
    background: var(--bg-secondary);
    border-color: var(--brand-color);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 255, 65, 0.2);
}

.token-item-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.token-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--brand-color);
    flex-shrink: 0;
}

.token-item-info {
    flex: 1;
}

.token-item-name {
    font-weight: 600;
    color: var(--text-primary);
}

.token-item-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* SWAP 桌面端优化 */
@media (min-width: 769px) {
    .swap-container {
        max-width: 650px;
    }
    
    .swap-card-content {
        padding: 2.5rem;
    }
    
    .swap-box {
        padding: 2.5rem;
    }
    
    .swap-token-row {
        padding: 1.25rem;
    }
    
    .token-select-btn {
        min-width: 180px;
        padding: 1rem 1.5rem;
    }
    
    .swap-amount-input {
        font-size: 2rem;
        padding: 1rem 1.25rem;
    }
    
    .swap-switch-btn {
        width: 48px;
        height: 48px;
        font-size: 1.75rem;
    }
}

/* SWAP 响应式设计 */
@media (max-width: 768px) {
    .swap-main {
        padding: 1rem 0;
    }
    
    .swap-container {
        padding: 0 0.75rem;
    }
    
    .swap-card-content {
        padding: 1rem;
    }
    
    .swap-title {
        font-size: 1.25rem;
    }
    
    .swap-box {
        padding: 1rem;
    }
    
    .swap-token-input-wrapper {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .token-select-btn {
        width: 100%;
        min-width: auto;
        justify-content: space-between;
    }
    
    .swap-amount-input {
        font-size: 1.25rem;
        padding: 0.5rem 0.75rem;
    }
    
    .swap-amount-usd {
        bottom: -1rem;
        font-size: 0.7rem;
    }
    
    .swap-switch-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .swap-action-btn {
        padding: 0.875rem;
        font-size: 1rem;
    }
    
    .swap-modal-content {
        padding: 1.5rem;
        max-height: 95vh;
    }
    
    .swap-token-modal {
        padding: 1rem;
    }
    
    .slippage-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slippage-btn {
        flex: 1;
    }
    
    .swap-wallet-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .swap-disconnect-btn {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .swap-container {
        padding: 0 0.5rem;
    }
    
    .swap-card-content {
        padding: 0.75rem;
    }
    
    .swap-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .swap-header-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    .swap-title {
        font-size: 1.125rem;
    }
    
    .swap-box {
        padding: 0.75rem;
    }
    
    .swap-amount-input {
        font-size: 1.125rem;
    }
    
    .swap-modal-content {
        padding: 1rem;
    }
    
    .swap-modal-title {
        font-size: 1.125rem;
    }
    
    .token-select-btn {
        padding: 0.625rem 0.875rem;
    }
    
    .token-icon {
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
    }
    
    .token-symbol {
        font-size: 0.875rem;
    }
}

.lock-history {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lock-history-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.lock-history-item:hover {
    border-color: var(--brand-color);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.lock-info {
    flex: 1;
}

.lock-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.lock-pair {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-primary);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.lock-status {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
}

.lock-status.live {
    background: rgba(0, 255, 65, 0.1);
    color: var(--brand-color);
    border: 1px solid var(--brand-color);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
}

.lock-status.unlocked {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.lock-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

.lock-actions {
    display: flex;
    gap: 0.5rem;
}

.participants-table-container {
    overflow-x: auto;
}

.participants-table tbody tr:hover {
    background: var(--bg-tertiary);
}

.participants-table tbody tr:last-child {
    border-bottom: none;
}

.management-actions button {
    padding: 1rem;
    font-size: 1rem;
}

/* ===== Launchpads 页面样式 ===== */
.launchpad-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.launchpad-type-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.launchpad-type-card:hover {
    border-color: var(--brand-color);
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.4);
    transform: translateY(-5px);
}

.type-card-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.type-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    margin: 0;
}

.type-card-description {
    color: var(--text-secondary);
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
    line-height: 1.6;
    flex: 1;
}

.type-card-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--brand-color);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-color);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
    align-self: flex-start;
}

.btn-filter {
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

.btn-filter:hover {
    border-color: var(--brand-color);
    color: var(--brand-color);
}

.btn-filter.active {
    background: var(--brand-color);
    border-color: var(--brand-color);
    color: var(--bg-secondary);
    text-shadow: none;
}

.social-tasks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-task-item {
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.task-input {
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
}

.overflow-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.overflow-options label {
    transition: var(--transition);
}

.overflow-options label:hover {
    background: var(--bg-card) !important;
    border-color: var(--brand-color);
}

.overflow-options input[type="radio"] {
    width: auto;
}

.launchpad-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.launchpad-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-secondary);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
}

.launchpad-info {
    flex: 1;
}

.launchpad-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
    margin: 0 0 0.25rem 0;
}

.launchpad-symbol {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

.launchpad-status {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
}

.launchpad-status.live {
    background: rgba(0, 255, 65, 0.1);
    color: var(--brand-color);
    border: 1px solid var(--brand-color);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.launchpad-status.upcoming {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.launchpad-status.ended {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.launchpad-type {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

.launchpad-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-shadow: 0 0 3px rgba(0, 255, 65, 0.3);
}

.stat-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-color);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
}

.token-card:hover {
    border-color: var(--brand-color);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
    transform: translateY(-5px);
}

.btn-copy-small:hover {
    background: var(--brand-color);
    color: var(--bg-secondary);
}

.tokens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.airdrop-card:hover {
    border-color: var(--brand-color);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
    transform: translateY(-3px);
}

.airdrop-status {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
}

.airdrop-status.live {
    background: rgba(0, 255, 65, 0.1);
    color: var(--brand-color);
    border: 1px solid var(--brand-color);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.airdrop-status.upcoming {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.airdrop-status.ended {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

/* ===== 浮标按钮 ===== */
.floating-buttons {
    position: fixed !important;
    bottom: 2rem !important;
    right: 2rem !important;
    display: flex !important;
    flex-direction: column;
    gap: 1rem;
    z-index: 9999 !important;
    transition: var(--transition);
    pointer-events: auto;
    visibility: visible !important;
    opacity: 1 !important;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--brand-color);
    color: var(--brand-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 255, 65, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.floating-btn:hover::before {
    width: 100%;
    height: 100%;
}

.floating-btn:hover {
    background: var(--brand-color);
    color: var(--bg-secondary);
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.6);
    text-shadow: none;
}

.floating-btn:active {
    transform: scale(0.95);
}

.floating-btn-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 主题切换按钮图标 */
#themeToggle .floating-btn-icon::before {
    content: '🌙';
    font-size: 1.5rem;
}

body.dark #themeToggle .floating-btn-icon::before {
    content: '☀️';
}

/* 语言切换按钮 */
#languageToggleFloating {
    font-weight: 600;
    font-size: 0.875rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 1.5rem;
        right: 1.5rem;
        gap: 0.75rem;
    }
    
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    #languageToggleFloating {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
        gap: 0.5rem;
    }
    
    .floating-btn {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }
}

