﻿.mobile-fab-nav { display: none !important; }
/* ============================================


/* ============================================
   轮播图
   ============================================ */
.banner-carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #0a1628;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
}

.slide-bg-1 {
    background: linear-gradient(135deg, #1a1a4e 0%, #2d2d7f 40%, #4a90d9 100%);
}

.slide-bg-2 {
    background: linear-gradient(135deg, #0d3b66 0%, #1a6fa0 40%, #48bfe3 100%);
}

.slide-bg-3 {
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 40%, #52b788 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 28px 36px;
    max-width: 80%;
}

.slide-content h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    font-weight: 700;
    color: #fff;
    text-shadow:
        0 2px 8px rgba(0,0,0,0.85),
        0 0 30px rgba(0,0,0,0.6);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: #fff;
    text-shadow:
        0 1px 5px rgba(0,0,0,0.85),
        0 0 20px rgba(0,0,0,0.6);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.3);
}

.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dots .dot.active {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .slide-content {
        padding: 20px 24px;
        max-width: 85%;
    }
    .slide-content h2 {
        font-size: 1.6rem;
    }
    .slide-content p {
        font-size: 0.95rem;
    }
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    .carousel-prev { left: 10px; }
    .carousel-next { right: 10px; }
    .carousel-dots .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 16px 18px;
        max-width: 90%;
        border-radius: 12px;
    }
    .slide-content h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    .slide-content p {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }
    .slide-content .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}
/* ============================================
   光遇陪玩团 - 全局样式
   主题色：天空蓝 (#4FC3F7) + 暖金色 (#FFD54F)
   风格：温暖、梦幻、治愈
   ============================================ */

/* --- CSS变量 --- */
:root {
    --primary: #4FC3F7;
    --primary-dark: #039BE5;
    --primary-light: #B3E5FC;
    --secondary: #FFD54F;
    --secondary-dark: #FFB300;
    --accent: #FF8A65;
    --bg-light: #F5F9FF;
    --bg-white: #FFFFFF;
    --text-dark: #1A237E;
    --text-primary: #2C3E50;
    --text-secondary: #78909C;
    --text-light: #B0BEC5;
    --border: #E3F2FD;
    --shadow: 0 4px 20px rgba(79, 195, 247, 0.15);
    --shadow-lg: 0 8px 40px rgba(79, 195, 247, 0.2);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    color: var(--text-primary);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

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

/* --- 导航栏 --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(255, 213, 79, 0.5);
}

.nav-menu {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login {
    padding: 8px 24px;
    border: 2px solid var(--primary);
    border-radius: 25px;
    background: transparent;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-login:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.4);
}


.user-avatar {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
    user-select: none;
}

.user-avatar:hover {
    background: var(--primary-light);
}

.user-avatar i {
    font-size: 1.6rem;
    color: var(--primary);
}

.user-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-dropdown {
    display: none;
    position: absolute;
    top: 110%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    min-width: 180px;
    padding: 8px 0;
    z-index: 1000;
}

.user-dropdown.show {
    display: block;
    animation: dropDownFade 0.2s ease;
}

@keyframes dropDownFade {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: var(--text-dark);
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.dropdown-item i {
    width: 18px;
    text-align: center;
}

#notifToggle {
    position: relative;
}

.notif-badge {
    position: absolute;
    top: 8px;
    right: 14px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: #ff4757;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.notif-badge.show {
    display: flex;
}

.dropdown-divider {
    height: 1px;
    background: #eee;
    margin: 6px 0;
}

.logout-btn {
    color: #f44336 !important;
}

.logout-btn:hover {
    background: #ffeaea !important;
    color: #d32f2f !important;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* --- 英雄区域 --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0D47A1 0%, #1565C0 20%, #1976D2 40%, #42A5F5 60%, #90CAF9 80%, #BBDEFB 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 213, 79, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(79, 195, 247, 0.2) 0%, transparent 40%);
}

/* 星星粒子 */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 10% 20%, rgba(255,255,255,0.8) 50%, transparent 50%),
        radial-gradient(2px 2px at 30% 60%, rgba(255,255,255,0.6) 50%, transparent 50%),
        radial-gradient(2px 2px at 50% 30%, rgba(255,255,255,0.7) 50%, transparent 50%),
        radial-gradient(2px 2px at 70% 70%, rgba(255,255,255,0.5) 50%, transparent 50%),
        radial-gradient(2px 2px at 90% 40%, rgba(255,255,255,0.8) 50%, transparent 50%),
        radial-gradient(1px 1px at 15% 80%, rgba(255,255,255,0.6) 50%, transparent 50%),
        radial-gradient(1px 1px at 45% 15%, rgba(255,255,255,0.5) 50%, transparent 50%),
        radial-gradient(1px 1px at 75% 45%, rgba(255,255,255,0.7) 50%, transparent 50%),
        radial-gradient(1px 1px at 85% 85%, rgba(255,255,255,0.4) 50%, transparent 50%),
        radial-gradient(1px 1px at 5% 50%, rgba(255,255,255,0.6) 50%, transparent 50%);
    animation: twinkle 3s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}


