/* ==================== 
   复古奇迹MU落地页样式
   ==================== */

/* CSS变量 - 奇迹风格色调 */
:root {
    --primary: #00d4ff;
    --primary-dark: #00a8cc;
    --secondary: #7b2cbf;
    --gold: #ffd700;
    --gold-light: #ffed4e;
    --dark: #0a0e27;
    --dark-light: #12153a;
    --dark-card: #1a1f4d;
    --text: #ffffff;
    --text-muted: #8b92b9;
    --blade: #ff4444;
    --soul: #4488ff;
    --bow: #44ff88;
    --magic-glow: 0 0 30px rgba(0, 212, 255, 0.5);
    --gold-glow: 0 0 30px rgba(255, 215, 0, 0.4);
    --gradient-magic: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
}

/* 基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== 
   动态背景
   ==================== */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(123, 44, 191, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
}

.magic-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.light-beams {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.03) 50%, transparent 100%);
    animation: beam-pulse 4s ease-in-out infinite;
}

@keyframes beam-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.glow-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 212, 255, 0.02) 3px,
        rgba(0, 212, 255, 0.02) 6px
    );
}

/* ==================== 
   导航栏
   ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links {
    margin-left: auto;
}

.logo-wings {
    font-size: 2rem;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
    animation: wing-glow 2s ease-in-out infinite;
}

@keyframes wing-glow {
    0%, 100% { text-shadow: 0 0 20px rgba(0, 212, 255, 0.8); }
    50% { text-shadow: 0 0 40px rgba(0, 212, 255, 1), 0 0 60px rgba(123, 44, 191, 0.5); }
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 900;
    background: var(--gradient-magic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-big {
    font-size: 1.6rem;
    font-weight: 900;
}

.logo-tag {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff8c00, #ffb347, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 4px;
    position: relative;
    display: inline-block;
    animation: tagGlow 2s ease-in-out infinite;
}

.logo-tag-large {
    font-size: 3.3rem;
    font-weight: 900;
}

@keyframes tagGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 4px rgba(255, 140, 0, 0.6));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 12px rgba(255, 179, 71, 0.8));
        transform: scale(1.05);
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-download {
    background: var(--gradient-magic);
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 700 !important;
    box-shadow: var(--magic-glow);
}

.nav-download:hover {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
}

.nav-download::after {
    display: none !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==================== 
   英雄区域
   ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid var(--primary);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.95rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.badge-icon {
    animation: badge-spin 3s linear infinite;
}

@keyframes badge-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-main {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.15;
    flex-shrink: 0;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(135deg, #ff8c00, #ffb347, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 140, 0, 0.5));
}

.hero-intro {
    flex: 1;
    max-width: 550px;
}

.intro-text {
    font-size: 0.95rem;
    color: rgba(100, 230, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 10px;
    padding-left: 15px;
    border-left: 3px solid rgba(0, 212, 255, 0.5);
}

.intro-text:last-child {
    margin-bottom: 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--dark-card);
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    font-size: 0.95rem;
}

.tag-icon {
    font-size: 1.2rem;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

/* 预约人数计数器 */
.booking-counter {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 149, 0, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    animation: counterPulse 2s ease-in-out infinite;
}

@keyframes counterPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.2); }
    50% { box-shadow: 0 0 40px rgba(255, 107, 53, 0.4); }
}

.counter-icon {
    font-size: 1.4rem;
    animation: fireFlicker 1s ease-in-out infinite;
}

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

.counter-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.counter-number {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    min-width: 60px;
    text-align: center;
}

.counter-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: glowSweep 3s ease-in-out infinite;
}

@keyframes glowSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-magic);
    color: var(--text);
    box-shadow: var(--magic-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.btn-magic {
    position: relative;
    overflow: hidden;
}

.btn-magic::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg) translateX(-100%);
    animation: btn-shine 3s ease-in-out infinite;
}

@keyframes btn-shine {
    0%, 100% { transform: rotate(45deg) translateX(-100%); }
    50% { transform: rotate(45deg) translateX(100%); }
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(0, 212, 255, 0.4);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: var(--magic-glow);
}

