﻿<style>
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    body {
        background: linear-gradient(135deg, #fdf6f0 0%, #ffece3 100%);
        font-family: 'Segoe UI', 'PingFang SC', Roboto, 'Microsoft YaHei', sans-serif;
        min-height: 100vh;
        padding: 30px 20px;
    }
    .main-card {
        max-width: 1400px;
        margin: 0 auto;
        background: rgba(255,255,255,0.92);
        border-radius: 48px;
        box-shadow: 0 25px 50px -12px rgba(0,0,0,0.2);
        overflow: hidden;
        padding: 40px 30px;
    }
    .title-area {
        text-align: center;
        margin-bottom: 40px;
        padding-bottom: 20px;
        border-bottom: 2px dashed #f0bc9e;
    }
    .main-title {
        text-align: center;
        margin-top: -10px;
        margin-bottom: 20px;
        background: linear-gradient(135deg,#E86F6F,#C44C6A);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-size: 32px;
        font-weight: bold;
        letter-spacing: 2px;
    }
    .sub-title {
        text-align: center;
        color: #b86b4a;
        font-size: 16px;
        margin-top: -10px;
    }
    .stats-bar {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin: 30px 0;
        flex-wrap: wrap;
    }
    .stat-item {
        text-align: center;
        background: #fff5f0;
        padding: 12px 28px;
        border-radius: 60px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    }
    .stat-number {
        font-size: 28px;
        font-weight: bold;
        color: #d sixteen 6a3c;
    }
    .stat-label {
        font-size: 13px;
        color: #aa7359;
    }
    .footer-links {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 12px;
        margin-top: 30px;
    }
    .footer-links a {
        display: block;
        background: #fffaf7;
        padding: 12px 18px;
        border-radius: 60px;
        text-decoration: none;
        color: #5a3a2a;
        font-size: 14px;
        transition: all 0.2s ease;
        border: 1px solid #ffe0d2;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .footer-links a:hover {
        background: #ffe3d8;
        border-color: #e7a07e;
        color: #bf5d38;
        transform: translateX(4px);
    }
    .footer-note {
        text-align: center;
        margin-top: 40px;
        padding-top: 25px;
        border-top: 1px solid #f0cfbc;
        color: #b87a5a;
        font-size: 13px;
    }
    @media (max-width: 700px) {
        .main-card { padding: 25px 18px; }
        .main-title { font-size: 24px; }
        .footer-links { grid-template-columns: 1fr; }
        .footer-links a { white-space: normal; }
    }
</style>