/* ===== Floating Particle Canvas ===== */
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 100px 20px 60px;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-desc {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* --- 按钮 --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--text-dark);
    border: none;
    box-shadow: 0 4px 20px rgba(255, 213, 79, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 213, 79, 0.6);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-3px);
}

.btn-download {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-download:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* --- 统计 --- */
.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    display: block;
    margin-top: 8px;
    font-size: 1.2rem;
}

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

/* --- 通用区块 --- */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

/* --- 功能特色 --- */
.features {
    background: var(--bg-white);
}

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

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--radius);
    background: var(--bg-light);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

/* --- 人气陪玩 --- */
.popular-wizards {
    background: var(--bg-light);
}

.wizards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.wizard-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: var(--transition);
    border: 1px solid var(--border);
    cursor: pointer;
}

.wizard-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.wizard-avatar {
    position: relative;
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #4CAF50;
    border: 3px solid white;
}

.online-dot.offline {
    background: var(--text-light);
}

.wizard-info h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.wizard-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.tag {
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tag-vip {
    background: linear-gradient(135deg, #FFD54F, #FFB300);
    color: white;
}

.tag-hot {
    background: linear-gradient(135deg, #FF8A65, #FF5722);
    color: white;
}

.tag-new {
    background: linear-gradient(135deg, #81C784, #4CAF50);
    color: white;
}

.tag-master {
    background: linear-gradient(135deg, #BA68C8, #9C27B0);
    color: white;
}

.wizard-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 8px;
}

.wizard-rating i {
    color: var(--secondary);
    font-size: 0.85rem;
}

.rating-num {
    margin-left: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.wizard-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wizard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.btn-order {
    padding: 6px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-order:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.4);
}

.more-btn-wrap {
    text-align: center;
}

/* --- 下载区域 --- */
.download-section {
    background: linear-gradient(135deg, #1A237E 0%, #283593 50%, #3949AB 100%);
    color: white;
}

.download-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.download-text h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.download-text p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 30px;
}

.download-features {
    margin-bottom: 30px;
}

.download-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
}

.download-features i {
    color: var(--secondary);
}

.download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-download-app {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
}

.btn-download-app:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4);
}

/* 手机模型 */
.phone-mockup {
    flex-shrink: 0;
    width: 280px;
}

.phone-screen {
    width: 260px;
    height: 520px;
    background: #1a1a2e;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.screen-header {
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 24px;
    margin-bottom: 16px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.screen-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 4px;
}

.screen-card {
    height: 80px;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.3), rgba(255, 213, 79, 0.3));
    border-radius: 12px;
}

/* --- 用户评价 --- */
.reviews {
    background: var(--bg-white);
}

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