.btn-booking {
    background: linear-gradient(135deg, #ff6b35, #ff9500);
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    border: none;
}

.btn-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-icon {
    font-size: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* 英雄视觉区 - 天使雕像 */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ==================== 
   Hero展示区 - 左右布局
   ==================== */
.hero-showcase {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 20px;
}

/* 左侧：正方形LOGO展示区 */
.showcase-left {
    flex-shrink: 0;
}

.logo-showcase {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-glow-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 3px solid rgba(0, 212, 255, 0.3);
    border-radius: 30px;
    animation: logo-ring-pulse 3s ease-in-out infinite;
    transform: rotate(45deg);
}

.logo-glow-ring::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 20px;
    animation: logo-ring-pulse 3s ease-in-out infinite 0.5s;
}

@keyframes logo-ring-pulse {
    0%, 100% { opacity: 0.4; box-shadow: 0 0 30px rgba(0, 212, 255, 0.3); }
    50% { opacity: 0.8; box-shadow: 0 0 60px rgba(0, 212, 255, 0.5); }
}

.logo-frame {
    position: relative;
    z-index: 10;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 44, 191, 0.1));
    border: 3px solid rgba(0, 212, 255, 0.4);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(0, 212, 255, 0.3),
        inset 0 0 40px rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

.logo-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.effect-ring {
    position: absolute;
    border: 1px dashed rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    animation: effect-rotate 10s linear infinite;
}

.effect-ring.r1 {
    width: 380px;
    height: 380px;
    top: -15px;
    left: -15px;
}

.effect-ring.r2 {
    width: 420px;
    height: 420px;
    top: -35px;
    left: -35px;
    animation-direction: reverse;
    animation-duration: 15s;
}

@keyframes effect-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 右侧：特色 + 下载 */
.showcase-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 280px;
}

.quick-features {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
}

.quick-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    text-align: center;
}

.quick-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

a.quick-item,
.quick-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 255, 0.05);
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

a.quick-item:hover,
.quick-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-3px);
}

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

.quick-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.quick-download {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 44, 191, 0.1));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
}

.quick-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.qr-small {
    margin-bottom: 15px;
}

.qr-placeholder {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 25px;
    border-radius: 15px;
    border: 2px dashed rgba(0, 212, 255, 0.4);
}

.qr-placeholder span {
    font-size: 2.5rem;
}

.qr-placeholder small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.quick-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #00d4ff, #7b2cbf);
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    transition: all 0.3s;
}

.quick-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

/* ==================== 
   通用区块样式
   ==================== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header.light {
    color: var(--text);
}

.section-tag {
    display: inline-block;
    background: rgba(0, 212, 255, 0.15);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* ==================== 
   游戏特色
   ==================== */
