/* 发射平台页面专用样式 */

.launch-container {
    margin-top: 40px;
}

/* 发射平台介绍 */
.launch-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 20px;
}

.launch-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.launch-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* 发射步骤 */
.launch-steps {
    margin-bottom: 40px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* 表单样式 */
.launch-form,
.liquidity-pool-form {
    margin-bottom: 40px;
}

.token-form,
.pool-form {
    margin-top: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-actions {
    margin-top: 30px;
    text-align: center;
}

.input-help {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

/* 代币列表 */
.created-tokens {
    margin-bottom: 40px;
}

.tokens-list {
    margin-top: 20px;
}

.token-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.token-item:hover {
    border-color: #667eea;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.token-item:last-child {
    margin-bottom: 0;
}

.token-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.token-details {
    flex: 1;
}

.token-symbol {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.token-name {
    color: #666;
    font-size: 14px;
    margin-bottom: 4px;
}

.token-address {
    color: #999;
    font-size: 12px;
    font-family: monospace;
}

.token-status {
    margin-right: 16px;
}

.token-actions {
    display: flex;
    gap: 8px;
}

.token-actions .btn {
    padding: 6px 12px;
    font-size: 12px;
}

/* 发射统计 */
.launch-stats {
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #666;
    font-size: 14px;
}

/* 输入错误样式 */
.input-error {
    color: #dc2626;
    font-size: 12px;
    margin-top: 4px;
}

.input-field.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .launch-title {
        font-size: 2rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .token-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .token-actions {
        width: 100%;
        justify-content: stretch;
    }
    
    .token-actions .btn {
        flex: 1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .token-actions {
        flex-direction: column;
    }
}