.review-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.review-header h4 {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.review-stars i {
    color: var(--secondary);
    font-size: 0.85rem;
}

.review-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* --- 页脚 --- */
.footer {
    background: linear-gradient(180deg, #0D1B2A 0%, #0a1520 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: white;
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.footer-section p {
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-section ul li a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.footer-section ul li i {
    color: var(--primary);
    font-size: 0.8rem;
    width: 14px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.85rem;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}
/* --- 弹窗 --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
.modal-overlay[style*='display: block'],
.modal-overlay[style*='display:block'] {
    opacity: 1 !important;
    visibility: visible !important;
}
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal::-webkit-scrollbar {
    display: none;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-dark);
    transform: rotate(90deg);
}

.modal h2 {
    text-align: center;
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.order-modal {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.order-modal .modal-header {
    flex-shrink: 0;
    position: relative;
    padding: 24px 40px 16px;
    background: var(--bg-white);
    z-index: 10;
}

.order-modal .modal-header h2 {
    margin-bottom: 0;
}

.order-modal #orderForm {
    overflow-y: auto;
    padding: 24px 40px 40px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.order-modal #orderForm::-webkit-scrollbar {
    display: none;
}

.modal-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--border);
}

.modal-tabs .tab {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.modal-tabs .tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* --- 表单 --- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(79, 195, 247, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-divider {
    text-align: center;
    margin: 20px 0;
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
}

.form-divider::before,
.form-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border);
}

.form-divider::before { left: 0; }
.form-divider::after { right: 0; }

/* --- 社交登录按钮 --- */
.btn-social {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--border);
    background: white;
    margin-bottom: 12px;
}

.btn-qq {
    color: #12B7F5;
    border-color: #12B7F5;
}

.btn-qq:hover {
    background: #12B7F5;
    color: white;
}

.btn-wechat {
    color: #07C160;
    border-color: #07C160;
}

.btn-wechat:hover {
    background: #07C160;
    color: white;
}

/* --- 订单弹窗 --- */
.order-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.order-wizard {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.order-wizard-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.order-wizard h4 {
    color: var(--text-dark);
    margin-bottom: 4px;
}

.order-wizard span {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.order-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: linear-gradient(135deg, #FFF8E1, #FFF3E0);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.order-total strong {
    font-size: 1.5rem;
    color: var(--accent);
}

/* --- 响应式设计 --- */
@media (max-width: 1024px) {
    .download-content {
        flex-direction: column;
        text-align: center;
    }

    .download-features li {
        justify-content: center;
    }

    .download-buttons {
        justify-content: center;
    }

    .phone-mockup {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-120%);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-menu.open {
        transform: translateY(0);
    }

    .nav-link {
        display: block;
        padding: 12px 16px;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal {
        padding: 24px;
        width: 95%;
    }

    .wizards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .reviews-slider {
        grid-template-columns: 1fr;
    }
}

/* --- 动画 --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- 浮动粒子效果 --- */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }



/* ============================================
   全面移动端适配
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* 通用 */
    * {
        box-sizing: border-box;
    }
    body {
        overflow-x: hidden;
    }
    .container {
        padding: 0 12px;
    }
    h1 { font-size: 1.6rem !important; }
    h2 { font-size: 1.4rem !important; }
    h3 { font-size: 1.2rem !important; }
    h4 { font-size: 1rem !important; }

    /* 导航栏 */
    .navbar {
        padding: 8px 0;
    }
    .nav-container {
        flex-wrap: wrap;
        padding: 0 10px;
    }
    .nav-logo {
        font-size: 1.1rem;
    }
    .nav-menu {
        display: none;
    }
    .nav-menu.active {
        display: flex;
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 10px 0;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 999;
    }
    .nav-menu.active .nav-link {
        padding: 12px 20px;
        display: block;
        border-radius: 0;
        font-size: 1rem;
    }
    .nav-actions {
        position: absolute;
        right: 10px;
        top: 8px;
    }
    .btn-login {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    .hamburger {
        display: flex;
    }

    /* 头像下拉 */
    .avatar-dropdown {
        right: 10px;
        min-width: 180px;
    }
    .avatar-dropdown .dropdown-item {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    /* Hero */
    .hero-section {
        padding: 40px 0;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    /* 推广网格 */
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .promo-card {
        padding: 20px;
    }
    .promo-card h3 {
        font-size: 1.1rem;
    }

    /* 功能网格 */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .feature-card {
        padding: 16px;
    }
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .feature-card h4 {
        font-size: 0.9rem;
    }
    .feature-card p {
        font-size: 0.8rem;
    }

    /* 统计 */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .stat-card {
        padding: 16px;
    }
    .stat-number {
        font-size: 1.8rem;
    }

        /* 页脚 */
    .footer {
        padding: 30px 0 50px !important;
    }
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        text-align: center !important;
    }
    .footer-section h3 {
        font-size: 0.95rem !important;
        margin-bottom: 12px !important;
    }
    .footer-section h3::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    .footer-section p {
        font-size: 0.8rem !important;
    }
    .footer-section ul {
        padding: 0 !important;
    }
    .footer-section ul li {
        font-size: 0.8rem !important;
        margin-bottom: 8px !important;
    }
    .footer-section ul li a {
        font-size: 0.8rem !important;
    }
    .footer-bottom {
        font-size: 0.75rem !important;
        padding-top: 16px !important;
    }
/* 页面头部 */
    .page-header {
        padding: 30px 0;
    }
    .page-header h1 {
        font-size: 1.5rem;
    }

    /* 表单 */
    .form-grid {
        grid-template-columns: 1fr !important;
    }
    .form-side-by-side {
        grid-template-columns: 1fr !important;
    }
    .join-form {
        padding: 16px !important;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* 防止 iOS 缩放 */
    }

    /* 订单大厅 */
    .order-categories {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .category-card {
        padding: 16px 10px !important;
    }
    .category-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
    }
    .category-card h4 {
        font-size: 0.9rem !important;
    }
    .category-card p {
        font-size: 0.75rem !important;
    }

    /* Removed member card overrides to use members.css defaults */

    /* 个人中心 */
    .profile-header {
        padding: 20px 0;
    }
    .profile-avatar-large {
        width: 70px !important;
        height: 70px !important;
    }
    .profile-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }
    .profile-stat-card {
        padding: 12px !important;
    }

    /* 充值 */
    .recharge-grid {
        grid-template-columns: 1fr !important;
    }
    .recharge-card {
        padding: 20px;
    }

    /* 会员 */
    .vip-plans {
        grid-template-columns: 1fr !important;
    }
    .vip-plan {
        padding: 20px;
    }

    /* 订单弹窗 */
    .order-popup {
        width: 95vw;
        max-width: 360px;
        max-height: 80vh;
        overflow-y: auto;
    }
    .order-popup-header {
        padding: 12px 16px;
    }
    .order-popup-body {
        padding: 12px 16px;
    }
    .order-popup-footer {
        padding: 12px 16px;
    }

    /* 下载页 */
    .download-content {
        flex-direction: column;
        text-align: center;
    }
    .download-qr {
        margin: 0 auto 20px;
    }

    /* 申请流程步骤 */
    .steps {
        flex-direction: column;
    }
    .step-line {
        width: 3px;
        height: 30px;
    }

    /* 申请条件 */
    .req-grid {
        grid-template-columns: 1fr !important;
    }

    /* 团队介绍 */
    .intro-grid {
        grid-template-columns: 1fr !important;
    }

    /* Modal */
    .modal-overlay {
        padding: 10px;
    }
    .modal-content {
        width: 95vw;
        max-height: 85vh;
        overflow-y: auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .nav-logo .logo-text {
        font-size: 1rem;
    }
    .btn-login {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-subtitle {
        font-size: 0.85rem;
    }
    .features-grid {
        grid-template-columns: 1fr !important;
    }
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
    .order-categories {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .profile-stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
}




/* ===== MOBILE NAVBAR FIX ===== */
@media (max-width: 768px) {
    .navbar {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 6px 10px !important;
        min-height: 44px !important;
    }

    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }

    .nav-logo {
        display: flex !important;
        align-items: center !important;
        gap: 4px !important;
        flex-shrink: 0 !important;
    }

    .nav-logo .logo-icon {
        font-size: 1.3rem !important;
        color: #FFD54F !important;
        text-shadow: none !important;
        line-height: 1 !important;
        transform: none !important;
    }

    .nav-logo .logo-text {
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        color: #1a2a4a !important;
    }

    .nav-menu {
        display: none !important;
    }

    .nav-actions {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        flex-shrink: 0 !important;
    }

    .nav-actions .btn-login {
        display: inline-flex !important;
        padding: 4px 8px !important;
        font-size: 0.65rem !important;
        white-space: nowrap !important;
        height: auto !important;
        line-height: normal !important;
    }

    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 3px !important;
        width: 24px !important;
        height: 24px !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        padding: 2px !important;
    }

    .hamburger span {
        display: block !important;
        width: 20px !important;
        height: 2px !important;
        background: #333 !important;
        border-radius: 2px !important;
        margin: 0 !important;
    }
}/* ===== MOBILE DOCK BAR CENTERING ===== */
@media (max-width: 768px) {
    .mobile-fab-nav {
        display: flex !important;
        position: fixed !important;
        bottom: 12px !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        pointer-events: none !important;
    }

    .dock-bar {
        display: flex !important;
        align-items: center !important;
        justify-content: space-around !important;
        background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(240,248,255,0.88) 100%) !important;
        backdrop-filter: blur(30px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(30px) saturate(180%) !important;
        border: 1px solid rgba(255, 255, 255, 0.8) !important;
        border-radius: 30px !important;
        padding: 6px 6px !important;
        height: 56px !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.9) !important;
        width: auto !important;
        margin: 0 auto !important;
        max-width: calc(100vw - 24px) !important;
        min-width: 300px !important;
        pointer-events: auto !important;
    }

    .dock-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 2px !important;
        text-decoration: none !important;
        color: #8B95A5 !important;
        font-size: 0.6rem !important;
        padding: 4px 10px !important;
        border-radius: 14px !important;
        transition: all 0.2s ease !important;
        flex: 1 !important;
        min-width: 36px !important;
    }

    .dock-item i {
        font-size: 1.15rem !important;
        transition: transform 0.2s ease !important;
    }

    .dock-item.active {
        color: #4FC3F7 !important;
    }

    .dock-item.active i {
        transform: scale(1.15) !important;
    }

    .dock-item:hover {
        background: rgba(79, 195, 247, 0.12) !important;
    }

    .dock-item:active {
        transform: scale(0.9) !important;
    }
}


    .dock-bar {
        display: flex !important;
        align-items: center !important;
        justify-content: space-around !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        border-radius: 28px !important;
        padding: 6px 6px !important;
        height: 54px !important;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0,0,0,0.03) !important;
        width: auto !important;
        margin: 0 auto !important;
        max-width: calc(100vw - 24px) !important;
        min-width: 300px !important;
        pointer-events: auto !important;
    }

    .dock-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 2px !important;
        text-decoration: none !important;
        color: #8B95A5 !important;
        font-size: 0.6rem !important;
        padding: 4px 10px !important;
        border-radius: 14px !important;
        transition: all 0.2s ease !important;
        flex: 1 !important;
        min-width: 36px !important;
    }

    .dock-item i {
        font-size: 1.15rem !important;
        transition: transform 0.2s ease !important;
    }

    .dock-item.active {
        color: #4FC3F7 !important;
    }

    .dock-item.active i {
        transform: scale(1.15) !important;
    }

    .dock-item:hover {
        background: rgba(79, 195, 247, 0.08) !important;
    }

    .dock-item:active {
        transform: scale(0.9) !important;
    }

/* ============================================
   消息通知面板
   ============================================ */
.notification-panel {
    position: absolute;
    top: 110%;
    right: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    min-width: 320px;
    max-width: 360px;
    padding: 0;
    z-index: 2000;
    overflow: hidden;
    animation: notifSlideIn 0.25s ease;
}

@keyframes notifSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.notif-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 700;
    color: #1f2937;
    font-size: 0.95rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.notif-header i {
    color: #4facfe;
}

.notif-list {
    max-height: 360px;
    overflow-y: auto;
}

.notif-list::-webkit-scrollbar {
    width: 4px;
}

.notif-list::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 2px;
}

.notif-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
    transition: background 0.2s ease;
    cursor: default;
}

.notif-item:last-child {
    border-bottom: none;
}

.notif-item:hover {
    background: #f8fafc;
}

.notif-item.unread .notif-title {
    color: #1f2937;
}

.notif-item.unread .notif-dot {
    background: #ff4757;
}

.notif-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    flex-shrink: 0;
    margin-top: 7px;
}

.notif-content {
    flex: 1;
    min-width: 0;
}

.notif-title {
    font-weight: 600;
    color: #4b5563;
    font-size: 0.88rem;
    line-height: 1.3;
}

.notif-text {
    color: #6b7280;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 4px;
}

.notif-time {
    color: #9ca3af;
    font-size: 0.75rem;
    margin-top: 6px;
}

.notif-delete {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: #9ca3af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 2px;
    padding: 0;
}

.notif-item:hover .notif-delete {
    opacity: 1;
}

.notif-delete:hover {
    background: #fee2e2;
    color: #ef4444;
}

.notif-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #9ca3af;
    font-size: 0.85rem;
    text-align: center;
}

.notif-empty i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #d1d5db;
}

@media (max-width: 480px) {
    .notification-panel {
        position: fixed;
        top: 64px;
        right: 12px;
        left: 12px;
        min-width: auto;
        max-width: none;
    }
}