.features {
    background: var(--dark-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--dark-card);
    padding: 45px 35px;
    border-radius: 25px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.feature-card:hover .card-glow {
    opacity: 1;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    position: relative;
}

.icon-glow {
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
    animation: icon-float 3s ease-in-out infinite;
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* ==================== 
   职业介绍
   ==================== */
.classes {
    background: var(--dark);
}

.classes-container {
    max-width: 1000px;
    margin: 0 auto;
}

.class-tabs {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
}

.class-tab {
    background: var(--dark-card);
    border: 2px solid transparent;
    padding: 25px 45px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 160px;
}

.class-tab:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.class-tab.active {
    background: var(--dark-card);
    border-color: var(--primary);
    box-shadow: var(--magic-glow);
}

.tab-icon {
    font-size: 2.5rem;
}

.tab-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
}

.tab-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.class-showcase {
    background: var(--dark-card);
    border-radius: 35px;
    padding: 60px;
}

.class-panel {
    display: none;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.class-panel.active {
    display: grid;
}

.class-avatar {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}

.blade-avatar {
    background: radial-gradient(circle, rgba(255, 68, 68, 0.3) 0%, transparent 70%);
    border: 2px solid rgba(255, 68, 68, 0.5);
}

.soul-avatar {
    background: radial-gradient(circle, rgba(68, 136, 255, 0.3) 0%, transparent 70%);
    border: 2px solid rgba(68, 136, 255, 0.5);
}

.bow-avatar {
    background: radial-gradient(circle, rgba(68, 255, 136, 0.3) 0%, transparent 70%);
    border: 2px solid rgba(68, 255, 136, 0.5);
}

.magicblade-avatar {
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
    border: 2px solid rgba(255, 107, 53, 0.5);
}

.emperor-avatar {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.summoner-avatar {
    background: radial-gradient(circle, rgba(123, 44, 191, 0.3) 0%, transparent 70%);
    border: 2px solid rgba(123, 44, 191, 0.5);
}

.avatar-icon {
    font-size: 6rem;
}

.avatar-wings {
    position: absolute;
    width: 100%;
    height: 100%;
}

.w-left, .w-right {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 120px;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.3) 0%, transparent 100%);
}

.w-left {
    left: -30px;
    transform: translateY(-50%) rotate(-20deg);
    border-radius: 50% 0 50% 50%;
}

.w-right {
    right: -30px;
    transform: translateY(-50%) rotate(20deg);
    border-radius: 0 50% 50% 50%;
}

.class-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.class-title {
    font-size: 2.2rem;
    font-weight: 900;
}

.class-type {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.class-badge {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.blade-badge {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
}

.soul-badge {
    background: rgba(68, 136, 255, 0.2);
    color: #4488ff;
}

.bow-badge {
    background: rgba(68, 255, 136, 0.2);
    color: #44ff88;
}

.magicblade-badge {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
}

.emperor-badge {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.summoner-badge {
    background: rgba(123, 44, 191, 0.2);
    color: #7b2cbf;
}

.class-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.class-skills {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    border-radius: 15px;
    border-left: 3px solid var(--primary);
}

.skill-icon {
    font-size: 1.8rem;
}

.skill-info {
    display: flex;
    flex-direction: column;
}

.skill-name {
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 3px;
}

.skill-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.class-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-row .stat-label {
    width: 90px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.stat-bar {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: var(--gradient-magic);
    border-radius: 5px;
    transition: width 1s ease;
}

/* ==================== 
   翅膀系统
   ==================== */
.wings-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
}

.wings-showcase {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.wing-card {
    background: var(--dark-card);
    padding: 35px 30px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.4s;
    position: relative;
    min-width: 200px;
    max-width: 240px;
    flex: 1;
}

.wing-card.featured {
    transform: scale(1.1);
    border-color: var(--gold);
    box-shadow: var(--gold-glow);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.wing-visual {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

.gen1 {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.gen2 {
    background: radial-gradient(circle, rgba(0, 212, 255, 0.25) 0%, transparent 70%);
    border: 2px solid rgba(0, 212, 255, 0.6);
}

.gen3 {
    background: radial-gradient(circle, rgba(123, 44, 191, 0.3) 0%, transparent 70%);
    border: 2px solid rgba(123, 44, 191, 0.6);
}

.gen4 {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 215, 0, 0.2) 30%, transparent 70%);
    border: 2px solid rgba(255, 215, 0, 0.8);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
}

.wing-icon {
    font-size: 5rem;
}

.wing-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: wing-pulse 2s ease-in-out infinite;
}

.gen1 .wing-glow {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 60%);
}

.gen2 .wing-glow {
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 60%);
}

.gen3 .wing-glow {
    background: radial-gradient(circle, rgba(123, 44, 191, 0.3) 0%, transparent 60%);
}

.gen4 .wing-glow {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 60%);
}

@keyframes wing-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

.wing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.wing-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==================== 
   地图展示
   ==================== */
.maps {
    background: var(--dark-light);
}

.maps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 300px 200px;
    gap: 20px;
}

.map-card {
    border-radius: 25px;
    overflow: hidden;
}

.map-card.large {
    grid-column: span 1;
    grid-row: span 2;
}

.map-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s;
}

