/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - 黑白钢琴键配色 */
    --space-black: #000000;
    --space-white: #ffffff;
    --gray-light: #f8f8f8;
    --gray-medium: #e0e0e0;
    --gray-dark: #333333;
    --accent-green: #BCFF2F;  /* 仅用于必要的点缀 */
    
    /* Typography */
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius - 像素风格，完全方形 */
    --radius-sm: 0px;
    --radius-md: 0px;
    --radius-lg: 0px;
    --radius-xl: 0px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.15s ease-out;
    --transition-base: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;
    
    /* Z-indexes */
    --z-background: -1;
    --z-content: 1;
    --z-header: 10;
    --z-modal: 100;
    --z-loading: 1000;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--space-white);
    background: var(--space-black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (min-width: 640px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--spacing-xl);
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--space-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-loading);
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

/* 像素风格全局设置 */
* {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    margin-bottom: var(--spacing-lg);
}

.orbit-loader {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.orbit-loader .planet {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--space-white);
    color: var(--space-black);
    border: 2px solid var(--space-black);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.orbit-loader .orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(67, 56, 202, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: orbit-spin 2s linear infinite;
}

.orbit-loader .orbit:nth-child(2) {
    width: 60px;
    height: 60px;
}

.orbit-loader .orbit:nth-child(3) {
    width: 80px;
    height: 80px;
    animation-duration: 3s;
    animation-direction: reverse;
}

.loading-text {
    font-size: 1.1rem;
    color: var(--stellar-white);
    opacity: 0.8;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes orbit-spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }
}

/* App Container */
.app {
    min-height: 100vh;
    position: relative;
}

/* Stellar Background */
.stellar-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: var(--z-background);
    background: var(--space-black);
    overflow: hidden;
}

.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.star {
    position: absolute;
    background: var(--space-white);
    border-radius: 50%;
    animation: twinkle 2s ease-in-out infinite alternate;
}

.star.small {
    width: 1px;
    height: 1px;
}

.star.medium {
    width: 2px;
    height: 2px;
}

.star.large {
    width: 3px;
    height: 3px;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

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

.planets-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.planet {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.planet-1 {
    width: 60px;
    height: 60px;
    background: var(--space-white);
    color: var(--space-black);
    border: 2px solid var(--space-black);
    top: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite, orbit-slow 20s linear infinite;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.planet-2 {
    width: 40px;
    height: 40px;
    background: var(--space-white);
    bottom: 30%;
    left: 15%;
    animation: float 8s ease-in-out infinite reverse, orbit-medium 15s linear infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.planet-3 {
    width: 30px;
    height: 30px;
    background: var(--gray-medium);
    top: 60%;
    right: 20%;
    animation: float 10s ease-in-out infinite, orbit-fast 10s linear infinite;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* 星座连线画布 */
.constellation-canvas {
    opacity: 0.6;
    mix-blend-mode: screen;
}

/* 流星效果 */
.meteor {
    border-radius: 0px;
    transform-origin: center;
}

.meteor::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8));
    pointer-events: none;
}

/* 增强星星效果 */
.star.large {
    position: relative;
}

.star.large::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: white;
    opacity: 0.3;
    animation: pulse-star 3s ease-in-out infinite;
}

@keyframes pulse-star {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.1;
    }
}

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

