:root {
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;
    --accent: #06d6a0;
    --light: #f8fafc;
    --dark: #1e293b;
    --gray: #64748b;
    --border: #fff;
    --button-primary: #ff6a00;
    --button-primary-dark: #ea580c;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --card-bg: #ffffff;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', 'PingFang SC', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 通用样式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 20px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,192C672,181,768,139,864,128C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.header-content {
    position: relative;
    z-index: 1;
}

.domain-name {
    font-size: 60px;
    font-weight: 700;
    margin: 10px 0;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 20px;
    opacity: 0.9;
    font-weight: 400;
    margin-bottom: 10px;
}

/* 主要内容区域 */
.main-content {
    flex: 1;
    margin-top: -60px;
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

.card {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--border);
    width: 100%;
}

.card-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 按钮样式 */
.action-buttons {
    margin: 10px 0 40px;
    display: flex;
    justify-content: center;
}

.btn {
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    min-width: 200px;
}

.btn-primary {
    background-color: var(--button-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    background-color: var(--button-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

.btn-icon {
    margin-right: 8px;
}

/* 联系我们区域 - 简化版 */
.contact-section {
    margin-top: 10px;
    width: 100%;
}

.contact-title {
    font-size: 16px;
    margin-bottom: 0px;
    text-align: center;
    font-weight: 600;
}

/* 二维码样式 */
.qrcode-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    max-width: 400px;
    margin: 0 auto;
}

.qrcode {
    width: 180px;
    height: 180px;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 15px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.qrcode-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
}

.qrcode-placeholder i {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--primary);
}

.qrcode-label {
    font-size: 15px;
    color: var(--gray);
    font-weight: 500;
}

/* 底部样式 */
footer {
    background: var(--dark);
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-section {
    max-width: 300px;
}

.footer-title {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    header {
        padding: 40px 0 100px;
    }
    
    .domain-name {
        font-size: 36px;
    }
    
    .main-content {
        margin-top: -80px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .card {
        max-width: 100%;
        margin: 0;
    }
    
    .card-body {
        padding: 25px 20px;
    }
    
    .action-buttons {
        flex-direction: column;
        margin-bottom: 30px;
    }
    
    .btn {
        /*min-width: 100%;*/
    }
    
    .qrcode-container {
        max-width: 100%;
    }
}

/* 小屏幕优化 */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .card {
        max-width: 100%;
    }
    
    .card-body {
        padding: 20px 15px;
    }
    
    .domain-name {
        font-size: 32px;
    }
    
    .tagline {
        font-size: 18px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .contact-title {
        font-size: 18px;
    }
    
    .qrcode {
        width: 160px;
        height: 160px;
    }
}