.lorencia {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.noria {
    background: linear-gradient(135deg, rgba(68, 255, 136, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.devias {
    background: linear-gradient(135deg, rgba(68, 136, 255, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.dungeon {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.losttower {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.map-content {
    text-align: center;
    z-index: 10;
}

.map-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 10px;
}

.map-visual h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.map-visual p {
    color: var(--text-muted);
    margin-top: 10px;
}

.map-visual:hover {
    transform: scale(1.05);
}

/* ==================== 
   玩家评价
   ==================== */
.reviews {
    background: var(--dark);
}

.reviews-slider {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.review-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    max-width: 350px;
    position: relative;
    transition: all 0.3s;
}

.review-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: var(--gold-glow);
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.review-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.review-gem {
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 2.5rem;
    animation: gem-float 2s ease-in-out infinite;
}

@keyframes gem-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
}

.review-stars {
    font-size: 1.3rem;
    margin-bottom: 20px;
    margin-top: 10px;
}

.review-text {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 55px;
    height: 55px;
    background: var(--gradient-magic);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 700;
    color: var(--gold);
}

.reviewer-tag {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==================== 
   下载区域
   ==================== */
.download {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 50%, var(--dark) 100%);
    padding: 120px 0;
}

.download-card {
    background: var(--dark-card);
    border-radius: 40px;
    padding: 80px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
}

.download-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 60%);
    animation: decoration-pulse 4s ease-in-out infinite;
}

@keyframes decoration-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.floating-gems {
    position: absolute;
    width: 100%;
    height: 100%;
}

.gem {
    position: absolute;
    font-size: 2rem;
    animation: gem-float-random 5s ease-in-out infinite;
}

.gem:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.gem:nth-child(2) { top: 30%; right: 20%; animation-delay: 1s; }
.gem:nth-child(3) { bottom: 25%; left: 25%; animation-delay: 2s; }

@keyframes gem-float-random {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(10deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-10deg); }
}

.download-content {
    position: relative;
    z-index: 10;
}

.download-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.gift-box {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.gift-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.3);
    padding: 18px 28px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.gift-icon {
    font-size: 2rem;
}

.gift-text {
    font-weight: 700;
    color: var(--gold);
}

.download-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--dark);
    border: 2px solid rgba(0, 212, 255, 0.3);
    padding: 20px 40px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
    min-width: 220px;
}

.download-btn:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--magic-glow);
}

.download-btn.ios {
    border-color: rgba(150, 150, 150, 0.4);
}

.download-btn.ios:hover {
    border-color: #aaa;
    box-shadow: 0 10px 30px rgba(150, 150, 150, 0.3);
}

.download-btn.pc {
    border-color: rgba(0, 255, 136, 0.4);
}

.download-btn.pc:hover {
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-icon-large {
    font-size: 3rem;
}

.btn-text-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-small {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-large {
    font-size: 1.4rem;
    font-weight: 700;
}

.download-qr {
    display: flex;
    justify-content: center;
}

.qr-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--dark);
    padding: 30px 40px;
    border-radius: 20px;
    border: 2px dashed rgba(0, 212, 255, 0.4);
}

.qr-icon {
    font-size: 4rem;
}

.qr-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==================== 
   底部
   ==================== */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(0, 212, 255, 0.15);
    padding: 70px 0 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

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

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.link-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-column h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.link-column a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.link-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