@keyframes orbit-slow {
    0% {
        transform: rotate(0deg) translateX(50px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(50px) rotate(-360deg);
    }
}

@keyframes orbit-medium {
    0% {
        transform: rotate(0deg) translateX(40px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(40px) rotate(-360deg);
    }
}

@keyframes orbit-fast {
    0% {
        transform: rotate(0deg) translateX(30px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(30px) rotate(-360deg);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: var(--z-header);
    padding: var(--spacing-md) 0;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo {
    height: 48px;
    width: auto;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* Logo text removed - using image only */

.header-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--space-white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: var(--space-white);
    background: rgba(255, 255, 255, 0.15);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--space-white);
    border-radius: 1px;
}

.language-switch {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 2px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--space-white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-btn.active {
    background: var(--space-white);
    color: var(--space-black);
}

.lang-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
}

.connect-wallet-btn {
    background: var(--space-white);
    color: var(--space-black);
    border: 2px solid var(--space-black);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.connect-wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background: var(--gray-light);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--space-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--space-black);
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 100;
    transition: right var(--transition-base);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: var(--spacing-3xl) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: 60px; /* Space for header */
}

.mobile-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover {
    color: var(--space-white);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.mobile-nav-link.active {
    color: var(--space-black);
    background: var(--space-white);
    border-color: var(--space-white);
}

.mobile-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: var(--spacing-sm) 0;
}

.mobile-lang-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.mobile-lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--space-white);
}

.mobile-lang-btn.active {
    background: var(--space-white);
    color: var(--space-black);
    border-color: var(--space-white);
}

.mobile-wallet-btn {
    background: var(--space-white);
    color: var(--space-black);
    border: 2px solid var(--space-black);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
}

.mobile-wallet-btn:hover {
    background: var(--gray-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .language-switch {
        display: none; /* Hide on mobile, use mobile menu instead */
    }
}

/* Hero Section */
.hero {
    padding: calc(80px + var(--spacing-3xl)) 0 var(--spacing-3xl);
    text-align: center;
    position: relative;
    z-index: var(--z-content);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(45deg, var(--space-white), var(--gray-medium), var(--space-black));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float 8s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-xl);
    border-radius: var(--radius-sm);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-base);
    min-height: 120px;
    justify-content: center;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.stat-icon-img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

.title-icon {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.info-icon-img {
    width: 1.2rem;
    height: 1.2rem;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.stat-content {
    text-align: center;
    width: 100%;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--space-white);
}

/* Mint Section */
.mint-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
    z-index: var(--z-content);
}

.mint-card {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-xl);
}

.mint-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    color: var(--space-white);
}

/* Countdown Timer Styles */
.countdown-container {
    margin-bottom: var(--spacing-2xl);
    text-align: center;
}

.countdown-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--space-white);
    margin-bottom: var(--spacing-lg);
}

.countdown-icon {
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    backdrop-filter: blur(10px);
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    min-width: 60px;
}

.time-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--space-white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    background: linear-gradient(45deg, var(--space-white), var(--gray-medium));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: countdownPulse 1s ease-in-out infinite;
}

.time-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--space-white);
    animation: blink 1s ease-in-out infinite;
}

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

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

/* Countdown warning state (less than 1 hour) */
.countdown-warning .countdown-timer {
    background: rgba(255, 165, 0, 0.1);
    border-color: rgba(255, 165, 0, 0.4);
    animation: warningPulse 1s ease-in-out infinite;
}

.countdown-warning .time-value {
    color: #ffa500;
    animation: warningCountdownPulse 0.5s ease-in-out infinite;
}

.countdown-warning .time-label {
    color: rgba(255, 165, 0, 0.9);
}

.countdown-warning .time-separator {
    color: #ffa500;
    animation: warningBlink 0.5s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 165, 0, 0);
    }
}

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

@keyframes warningBlink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.2;
    }
}

/* Countdown expired state */
.countdown-expired .countdown-timer {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.3);
}

.countdown-expired .time-value {
    color: #dc2626;
    animation: none;
}

.countdown-expired .time-label {
    color: rgba(220, 38, 38, 0.8);
}

.countdown-expired .time-separator {
    color: #dc2626;
    animation: none;
}

.progress-container {
    margin-bottom: var(--spacing-2xl);
}

