/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #ffffff;
    background-color: #1a1a2e;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(20, 20, 40, 0.6) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
}

a {
    text-decoration: none;
    color: inherit;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(20, 20, 40, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(65, 201, 180, 0.15);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #41C9B4;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 15px;
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #41C9B4;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-login {
    font-size: 15px;
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-login:hover {
    color: #41C9B4;
}

.btn-register {
    padding: 10px 24px;
    background: linear-gradient(135deg, #5dd9c7 0%, #41C9B4 100%);
    color: white;
    font-size: 15px;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(65, 201, 180, 0.25);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(65, 201, 180, 0.35);
}

/* Hero 区域 */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    z-index: 0;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
    filter: blur(0.5px);
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(10, 10, 30, 0.5) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #41C9B4 0%, transparent 70%);
    top: 10%;
    right: 10%;
}

.glow-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #ffd93d 0%, transparent 70%);
    top: 30%;
    left: 5%;
    opacity: 0.2;
}

.glow-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #6ee7b7 0%, transparent 70%);
    bottom: 10%;
    right: 20%;
    opacity: 0.25;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 60px 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background-color: rgba(65, 201, 180, 0.15);
    border-radius: 100px;
    font-size: 14px;
    color: #41C9B4;
    font-weight: 500;
    margin-bottom: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(65, 201, 180, 0.3);
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 28px;
    letter-spacing: 2px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.highlight {
    background: linear-gradient(135deg, #5dd9c7 0%, #41C9B4 50%, #35b0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: #c0c0d0;
    line-height: 1.8;
    margin-bottom: 48px;
    font-weight: 400;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 17px;
    font-weight: 500;
    border-radius: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-icon {
    font-size: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, #5dd9c7 0%, #41C9B4 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(65, 201, 180, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(65, 201, 180, 0.4);
}

.btn-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(65, 201, 180, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Footer 区域 */
.footer {
    background-color: #244B45;
    color: #8ab5b0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(65, 201, 180, 0.4), transparent);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 40px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-left {
    max-width: 400px;
}

.footer-logo {
    font-family: "Brush Script MT", cursive;
    font-size: 36px;
    color: #41C9B4;
    margin-bottom: 20px;
    font-style: italic;
    letter-spacing: 2px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #6d9994;
}

.footer-right {
    display: flex;
    gap: 32px;
}

.qr-item {
    text-align: center;
}

.qr-code {
    width: 120px;
    height: 120px;
    background-color: white;
    border-radius: 12px;
    padding: 8px;
    margin-bottom: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.qr-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.qr-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* 模拟二维码图案 - 使用更真实的二维码点阵效果 */
.qr-pattern {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #fff;
    background-image: 
        /* 三个定位角 */
        linear-gradient(#1a1a1a, #1a1a1a),
        linear-gradient(#1a1a1a, #1a1a1a),
        linear-gradient(#1a1a1a, #1a1a1a),
        /* 数据点阵 - 多行多列的小方块 */
        radial-gradient(circle at 15% 50%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 25% 35%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 35% 60%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 45% 45%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 55% 70%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 65% 30%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 75% 55%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 85% 40%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 50% 25%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 40% 80%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 60% 15%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 30% 75%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 70% 85%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 20% 20%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 80% 75%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 50% 60%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 45% 30%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 55% 50%, #1a1a1a 1.5px, transparent 1.5px);
    background-size: 
        20px 20px, 20px 20px, 20px 20px,
        100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%,
        100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    background-position: 
        6px 6px, calc(100% - 26px) 6px, 6px calc(100% - 26px),
        0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0,
        0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
    background-repeat: no-repeat;
}

/* 二维码定位角的内外框效果 */
.qr-pattern::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    width: 20px;
    height: 20px;
    border: 2px solid #1a1a1a;
    background: white;
}

.qr-pattern::after {
    content: '';
    position: absolute;
    top: 11px;
    left: 11px;
    width: 10px;
    height: 10px;
    background-color: #1a1a1a;
}

.qr-pattern-2 {
    background-image: 
        /* 三个定位角 */
        linear-gradient(#1a1a1a, #1a1a1a),
        linear-gradient(#1a1a1a, #1a1a1a),
        linear-gradient(#1a1a1a, #1a1a1a),
        /* 小程序绿色logo */
        radial-gradient(circle at 50% 50%, #41C9B4 8px, transparent 8px),
        /* 数据点阵 */
        radial-gradient(circle at 15% 45%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 25% 65%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 35% 30%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 70% 40%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 80% 60%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 60% 75%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 45% 20%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 55% 85%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 25% 50%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 75% 30%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 35% 80%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 65% 20%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 15% 75%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 85% 25%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 40% 55%, #1a1a1a 1.5px, transparent 1.5px),
        radial-gradient(circle at 60% 45%, #1a1a1a 1.5px, transparent 1.5px);
    background-size: 
        20px 20px, 20px 20px, 20px 20px,
        100% 100%,
        100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%,
        100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
}

.qr-pattern-2::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    width: 20px;
    height: 20px;
    border: 2px solid #1a1a1a;
    background: white;
}

.qr-pattern-2::after {
    content: '';
    position: absolute;
    top: 11px;
    left: 11px;
    width: 10px;
    height: 10px;
    background-color: #1a1a1a;
}

.qr-label {
    font-size: 13px;
    color: #8ab5b0;
}

.footer-bottom {
    border-top: 1px solid rgba(138, 181, 176, 0.15);
    padding: 24px 0;
}

.footer-bottom-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    font-size: 13px;
    color: #5d8a85;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
}

.footer-links a {
    color: #6d9994;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #41C9B4;
}

.divider {
    color: #3a5c58;
}

.made-with {
    color: #5d8a85;
}

.heart {
    color: #41C9B4;
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 64px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .footer-container {
        padding: 40px 20px 30px;
        flex-direction: column;
    }
    
    .footer-bottom-container {
        padding: 0 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 24px;
    }
}

/* ============================================================
   业务板块样式（数据 / 活动 / 分类 / 玩法 / 主理人 / 定制 / 评价 / CTA）
   ============================================================ */

/* 通用 section 容器 */
.section {
    position: relative;
    z-index: 1;
    background-color: #121629;
    padding: 96px 0;
}
.section:nth-of-type(even) { background-color: #0e1120; }

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #41C9B4;
    margin-bottom: 14px;
}
.section-eyebrow.light { color: #d8fff8; }

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.section-desc {
    font-size: 17px;
    color: #9aa4ba;
    line-height: 1.7;
}

.section-more {
    text-align: center;
    margin-top: 48px;
}

.btn-outline {
    background: transparent;
    color: #41C9B4;
    border: 1.5px solid rgba(65, 201, 180, 0.5);
}
.btn-outline:hover {
    background: rgba(65, 201, 180, 0.12);
    transform: translateY(-3px);
}

/* 数据背书 */
.stats {
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, #163f39 0%, #1d5049 50%, #163f39 100%);
    padding: 48px 0;
}
.stats-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-item { text-align: center; }
.stat-num {
    font-size: 46px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 1px;
}
.stat-num span { font-size: 26px; color: #7ee8d6; margin-left: 2px; }
.stat-label {
    margin-top: 10px;
    font-size: 15px;
    color: #b8ddd7;
}

/* 精选活动卡片 */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.activity-card {
    background: #171c33;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4);
    border-color: rgba(65, 201, 180, 0.4);
}
.activity-cover {
    position: relative;
    height: 168px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.cover-emoji {
    font-size: 64px;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
    transition: transform 0.35s ease;
}
.activity-card:hover .cover-emoji { transform: scale(1.12) rotate(-4deg); }
.cover-hike  { background: linear-gradient(135deg, #2e8b74, #1c5c4f); }
.cover-camp  { background: linear-gradient(135deg, #b8862f, #6e4f1c); }
.cover-sup   { background: linear-gradient(135deg, #2593a8, #175a6a); }
.cover-ride  { background: linear-gradient(135deg, #3560a8, #1c3560); }
.cover-photo { background: linear-gradient(135deg, #a8425a, #6a1c30); }
.cover-craft { background: linear-gradient(135deg, #6b4fa8, #3d2a6a); }
.activity-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
}
.activity-body { padding: 20px 22px 22px; }
.activity-name {
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.4;
}
.activity-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13.5px;
    color: #97a1b6;
    margin-bottom: 18px;
}
.activity-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.activity-host {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #c3cad9;
}
.host-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}
.activity-price {
    font-size: 22px;
    font-weight: 700;
    color: #41C9B4;
}
.activity-price small { font-size: 12px; color: #8a93a8; font-weight: 400; }
.activity-join {
    margin-top: 12px;
    font-size: 12.5px;
    color: #ffb454;
}

/* 活动分类 */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 16px;
    background: #171c33;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.cat-item:hover {
    transform: translateY(-6px);
    border-color: rgba(65, 201, 180, 0.45);
    background: #1c2340;
}
.cat-icon { font-size: 40px; margin-bottom: 14px; }
.cat-name { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.cat-sub { font-size: 12px; color: #8a93a8; }

/* 玩法流程 */
.step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.step-item {
    position: relative;
    padding: 34px 26px;
    background: #171c33;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    text-align: center;
}
.step-num {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 40px;
    font-weight: 800;
    color: rgba(65, 201, 180, 0.14);
    line-height: 1;
}
.step-icon {
    font-size: 44px;
    margin-bottom: 18px;
}
.step-title { font-size: 19px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.step-desc { font-size: 14px; color: #9aa4ba; line-height: 1.7; }

/* 主理人 */
.host-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.host-card {
    padding: 36px 24px;
    background: #171c33;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    text-align: center;
    transition: all 0.3s ease;
}
.host-card:hover { transform: translateY(-6px); border-color: rgba(65, 201, 180, 0.4); }
.host-big-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.host-name { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.host-role { font-size: 14px; color: #41C9B4; margin-bottom: 12px; }
.host-stats {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #b8c0d0;
    margin-bottom: 16px;
}
.host-quote { font-size: 13.5px; color: #8a93a8; font-style: italic; line-height: 1.6; }

/* 定制服务 */
.custom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    align-items: stretch;
    max-width: 780px;
    margin: 0 auto;
}
.custom-card {
    position: relative;
    padding: 40px 32px;
    background: #171c33;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    transition: all 0.3s ease;
}
.custom-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35); }
.custom-card.featured {
    background: linear-gradient(180deg, #1c3d38 0%, #16283a 100%);
    border-color: rgba(65, 201, 180, 0.5);
}
.custom-badge {
    position: absolute;
    top: -12px;
    left: 32px;
    background: linear-gradient(135deg, #5dd9c7, #41C9B4);
    color: #05261f;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 100px;
}
.custom-icon { font-size: 46px; margin-bottom: 18px; }
.custom-title { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.custom-desc { font-size: 14.5px; color: #9aa4ba; line-height: 1.75; margin-bottom: 20px; }
.custom-list { list-style: none; margin-bottom: 24px; }
.custom-list li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    color: #c3cad9;
    margin-bottom: 10px;
}
.custom-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #41C9B4;
    font-weight: 700;
}
.custom-link {
    font-size: 15px;
    font-weight: 600;
    color: #41C9B4;
    transition: gap 0.3s ease;
}
.custom-link:hover { color: #5dd9c7; }

/* 用户评价 */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testi-card {
    padding: 32px 30px;
    background: #171c33;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
}
.testi-stars { color: #ffcf4a; font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text { font-size: 15px; color: #d3d9e5; line-height: 1.8; margin-bottom: 22px; }
.testi-user {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #9aa4ba;
}
.testi-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

/* 成为主理人 CTA */
.join-cta {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #163f39 0%, #1d5049 45%, #123832 100%);
    padding: 88px 0;
    text-align: center;
    overflow: hidden;
}
.join-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}
.join-title {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin: 12px 0 18px;
    letter-spacing: 1px;
}
.join-desc {
    font-size: 17px;
    color: #d0eae5;
    line-height: 1.8;
    margin-bottom: 34px;
}
.join-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

/* footer 内部导航 */
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}
.footer-nav a {
    font-size: 14px;
    color: #8ab5b0;
    transition: color 0.3s ease;
}
.footer-nav a:hover { color: #41C9B4; }

/* 真实图片：封面与头像 */
.activity-card { cursor: pointer; }
.cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.activity-card:hover .cover-img { transform: scale(1.06); }
.host-avatar img,
.host-big-avatar img,
.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.host-big-avatar { overflow: hidden; }
.host-avatar, .testi-avatar { overflow: hidden; }
.host-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

/* ================= 业务板块响应式 ================= */
@media (max-width: 980px) {
    .activity-grid,
    .custom-grid,
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .step-grid,
    .host-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-container { grid-template-columns: repeat(4, 1fr); }
    .section-title { font-size: 32px; }
}

@media (max-width: 640px) {
    .section { padding: 64px 0; }
    .section-container { padding: 0 20px; }
    .activity-grid,
    .custom-grid,
    .testi-grid,
    .step-grid,
    .host-grid { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 16px;
        padding: 0 20px;
    }
    .stat-num { font-size: 38px; }
    .section-title { font-size: 27px; }
    .join-title { font-size: 28px; }
    .join-inner { padding: 0 20px; }
}

/* ============================================================
   子页面样式（列表页 / 详情页 / 主理人页）
   ============================================================ */
body.subpage {
    background-color: #0c0f1c;
    background-image: none;
}
body.subpage::before { display: none; }

/* 子页面通用页头 */
.page-header {
    position: relative;
    z-index: 1;
    padding: 132px 0 48px;
    background: linear-gradient(180deg, #163f39 0%, #0e1120 100%);
    text-align: center;
}
.breadcrumb {
    max-width: 1280px;
    margin: 0 auto 20px;
    padding: 0 40px;
    font-size: 13.5px;
    color: #8ab5b0;
    text-align: left;
}
.breadcrumb a { color: #8ab5b0; transition: color 0.3s ease; }
.breadcrumb a:hover { color: #41C9B4; }
.breadcrumb .sep { margin: 0 8px; color: #47615c; }
.page-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.page-subtitle { font-size: 16px; color: #b8ddd7; }

/* 筛选栏 */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 1280px;
    margin: 0 auto 44px;
    padding: 0 40px;
}
.filter-tab {
    padding: 9px 22px;
    border-radius: 100px;
    font-size: 14.5px;
    color: #c3cad9;
    background: #171c33;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.25s ease;
}
.filter-tab:hover { border-color: rgba(65, 201, 180, 0.4); color: #fff; }
.filter-tab.active {
    background: linear-gradient(135deg, #5dd9c7, #41C9B4);
    color: #05261f;
    font-weight: 600;
    border-color: transparent;
}

.list-section { padding: 56px 0 96px; background: #0c0f1c; }
.list-section .section-container { max-width: 1280px; }

/* 活动详情页 */
.detail-wrap {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}
.detail-cover {
    width: 100%;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 28px;
}
.detail-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.detail-tag {
    font-size: 13px;
    color: #41C9B4;
    background: rgba(65, 201, 180, 0.12);
    padding: 5px 14px;
    border-radius: 100px;
}
.detail-title { font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 18px; line-height: 1.35; }
.detail-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
    font-size: 14.5px;
    color: #c3cad9;
}
.detail-meta-row b { color: #fff; font-weight: 600; }
.detail-section { margin-bottom: 36px; }
.detail-section h3 {
    font-size: 21px;
    color: #fff;
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 3px solid #41C9B4;
}
.detail-section p { font-size: 15px; color: #aab3c5; line-height: 1.9; }
.itinerary { list-style: none; }
.itinerary li {
    position: relative;
    padding: 0 0 22px 28px;
    border-left: 2px solid rgba(65, 201, 180, 0.25);
    margin-left: 6px;
}
.itinerary li:last-child { border-left-color: transparent; padding-bottom: 0; }
.itinerary li::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #41C9B4;
}
.itinerary .it-time { color: #41C9B4; font-weight: 600; font-size: 14.5px; }
.itinerary .it-text { color: #aab3c5; font-size: 14.5px; margin-top: 4px; }
.info-list { list-style: none; }
.info-list li {
    position: relative;
    padding-left: 24px;
    font-size: 14.5px;
    color: #c3cad9;
    margin-bottom: 12px;
    line-height: 1.6;
}
.info-list li::before { content: '✓'; position: absolute; left: 0; color: #41C9B4; font-weight: 700; }
.info-list.no li::before { content: '✕'; color: #6d7788; }

/* 详情页右侧报名卡 */
.book-card {
    position: sticky;
    top: 96px;
    background: #171c33;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    height: fit-content;
}
.book-price { font-size: 34px; font-weight: 800; color: #41C9B4; margin-bottom: 4px; }
.book-price small { font-size: 15px; color: #8a93a8; font-weight: 400; }
.book-meta { font-size: 14px; color: #9aa4ba; margin-bottom: 20px; }
.book-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #c3cad9;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.book-row b { color: #fff; }
.book-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    margin-top: 22px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #05261f;
    background: linear-gradient(135deg, #5dd9c7, #41C9B4);
    box-shadow: 0 6px 20px rgba(65, 201, 180, 0.3);
    transition: transform 0.3s ease;
}
.book-btn:hover { transform: translateY(-2px); }
.book-sub {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}
.book-sub a {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    color: #c3cad9;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.book-sub a:hover { color: #41C9B4; border-color: rgba(65, 201, 180, 0.4); }
.book-host {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.book-host img, .book-host .letter {
    width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #fff; font-size: 16px;
}
.book-host .bh-name { font-size: 15px; color: #fff; font-weight: 600; }
.book-host .bh-role { font-size: 12.5px; color: #8a93a8; }
.book-host a { margin-left: auto; font-size: 13px; color: #41C9B4; }

/* 主理人个人页 */
.profile-header {
    position: relative;
    z-index: 1;
    padding: 128px 0 56px;
    background: linear-gradient(180deg, #163f39 0%, #0e1120 100%);
}
.profile-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}
.profile-avatar {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.profile-name { font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.profile-role { font-size: 16px; color: #7ee8d6; margin-bottom: 18px; }
.profile-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.profile-stats .ps-num { font-size: 26px; font-weight: 800; color: #fff; }
.profile-stats .ps-label { font-size: 13px; color: #b8ddd7; margin-top: 2px; }
.profile-actions { margin-left: auto; display: flex; gap: 12px; flex-wrap: wrap; }
.skill-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.skill-tag {
    font-size: 14px; color: #c3cad9;
    background: #171c33; border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 18px; border-radius: 100px;
}

@media (max-width: 980px) {
    .detail-wrap { grid-template-columns: 1fr; }
    .book-card { position: static; }
    .profile-actions { margin-left: 0; width: 100%; }
}
@media (max-width: 640px) {
    .page-header { padding: 104px 0 36px; }
    .breadcrumb, .filter-bar { padding: 0 20px; }
    .page-title { font-size: 28px; }
    .detail-wrap { padding: 24px 20px; gap: 28px; }
    .detail-cover { height: 220px; }
    .detail-title { font-size: 24px; }
    .profile-inner { padding: 0 20px; gap: 24px; }
    .profile-avatar { width: 100px; height: 100px; }
    .profile-name { font-size: 26px; }
}

/* ============================================================
   相册模块 + 城市筛选
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.gallery-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
    border: 1px solid rgba(255,255,255,.06);
}
.gallery-grid img:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.4); }

/* 主理人相册：单栏横排（横向滚动）3:4 缩略图 */
.host-gallery {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.host-gallery .hg-thumb {
    flex: 0 0 auto;
    width: 210px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 16px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,.06);
    scroll-snap-align: start;
    transition: transform .3s ease, box-shadow .3s ease;
}
.host-gallery .hg-thumb:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,0,0,.45); }
/* 细滚动条 */
.host-gallery::-webkit-scrollbar { height: 6px; }
.host-gallery::-webkit-scrollbar-thumb { background: rgba(255,255,255,.18); border-radius: 100px; }
.host-gallery::-webkit-scrollbar-track { background: transparent; }
@media (max-width: 560px) {
    .host-gallery .hg-thumb { width: 150px; }
}

/* 相册轮播灯箱 */
.hg-lightbox {
    position: fixed; inset: 0; background: rgba(0,0,0,.92);
    display: none; align-items: center; justify-content: center; z-index: 9999; padding: 24px;
}
.hg-lightbox.show { display: flex; }
.hg-lightbox img { max-width: 88vw; max-height: 86vh; border-radius: 12px; user-select: none; }
.hg-lightbox .hg-close {
    position: absolute; top: 20px; right: 28px; color: #fff; font-size: 36px;
    cursor: pointer; line-height: 1; opacity: .85;
}
.hg-lightbox .hg-close:hover { opacity: 1; }
.hg-lightbox .hg-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.12);
    color: #fff; font-size: 34px; line-height: 50px; text-align: center; cursor: pointer;
    user-select: none; transition: background .2s;
}
.hg-lightbox .hg-arrow:hover { background: rgba(255,255,255,.24); }
.hg-lightbox .hg-prev { left: 24px; }
.hg-lightbox .hg-next { right: 24px; }
.hg-lightbox .hg-counter {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    color: #fff; font-size: 14px; background: rgba(0,0,0,.4); padding: 5px 14px; border-radius: 100px;
}
@media (max-width: 560px) {
    .hg-lightbox .hg-arrow { width: 42px; height: 42px; font-size: 28px; line-height: 40px; }
    .hg-lightbox .hg-prev { left: 10px; }
    .hg-lightbox .hg-next { right: 10px; }
}

/* 视频网格（支持多条视频自适应） */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 16px;
}
.video-grid .video-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 6px 20px rgba(0,0,0,.3);
    aspect-ratio: 3 / 4;
}
.video-grid .video-item video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #000;
}
/* 只有一条视频时，居中并限制最大宽度，避免过宽 */
.video-grid:has(.video-item:only-child) {
    grid-template-columns: minmax(0, 720px);
    justify-content: center;
}

/* 灯箱 */
.sj-lightbox {
    position: fixed; inset: 0; background: rgba(0,0,0,.9);
    display: none; align-items: center; justify-content: center; z-index: 9999; padding: 24px;
}
.sj-lightbox.show { display: flex; }
.sj-lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; }
.sj-lightbox .sj-close {
    position: absolute; top: 22px; right: 28px; color: #fff; font-size: 34px;
    cursor: pointer; line-height: 1; opacity: .8;
}
.sj-lightbox .sj-close:hover { opacity: 1; }

/* 城市筛选下拉 */
.city-filter {
    display: flex; align-items: center; gap: 10px; justify-content: center;
    max-width: 1280px; margin: 0 auto 20px; padding: 0 40px; flex-wrap: wrap;
}
.city-filter label { color: #9aa4ba; font-size: 14px; }
.city-filter select {
    background: #171c33; border: 1px solid rgba(255,255,255,.12); color: #fff;
    border-radius: 100px; padding: 8px 18px; font-size: 14px; cursor: pointer;
}
.city-filter select:focus { outline: none; border-color: rgba(65,201,180,.6); }

@media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid img { height: 120px; }
}
@media (max-width: 560px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .city-filter { padding: 0 20px; }
}

/* ============================================================
   用户系统：导航入口 / 登录注册 / 个人中心
   ============================================================ */
/* 导航登录入口 & 用户胶囊 */
.nav-actions .nav-login {
    padding: 8px 18px; border: 1px solid rgba(65,201,180,.5); border-radius: 100px;
    color: #5dd9c7; font-size: 14px; transition: all .25s ease;
}
.nav-actions .nav-login:hover { background: rgba(65,201,180,.14); }
.nav-user {
    display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px 5px 5px;
    border: 1px solid rgba(255,255,255,.14); border-radius: 100px; color: #fff;
    font-size: 14px; text-decoration: none; transition: all .25s ease;
}
.nav-user:hover { border-color: rgba(65,201,180,.6); }
.nav-user img, .nav-user .nav-user-letter {
    width: 28px; height: 28px; border-radius: 50%; object-fit: cover; display: inline-flex;
    align-items: center; justify-content: center; background: linear-gradient(135deg,#5dd9c7,#41C9B4);
    color: #06271f; font-weight: 700; font-size: 14px;
}
.nav-user-name { max-width: 110px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* 登录 / 注册页 */
.auth-wrap {
    min-height: calc(100vh - 72px); display: flex; align-items: center; justify-content: center;
    padding: 90px 20px 40px; background: radial-gradient(1200px 600px at 50% -10%, rgba(65,201,180,.12), transparent 60%), #0c0f1c;
}
.auth-card {
    width: 100%; max-width: 420px; background: #141a2e; border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px; padding: 30px 30px 34px; box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.auth-tabs { display: flex; gap: 8px; margin-bottom: 24px; }
.auth-tab {
    flex: 1; padding: 12px; background: transparent; border: none; color: #8a93a8;
    font-size: 16px; font-weight: 600; cursor: pointer; border-bottom: 2px solid transparent;
}
.auth-tab.active { color: #fff; border-bottom-color: #41C9B4; }
.auth-field { margin-bottom: 16px; }
.auth-field label { display: block; color: #9aa4ba; font-size: 13px; margin-bottom: 7px; }
.auth-field input {
    width: 100%; background: #1e2438; border: 1px solid rgba(255,255,255,.1); border-radius: 10px;
    padding: 12px 14px; color: #fff; font-size: 14px; box-sizing: border-box;
}
.auth-field input:focus { outline: none; border-color: rgba(65,201,180,.6); }
.auth-field input:disabled { opacity: .6; cursor: not-allowed; }
.auth-btn {
    width: 100%; padding: 13px; border: none; border-radius: 11px; font-size: 15px; font-weight: 600;
    color: #06271f; background: linear-gradient(135deg,#5dd9c7,#41C9B4); cursor: pointer; transition: opacity .2s;
}
.auth-btn:hover { opacity: .9; }
.auth-btn.ghost { background: transparent; border: 1px solid rgba(255,255,255,.2); color: #cdd4e3; }
.auth-switch { text-align: center; color: #8a93a8; font-size: 13px; margin: 16px 0 0; }
.auth-switch a { color: #5dd9c7; }
.auth-msg { min-height: 18px; font-size: 13px; margin: 4px 0 12px; }
.auth-msg.err { color: #ff9a9a; }
.auth-msg.ok { color: #66e0cd; }

/* 个人中心 */
.account-wrap { padding-top: 72px; background: #0c0f1c; min-height: 100vh; }
.account-hero { background: linear-gradient(135deg, rgba(65,201,180,.16), rgba(65,201,180,.02)); border-bottom: 1px solid rgba(255,255,255,.06); }
.account-hero-inner {
    max-width: 1080px; margin: 0 auto; padding: 40px; display: flex; align-items: center; gap: 22px;
}
.account-avatar {
    width: 84px; height: 84px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
    border: 2px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg,#5dd9c7,#41C9B4);
}
.account-avatar img { width: 100%; height: 100%; object-fit: cover; }
.account-hero-info { flex: 1; }
.account-hero-info h2 { color: #fff; margin: 0 0 4px; font-size: 24px; }
.account-hero-info .muted { color: #9aa4ba; margin: 0 0 10px; font-size: 14px; }
.account-stats { display: flex; gap: 22px; color: #9aa4ba; font-size: 14px; }
.account-stats b { color: #5dd9c7; font-size: 17px; margin-right: 3px; }

.account-body { max-width: 1080px; margin: 0 auto; padding: 30px 40px 60px; display: flex; gap: 26px; }
.account-side { width: 180px; flex-shrink: 0; display: flex; flex-direction: column; gap: 6px; }
.account-menu {
    text-align: left; padding: 12px 16px; background: transparent; border: none; color: #9aa4ba;
    font-size: 15px; border-radius: 10px; cursor: pointer; transition: all .2s;
}
.account-menu:hover { background: rgba(255,255,255,.04); color: #fff; }
.account-menu.active { background: rgba(65,201,180,.14); color: #5dd9c7; font-weight: 600; }
.account-main { flex: 1; min-width: 0; }
.account-panel h3 { color: #fff; font-size: 20px; margin: 0 0 20px; }
.profile-form { max-width: 460px; }
.avatar-edit { display: flex; align-items: center; gap: 16px; }
.avatar-preview {
    width: 66px; height: 66px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
    background: linear-gradient(135deg,#5dd9c7,#41C9B4); display: flex; align-items: center; justify-content: center;
}
.avatar-preview img { width: 100%; height: 100%; object-fit: cover; }
.hint { display: block; color: #8a93a8; font-size: 12px; margin-top: 6px; }

/* 订单列表 */
.order-list { display: flex; flex-direction: column; gap: 12px; }
.order-item {
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    background: #141a2e; border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 16px 18px;
}
.order-title { color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 5px; }
.order-title a { color: #fff; text-decoration: none; }
.order-title a:hover { color: #5dd9c7; }
.order-meta { color: #8a93a8; font-size: 12.5px; }
.order-right { text-align: right; flex-shrink: 0; }
.order-amt { color: #ffd93d; font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.order-badge { font-size: 12px; padding: 3px 10px; border-radius: 100px; }
.order-badge.ok { background: rgba(102,224,205,.16); color: #66e0cd; }
.order-badge.wait { background: rgba(255,217,61,.16); color: #ffd93d; }
.order-badge.off { background: rgba(255,120,120,.14); color: #ff9a9a; }
.account-main .muted { color: #8a93a8; }
.account-main .muted a { color: #5dd9c7; }

@media (max-width: 720px) {
    .account-hero-inner { flex-wrap: wrap; padding: 26px 20px; }
    .account-body { flex-direction: column; padding: 20px; }
    .account-side { width: 100%; flex-direction: row; flex-wrap: wrap; }
}