/* ==================== 
   响应式设计
   ==================== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        width: 100%;
        margin-top: 30px;
    }
    
    .hero-showcase {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
    
    .showcase-right {
        max-width: 240px;
    }
    
    .class-tabs {
        flex-wrap: wrap;
    }
    
    .class-panel {
        grid-template-columns: 1fr;
    }
    
    .class-image {
        order: -1;
    }
    
    .class-avatar {
        width: 220px;
        height: 220px;
    }
    
    .wings-showcase {
        flex-direction: column;
        align-items: center;
    }
    
    .wing-card.featured {
        transform: scale(1);
    }
    
    .maps-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }
    
    .map-card.large {
        grid-row: span 1;
    }
    
    .reviews-slider {
        flex-direction: column;
        align-items: center;
    }
    
    .download-card {
        padding: 50px 30px;
    }
    
    .gift-box {
        flex-direction: column;
        align-items: center;
    }
    
    .download-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        margin-left: auto;
    }
    
    .nav-container {
        position: relative;
    }
    
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-main {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-intro {
        max-width: 100%;
    }
    
    .intro-text {
        padding-left: 0;
        border-left: none;
        text-align: center;
        color: rgba(100, 230, 255, 0.9);
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-showcase {
        flex-direction: column;
        align-items: center;
    }
    
    .showcase-right {
        max-width: 100%;
        width: 100%;
    }
    
    .logo-showcase {
        width: 280px;
        height: 280px;
    }
    
    .logo-frame {
        width: 220px;
        height: 220px;
    }
    
    .class-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .class-tab {
        width: 100%;
        max-width: 280px;
    }
    
    .class-showcase {
        padding: 30px 20px;
    }
    
    .class-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .review-card.featured {
        transform: scale(1);
    }
    
    .review-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    /* 超小屏手机优化 */
    .nav-container {
        padding: 12px 15px;
        position: relative;
    }
    
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-tag {
        font-size: 0.85rem;
    }
    
    .logo-tag-large {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 100px 15px 40px;
        min-height: auto;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
    
    .hero-main {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-features {
        gap: 10px;
    }
    
    .feature-tag {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .hero-showcase {
        gap: 20px;
        padding: 10px;
    }
    
    .logo-showcase {
        width: 240px;
        height: 240px;
    }
    
    .logo-frame {
        width: 180px;
        height: 180px;
    }
    
    .logo-glow-ring {
        width: 220px;
        height: 220px;
    }
    
    .booking-counter {
        padding: 10px 18px;
        margin-bottom: 30px;
    }
    
    .counter-icon {
        font-size: 1.2rem;
    }
    
    .counter-text {
        font-size: 0.9rem;
    }
    
    .counter-number {
        font-size: 1.1rem;
        min-width: 50px;
    }
    
    .quick-list {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .quick-item {
        padding: 10px;
    }
    
    .quick-icon {
        font-size: 1.2rem;
    }
    
    .quick-text {
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-icon {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-suffix {
        font-size: 1.2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-desc {
        font-size: 0.9rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .class-tabs {
        gap: 12px;
    }
    
    .class-tab {
        padding: 15px 20px;
        min-width: auto;
        width: 100%;
    }
    
    .tab-icon {
        font-size: 1.8rem;
    }
    
    .tab-name {
        font-size: 1rem;
    }
    
    .class-showcase {
        padding: 20px 15px;
        border-radius: 20px;
    }
    
    .class-panel {
        gap: 30px;
    }
    
    .class-avatar {
        width: 160px;
        height: 160px;
    }
    
    .avatar-icon {
        font-size: 4rem;
    }
    
    .class-title {
        font-size: 1.6rem;
    }
    
    .class-desc {
        font-size: 0.9rem;
    }
    
    .skill-item {
        padding: 12px 15px;
    }
    
    .skill-icon {
        font-size: 1.4rem;
    }
    
    .skill-name {
        font-size: 0.95rem;
    }
    
    .skill-desc {
        font-size: 0.8rem;
    }
    
    .stat-row .stat-label {
        width: 70px;
        font-size: 0.85rem;
    }
    
    .stat-bar {
        height: 8px;
    }
    
    .wing-card {
        padding: 25px 20px;
        min-width: auto;
        width: 100%;
    }
    
    .wing-visual {
        width: 140px;
        height: 140px;
    }
    
    .wing-icon {
        font-size: 3.5rem;
    }
    
    .wing-card h3 {
        font-size: 1.2rem;
    }
    
    .maps-grid {
        gap: 12px;
    }
    
    .map-visual h3 {
        font-size: 1.2rem;
    }
    
    .map-icon {
        font-size: 2.5rem;
    }
    
    .review-card {
        padding: 25px 20px;
        max-width: 100%;
    }
    
    .review-stars {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
    
    .reviewer-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
    
    .download-card {
        padding: 35px 20px;
        border-radius: 25px;
    }
    
    .download-title {
        font-size: 1.8rem;
    }
    
    .download-subtitle {
        font-size: 1rem;
    }
    
    .gift-box {
        gap: 15px;
    }
    
    .gift-item {
        padding: 12px 18px;
        font-size: 0.85rem;
    }
    
    .gift-icon {
        font-size: 1.5rem;
    }
    
    .download-actions {
        gap: 15px;
    }
    
    .download-btn {
        padding: 15px 25px;
        min-width: auto;
        width: 100%;
        justify-content: center;
    }
    
    .btn-icon-large {
        font-size: 2rem;
    }
    
    .btn-large {
        font-size: 1.1rem;
    }
    
    .qr-box {
        padding: 20px 30px;
    }
    
    .qr-icon {
        font-size: 3rem;
    }
    
    .footer {
        padding: 40px 0 30px;
    }
    
    .footer-brand .logo {
        font-size: 1.2rem;
    }
    
    .footer-brand p {
        font-size: 0.85rem;
    }
    
    .footer-links {
        gap: 25px;
    }
    
    .link-column h4 {
        font-size: 0.95rem;
    }
    
    .link-column a {
        font-size: 0.85rem;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* ==================== 
   平板横屏/折叠屏优化
   ==================== */
@media (min-width: 481px) and (max-width: 1023px) {
    .hero-main {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .hero-intro {
        max-width: 100%;
    }
    
    .intro-text {
        padding-left: 0;
        border-left: none;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .maps-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 250px 200px 200px;
    }
    
    .map-card.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .class-tabs {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .class-tab {
        flex: 1;
        min-width: 140px;
    }
    
    .wings-showcase {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .wing-card {
        flex: 1;
        min-width: 200px;
        max-width: 280px;
    }
    
    .reviews-slider {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .review-card {
        flex: 1;
        min-width: 260px;
        max-width: 350px;
    }
    
    .download-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .download-btn {
        flex: 1;
        min-width: 200px;
        max-width: 280px;
    }
    
    .gift-box {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .gift-item {
        flex: 1;
        min-width: 160px;
    }
}

/* ==================== 
   移动端触摸优化
   ==================== */
@media (hover: none) and (pointer: coarse) {
    /* 触摸设备禁用悬停效果 */
    .feature-card:hover {
        transform: none;
        border-color: rgba(0, 212, 255, 0.1);
    }
    
    .feature-card:hover .card-glow {
        opacity: 0;
    }
    
    .review-card:hover {
        transform: none;
        border-color: rgba(0, 212, 255, 0.1);
    }
    
    .review-card.featured:hover {
        transform: scale(1);
    }
    
    .wing-card:hover {
        transform: none;
        border-color: rgba(0, 212, 255, 0.1);
    }
    
    .map-visual:hover {
        transform: none;
    }
    
    .download-btn:hover {
        transform: none;
        box-shadow: none;
    }
    
    .btn-primary:hover {
        transform: none;
    }
    
    .btn-secondary:hover {
        border-color: rgba(0, 212, 255, 0.4);
        background: transparent;
        box-shadow: none;
    }
    
    .class-tab:hover {
        transform: none;
        border-color: transparent;
    }
    
    .class-tab.active:hover {
        border-color: var(--primary);
    }
    
    /* 增大点击区域 */
    .nav-links a,
    .download-btn,
    .btn,
    .class-tab,
    .feature-card,
    .review-card {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* 滚动时禁用一些动画以节省电量 */
    .magic-particles {
        display: none;
    }
    
    .cursor-glow {
        display: none;
    }
}

/* ==================== 
   安全区域适配 (刘海屏/药丸屏)
   ==================== */
@supports (padding-top: env(safe-area-inset-top)) {
    .navbar {
        padding-top: env(safe-area-inset-top);
    }
    
    .hero {
        padding-top: calc(100px + env(safe-area-inset-top));
    }
    
    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* ==================== 
   字体大小根元素适配
   ==================== */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    html {
        font-size: 13px;
    }
}

/* ==================== 
   预约弹窗样式
   ==================== */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.booking-modal.active {
    display: flex;
}

.booking-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.booking-modal-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 480px;
    background: linear-gradient(135deg, #0a1628 0%, #1a1a2e 100%);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 212, 255, 0.15);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from { 
        opacity: 0; 
        transform: translateY(-30px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

.booking-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.booking-close:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.1);
}

.booking-header {
    text-align: center;
    margin-bottom: 30px;
}

.booking-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.booking-title {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-magic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.booking-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.form-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 14px;
    padding: 0 16px;
    transition: all 0.3s;
}

.form-input-wrap:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.form-icon {
    font-size: 1.3rem;
    margin-right: 10px;
}

.form-input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1rem;
    padding: 14px 0;
    outline: none;
}

.form-input::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

.form-code-wrap {
    padding-right: 6px;
}

.btn-code {
    background: linear-gradient(135deg, #00d4ff, #7b2cbf);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    min-width: 110px;
}

.btn-code:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.btn-code:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-error {
    font-size: 0.8rem;
    color: #ff6b6b;
    min-height: 18px;
}

.btn-submit {
    background: linear-gradient(135deg, #ff6b35, #ff9500);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spinner 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* 预约成功页面 */
.booking-success {
    text-align: center;
    animation: modalSlideIn 0.4s ease;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.success-title {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.success-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.success-code {
    background: rgba(0, 0, 0, 0.3);
    border: 2px dashed rgba(0, 212, 255, 0.4);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.code-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.code-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 2px;
}

.btn-copy {
    background: linear-gradient(135deg, #00d4ff, #7b2cbf);
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.success-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.btn-done {
    background: linear-gradient(135deg, #00d4ff, #7b2cbf);
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-done:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

/* 预约弹窗移动端适配 */
@media (max-width: 768px) {
    .booking-modal-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .booking-title {
        font-size: 1.5rem;
    }
    
    .btn-code {
        padding: 8px 12px;
        font-size: 0.8rem;
        min-width: 90px;
    }
    
    .form-input {
        font-size: 16px; /* 防止iOS缩放 */
    }
}