.progress-bar {
    position: relative;
    width: 100%;
    height: 16px;
    background: var(--space-black);
    border: 2px solid var(--space-white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.progress-fill {
    height: 100%;
    background: var(--space-white);
    border-radius: var(--radius-sm);
    transition: width var(--transition-slow);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

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

.progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.progress-percentage {
    font-weight: 600;
    color: var(--space-white);
}

.amount-selector {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.amount-label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--space-white);
}

.amount-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.amount-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--space-white);
    border-radius: var(--radius-sm);
    background: var(--space-black);
    color: var(--space-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.amount-btn:hover {
    transform: scale(1.1);
    background: var(--space-white);
    color: var(--space-black);
}

.amount-btn:active {
    transform: scale(0.95);
}

.amount-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.amount-display {
    width: 80px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--space-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.amount-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.cost-display {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.cost-item:last-child {
    margin-bottom: 0;
}

.cost-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.cost-value {
    font-weight: 600;
    color: var(--space-white);
}

.mint-btn {
    width: 100%;
    padding: var(--spacing-lg);
    background: var(--space-white);
    color: var(--space-black);
    border: 2px solid var(--space-black);
    border-radius: var(--radius-lg);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
}

.mint-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    background: var(--gray-light);
}

.mint-btn:active {
    transform: translateY(-1px);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform var(--transition-slow);
}

.mint-btn:hover .btn-glow {
    transform: translateX(100%);
}

.user-status {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Info Section */
.info-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
    z-index: var(--z-content);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    padding: var(--spacing-xl);
    transition: all var(--transition-base);
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.info-title {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: var(--space-white);
}

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

.info-content {
    space-y: var(--spacing-md);
}

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

.info-item:last-child {
    border-bottom: none;
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.social-link:hover {
    color: var(--space-white);
}

/* Footer */
.footer {
    padding: var(--spacing-xl) 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: var(--z-content);
}

.footer-content {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .header-controls {
        gap: var(--spacing-sm);
    }
    
    .main-nav {
        display: none; /* Hide on mobile, use mobile menu instead */
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        max-width: 400px;
        gap: var(--spacing-md);
    }
    
    .stat-item {
        min-height: 100px;
        padding: var(--spacing-lg);
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .header-controls {
        gap: var(--spacing-sm);
    }
    
    .connect-wallet-btn {
        padding: var(--spacing-sm);
        font-size: 0.875rem;
    }
    
    .mint-card {
        margin: 0 var(--spacing-md);
        padding: var(--spacing-lg);
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    /* Reduce animation intensity on mobile */
    .planet {
        animation-duration: 8s, 30s;
    }
    
    .star {
        animation-duration: 3s;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .stellar-background {
        background: var(--space-black);
    }
    
    .planet, .star, .meteor, .constellation-canvas {
        display: none !important;
    }
}

/* Performance mode optimizations */
.performance-mode .constellation-canvas,
.performance-mode .meteor {
    display: none !important;
}

.performance-mode .star.large::before {
    display: none;
}

.performance-mode .planet {
    animation-duration: 20s, 60s !important;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .info-card, .mint-card {
        border: 2px solid var(--space-white);
    }
    
    .stat-item {
        border: 1px solid var(--space-white);
    }
}

/* =========================== LAUNCHPAD PAGE STYLES =========================== */

/* Launchpad specific layout */
.launchpad-page {
    background: var(--space-black);
}

.launchpad-main {
    padding-top: calc(80px + var(--spacing-xl));
}

/* Launchpad Hero Section */
.launchpad-hero {
    padding: var(--spacing-3xl) 0;
    position: relative;
    z-index: var(--z-content);
}

.launchpad-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    min-height: 600px;
}

.launchpad-hero .hero-left {
    display: flex;
    flex-direction: column;
}

.launchpad-hero .hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.launchpad-hero .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--space-white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.launchpad-hero .hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

/* Live Trends Section */
.trend-section {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--spacing-xl);
}

.trend-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.trend-header h3 {
    color: var(--space-white);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.trend-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Featured Token */
.featured-token {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-base);
}

.featured-token:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.featured-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.featured-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.featured-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-lg);
}

.featured-main {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.featured-logo-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
}

.featured-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.featured-crown {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 1.2rem;
}

.featured-info {
    flex: 1;
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xs);
}

.featured-symbol {
    font-weight: 700;
    color: var(--space-white);
    font-size: 1.1rem;
}

.featured-price {
    font-weight: 600;
    color: var(--space-white);
}

.featured-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-change {
    font-size: 0.875rem;
    font-weight: 600;
}

.price-change.up {
    color: #4ade80;
}

.price-change.down {
    color: #f87171;
}

.featured-volume {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.featured-action {
    display: flex;
    align-items: center;
}

.action-icon {
    font-size: 1.5rem;
    transition: transform var(--transition-fast);
}

.featured-token:hover .action-icon {
    transform: scale(1.2);
}

/* Trend Container */
.trend-container {
    max-height: 300px;
    overflow-y: auto;
}

.trend-scroll {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

/* Launch Button */
.btn-launch {
    background: var(--space-white);
    color: var(--space-black);
    border: 2px solid var(--space-black);
    padding: var(--spacing-lg) var(--spacing-2xl);
    border-radius: var(--radius-lg);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    position: relative;
    overflow: hidden;
    align-self: center;
}

.btn-launch:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    background: var(--gray-light);
}

.btn-launch:active {
    transform: translateY(-1px);
}

.btn-launch .btn-icon {
    font-size: 1.2rem;
}

/* Token Creator Section */
.token-creator-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
    z-index: var(--z-content);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--space-white);
    margin-bottom: var(--spacing-md);
}

.section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.creator-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--spacing-3xl);
    box-shadow: var(--shadow-xl);
}

/* Form Styles */
.token-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.form-group label {
    color: var(--space-white);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    color: var(--space-white);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.char-count {
    text-align: right;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.cost-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cost-value {
    font-weight: 700;
    color: var(--space-white);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.cost-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Image Upload */
.image-upload {
    position: relative;
}

.image-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2xl);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
    cursor: pointer;
    min-height: 120px;
}

.upload-placeholder:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.upload-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.upload-placeholder span {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.image-preview {
    display: none;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: var(--spacing-md);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Create Button */
.btn-create {
    width: 100%;
    padding: var(--spacing-lg);
    background: var(--space-white);
    color: var(--space-black);
    border: 2px solid var(--space-black);
    border-radius: var(--radius-lg);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    margin-top: var(--spacing-lg);
}

.btn-create:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    background: var(--gray-light);
}

.btn-create:active {
    transform: translateY(-1px);
}

.btn-create .btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    position: relative;
    z-index: 2;
}

.btn-create .btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform var(--transition-slow);
}

.btn-create:hover .btn-glow {
    transform: translateX(100%);
}

/* Token Explorer Section */
.token-explorer-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
    z-index: var(--z-content);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.filter-tab {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.filter-tab:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--space-white);
}

.filter-tab.active {
    background: var(--space-white);
    color: var(--space-black);
    border-color: var(--space-white);
}

/* Token Grid */
.token-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin: var(--spacing-3xl) 0;
}

/* Token Card - Enhanced Design */
.token-card {
    background: rgba(0, 0, 0, 0.9);
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: 0; /* 像素风格 - 完全方形 */
    padding: var(--spacing-xl);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-height: 420px; /* 统一高度 */
    display: flex;
    flex-direction: column;
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 0, 0, 0.8);
}

.token-card:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(255, 255, 255, 0.05);
}

/* 添加像素风格装饰 */
.token-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 25%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0.1) 75%, 
        transparent 100%
    );
}

.token-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.token-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
}

.token-info-main {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.token-logo {
    width: 60px;
    height: 60px;
    border-radius: 0; /* 像素风格方形 */
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%),
        rgba(0, 0, 0, 0.8);
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

.token-logo::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.05) 100%
    );
    z-index: -1;
}

.token-basic-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.token-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--space-white);
    margin: 0;
    line-height: 1.2;
}

.token-symbol {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.token-category-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: 
        linear-gradient(135deg, rgba(255, 165, 0, 0.15) 0%, rgba(255, 140, 0, 0.25) 100%),
        rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 165, 0, 0.6);
    border-radius: 0; /* 像素风格方形 */
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.7rem;
    font-weight: 700;
    color: #FFB800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        inset 0 0 0 1px rgba(255, 165, 0, 0.2),
        0 1px 4px rgba(255, 165, 0, 0.3);
    position: relative;
}

.token-category-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 165, 0, 0.4);
}

.token-metrics {
    margin-bottom: var(--spacing-lg);
    flex: 1; /* 让metrics区域自动填充空间 */
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--spacing-md);
    position: relative;
}

.token-metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.metrics-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.metrics-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    flex: 1;
    position: relative;
}

.metric-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--space-white);
}

.price-change {
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: var(--spacing-xs);
}

.price-change.up {
    color: #4ade80;
}

.price-change.down {
    color: #f87171;
}

/* DEX Progress Section */
.dex-progress {
    margin-top: auto; /* 推到卡片底部 */
    padding: var(--spacing-lg);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    background: 
        linear-gradient(135deg, rgba(255, 165, 0, 0.05) 0%, transparent 50%),
        rgba(0, 0, 0, 0.3);
    position: relative;
}

.dex-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 165, 0, 0.4) 50%, 
        transparent 100%
    );
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.progress-label {
    font-size: 0.75rem;
    color: #FFA500;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-percentage {
    font-size: 1rem;
    font-weight: 700;
    color: #FFA500;
}

.progress-description {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.progress-bar-container {
    position: relative;
}

.progress-bar {
    height: 12px;
    background: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0.08) 100%),
        rgba(0, 0, 0, 0.6);
    border-radius: 0; /* 像素风格方形 */
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    position: relative;
    margin-bottom: var(--spacing-sm);
    box-shadow: 
        inset 0 0 0 1px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(0, 0, 0, 0.4);
}

.progress-fill {
    height: 100%;
    background: 
        linear-gradient(90deg, #FFB800 0%, #FFA500 30%, #FF8C00 70%, #FF6B00 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
    border-radius: 0;
    transition: width 0.5s ease;
    position: relative;
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.3),
        0 0 8px rgba(255, 165, 0, 0.4);
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg,
            transparent 0px,
            transparent 2px,
            rgba(255, 255, 255, 0.1) 2px,
            rgba(255, 255, 255, 0.1) 4px
        );
    animation: progressShine 2s linear infinite;
}

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

.progress-milestone {
    position: absolute;
    top: -3px;
    width: 16px;
    height: 16px;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%),
        rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 0; /* 像素风格方形 */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-milestone.reached {
    background: 
        linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%),
        #FFA500;
    border-color: #FFB800;
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.4),
        0 0 12px rgba(255, 165, 0, 0.6),
        0 2px 6px rgba(0, 0, 0, 0.4);
    color: #000;
    font-weight: bold;
}

.launch-milestone {
    left: 30%;
    transform: translateX(-50%);
}

.milestone-point {
    left: 70%;
    transform: translateX(-50%);
}

.dex-milestone {
    right: 0;
    transform: translateX(50%);
}

.milestone-icon {
    font-size: 6px;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: var(--spacing-xs);
}

.progress-stage {
    flex: 1;
    text-align: center;
}

.progress-stage:first-child {
    text-align: left;
}

.progress-stage:last-child {
    text-align: right;
}

/* Trend Items */
.trend-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.trend-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.trend-symbol {
    font-weight: 600;
    color: var(--space-white);
    font-size: 0.9rem;
}

.trend-change {
    font-weight: 600;
    font-size: 0.875rem;
}

.trend-change.up {
    color: #4ade80;
}

.trend-change.down {
    color: #f87171;
}

.trend-volume {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-2xl);
}

.pagination-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.pagination-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--space-white);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.pagination-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.pagination-number {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.pagination-number:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--space-white);
}

.pagination-number.active {
    background: var(--space-white);
    color: var(--space-black);
    border-color: var(--space-white);
}

.pagination-dots {
    color: rgba(255, 255, 255, 0.5);
    padding: 0 var(--spacing-xs);
}

/* Mobile Responsiveness for Launchpad */
@media (max-width: 1024px) {
    .launchpad-hero .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        min-height: auto;
        align-items: stretch;
    }
    
    .launchpad-hero .hero-right {
        order: -1;
        padding: var(--spacing-xl) 0;
    }
    
    .launchpad-hero .hero-left {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .launchpad-hero .hero-title {
        font-size: 2rem;
    }
    
    .creator-card {
        margin: 0 var(--spacing-md);
        padding: var(--spacing-xl);
    }
    
    .filter-tabs {
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }
    
    .pagination {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .token-grid {
        grid-template-columns: 1fr;
    }
    
    /* Countdown timer mobile styles */
    .countdown-timer {
        gap: var(--spacing-sm);
        padding: var(--spacing-md);
        flex-wrap: wrap;
    }
    
    .time-unit {
        min-width: 50px;
    }
    
    .time-value {
        font-size: 1.5rem;
    }
    
    .time-separator {
        font-size: 1.2rem;
    }
    
    .time-label {
        font-size: 0.7rem;
    }
}