/* ===== 麒遇莲溪 - Design System ===== */
/* Inspired by: Chinese ink wash painting, Lingnan culture, lotus & jade aesthetics */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;600;700;900&family=Ma+Shan+Zheng&family=ZCOOL+XiaoWei&display=swap');

:root {
  /* ── Jade-Teal Primary ── */
  --jade-900: #1a4a3e;
  --jade-800: #236454;
  --jade-700: #3d8b78;
  --jade-600: #4fa393;
  --jade-500: #6BB5A7;
  --jade-400: #8cc4bd;
  --jade-300: #b5dad4;
  --jade-200: #d5f0e8;
  --jade-100: #e8f8f5;
  --jade-50:  #f4fbf9;

  /* ── Warm Paper Neutrals ── */
  --ink-900: #1a1a2e;
  --ink-800: #2c3e50;
  --ink-700: #4a4a5a;
  --ink-600: #6b7280;
  --ink-500: #8b95a5;
  --ink-400: #b0b8c4;
  --ink-300: #d1d5db;
  --ink-200: #e5e7eb;
  --ink-100: #f3f4f6;
  --paper-50:  #faf8f5;
  --paper-100: #f5f2ed;
  --paper-200: #ede5dc;
  --paper-300: #d4c9bd;

  /* ── Accents ── */
  --gold-500: #c8953e;
  --gold-400: #dbb168;
  --gold-300: #e8cb8a;
  --gold-200: #f2e3b8;
  --gold-100: #faf3db;
  --lotus-500: #e07080;
  --lotus-400: #ea95a0;
  --lotus-300: #f4bdc4;
  --lotus-200: #fce0e2;
  --ink-wash: rgba(26, 74, 62, 0.04);

  /* ── Semantic ── */
  --bg-page: #f7f4f0;
  --bg-card: #ffffff;
  --text-primary: #2c3e50;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --border-subtle: rgba(107, 181, 167, 0.15);
  --border-medium: rgba(107, 181, 167, 0.25);

  /* ── Shadows ── */
  --shadow-xs:  0 1px 3px rgba(26, 74, 62, 0.04);
  --shadow-sm:  0 2px 8px rgba(26, 74, 62, 0.06);
  --shadow-md:  0 4px 16px rgba(26, 74, 62, 0.08);
  --shadow-lg:  0 8px 32px rgba(26, 74, 62, 0.12);
  --shadow-xl:  0 12px 48px rgba(26, 74, 62, 0.16);
  --shadow-glow-jade: 0 0 20px rgba(107, 181, 167, 0.25);
  --shadow-glow-gold: 0 0 20px rgba(200, 147, 62, 0.2);

  /* ── Typography ── */
  --font-display: 'Noto Serif SC', 'Source Han Serif SC', 'STSong', serif;
  --font-handwrite: 'Ma Shan Zheng', 'ZCOOL XiaoWei', cursive;
  --font-body: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  /* ── Radius ── */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
}

/* ── Background Noise Texture ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--bg-page);
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text-primary);
}

.app-container {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    background: linear-gradient(180deg, #F8FCFA 0%, #FFFFFF 12%);
    position: relative;
    padding-bottom: 80px;
    box-shadow: 0 0 60px rgba(26, 74, 62, 0.08);
    border-left: 1px solid var(--border-subtle);
    border-right: 1px solid var(--border-subtle);
}

/* Page styles */
.page {
    display: none;
    padding: 0 16px 16px;
    animation: pageFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page.active {
    display: block;
}

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

/* Header styles - Refined cultural aesthetic */
.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    margin-bottom: 16px;
    position: relative;
    background: linear-gradient(135deg, rgba(107, 181, 167, 0.06) 0%, rgba(140, 196, 189, 0.10) 50%, rgba(107, 181, 167, 0.04) 100%);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-subtle);
}

.top-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -16px;
    right: -16px;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg width='480' height='80' viewBox='0 0 480 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40C60 20 120 60 180 40C240 20 300 60 360 40C420 20 480 40 480 40V0H0V40Z' fill='%236BB5A7' fill-opacity='0.06'/%3E%3C/svg%3E") no-repeat center top;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
}

.top-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--jade-300), var(--jade-500), var(--jade-300), transparent);
    border-radius: 1px;
    opacity: 0.4;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.search-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6BB5A7 0%, #8CC4BD 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(107, 181, 167, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.search-icon-wrapper:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(107, 181, 167, 0.4);
}

.search-icon-wrapper svg {
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
    stroke: white;
    transition: all 0.3s ease;
}

.app-title {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #4A9B8E 0%, #6BB5A7 50%, #8CC4BD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(107, 181, 167, 0.15);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.more-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    background: rgba(107, 181, 167, 0.08);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.more-btn:hover {
    background: rgba(107, 181, 167, 0.15);
    transform: scale(1.05);
}

.more-btn .dot {
    width: 4px;
    height: 4px;
    background: #6BB5A7;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.more-btn:hover .dot {
    transform: scale(1.3);
}

.circle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6BB5A7 0%, #8CC4BD 100%);
    box-shadow: 0 4px 12px rgba(107, 181, 167, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.circle-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    opacity: 0.9;
}

.circle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(107, 181, 167, 0.4);
}

/* Weather section - Ink wash inspired */
.weather-section {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #E8F8F5 0%, #D5F0E8 50%, #C8EBE0 100%);
    padding: 18px 22px;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.weather-section::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -10%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(107, 181, 167, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

/* Lotus petal decorative corner */
.weather-section::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(ellipse at 30% 70%, rgba(224, 112, 128, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Subtle rain animation overlay */
.weather-rain-overlay {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 6px,
        rgba(174, 214, 241, 0.08) 6px,
        rgba(174, 214, 241, 0.08) 7px
    );
    pointer-events: none;
    animation: rainFall 0.8s linear infinite;
}

@keyframes rainFall {
    0% { transform: translateY(-7px); }
    100% { transform: translateY(0); }
}

.weather-icon-wrapper {
    position: relative;
    z-index: 1;
}

.weather-icon-wrapper svg {
    filter: drop-shadow(0 3px 8px rgba(51, 51, 51, 0.2));
    animation: weatherIconFloat 3s ease-in-out infinite;
}

@keyframes weatherIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.weather-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.weather-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.weather-location {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink-800);
    position: relative;
    padding-left: 14px;
}

.weather-location::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--jade-500);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(107, 181, 167, 0.4);
}

.weather-temp {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--jade-700), var(--jade-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.weather-date {
    font-size: 13px;
    color: var(--ink-500);
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Section header - Artistic ink wash style */
.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 8px 0;
    position: relative;
}

/* Decorative side lines */
.section-header::before,
.section-header::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(107, 181, 167, 0.25));
}

.section-header::before { left: 0; }
.section-header::after {
    right: 0;
    background: linear-gradient(90deg, rgba(107, 181, 167, 0.25), transparent);
}

.butterfly-icon {
    filter: drop-shadow(0 2px 6px rgba(107, 181, 167, 0.3));
    animation: butterflyFloat 3s ease-in-out infinite;
    transition: filter 0.3s ease;
}

.butterfly-icon:hover {
    filter: drop-shadow(0 3px 10px rgba(107, 181, 167, 0.5));
}

@keyframes butterflyFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #2C3E50 0%, #4A6B7E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    position: relative;
    padding: 0 4px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--jade-400), var(--gold-500), var(--jade-400));
    border-radius: 1px;
    opacity: 0.4;
}

/* Stamp progress - Enhanced */
.stamp-progress {
    background: linear-gradient(135deg, #F8FCFA 0%, #F0F9F5 100%);
    padding: 24px 20px;
    border-radius: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(107, 181, 167, 0.1);
    border: 1px solid rgba(107, 181, 167, 0.15);
    position: relative;
    overflow: hidden;
}

.stamp-progress::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(107, 181, 167, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.stamp-icons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.stamp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}

.stamp-item svg:first-child {
    filter: drop-shadow(0 3px 8px rgba(107, 181, 167, 0.25));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stamp-item.collected svg:first-child {
    filter: drop-shadow(0 4px 12px rgba(107, 181, 167, 0.4));
    animation: stampGlow 2s ease-in-out infinite;
}

@keyframes stampGlow {
    0%, 100% { filter: drop-shadow(0 4px 12px rgba(107, 181, 167, 0.4)); }
    50% { filter: drop-shadow(0 4px 16px rgba(107, 181, 167, 0.6)); }
}

.stamp-waves svg {
    opacity: 0.35;
    filter: grayscale(0.5);
}

.stamp-count-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #E74C3C 0%, #FF6B6B 100%);
    color: white;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
    border: 2px solid #F8FCFA;
    z-index: 2;
    animation: badgePop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes badgePop {
    0% { transform: scale(0); }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.progress-label {
    font-size: 14px;
    font-weight: 600;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.progress-label span {
    background: linear-gradient(135deg, #6BB5A7 0%, #4A9B8E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.stamp-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(107, 181, 167, 0.12);
    border-radius: 4px;
    margin-bottom: 16px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.stamp-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6BB5A7 0%, #8CC4BD 50%, #6BB5A7 100%);
    background-size: 200% 100%;
    border-radius: 4px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: progressShimmer 2s linear infinite;
    position: relative;
}

.stamp-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    animation: shimmerSlide 2s ease-in-out infinite;
}

@keyframes progressShimmer {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

@keyframes shimmerSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.progress-btn {
    padding: 10px 28px;
    border: none;
    border-radius: 24px;
    background: rgba(107, 181, 167, 0.1);
    color: #6BB5A7;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.progress-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.progress-btn:hover::before {
    left: 100%;
}

.progress-btn:hover {
    background: rgba(107, 181, 167, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(107, 181, 167, 0.2);
}

.progress-btn.active {
    background: linear-gradient(135deg, #6BB5A7 0%, #5AA395 50%, #4A9182 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(107, 181, 167, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.progress-btn.active:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(107, 181, 167, 0.45);
}

.progress-btn:active {
    transform: scale(0.95);
}

/* Category tabs */
.category-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.category-tab {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    background: rgba(107, 181, 167, 0.08);
    color: #6BB5A7;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.category-tab:hover {
    background: rgba(107, 181, 167, 0.15);
    transform: translateY(-2px);
}

.category-tab.active {
    background: linear-gradient(135deg, #6BB5A7 0%, #8CC4BD 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(107, 181, 167, 0.3);
}

/* Attractions grid */
.attractions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
}

.attraction-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.attraction-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(107, 181, 167, 0.2);
}

.attraction-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.attraction-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.attraction-card:hover .attraction-img {
    transform: scale(1.08);
}

.attraction-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
}

.attraction-info {
    padding: 12px;
}

.attraction-name {
    font-size: 15px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.attraction-address {
    font-size: 12px;
    color: #95A5A6;
    display: flex;
    align-items: center;
    gap: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.attraction-address svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: #6BB5A7;
}

/* Mascot chat - Enhanced with glow and depth */
.mascot-chat {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 24px;
    padding: 18px;
    background: linear-gradient(135deg, #F8FCFA 0%, #F0F9F5 100%);
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(107, 181, 167, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(107, 181, 167, 0.08);
}

.mascot-chat::before {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(224, 112, 128, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mascot-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(107, 181, 167, 0.15);
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.mascot-chat:hover .mascot-img {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(107, 181, 167, 0.25);
}

.chat-bubble {
    flex: 1;
    background: white;
    padding: 16px 20px;
    border-radius: 18px;
    border-top-left-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: box-shadow 0.3s ease;
}

.mascot-chat:hover .chat-bubble {
    box-shadow: 0 4px 16px rgba(107, 181, 167, 0.1);
}

.chat-bubble::before {
    content: '';
    position: absolute;
    top: 12px;
    left: -8px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.chat-bubble::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 20px;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--jade-400), var(--gold-500));
    border-radius: 2px;
    opacity: 0.3;
}

.chat-bubble p {
    font-size: 14px;
    color: #2C3E50;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Map container */
.map-container {
    margin-bottom: 24px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6BB5A7, #8CC4BD, #6BB5A7);
    z-index: 1;
}

.map-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.map-container:hover .map-img {
    transform: scale(1.02);
}

/* AI intro card - Rich storytelling card */
.ai-intro-card {
    background: linear-gradient(145deg, #E8F8F5 0%, #D5F0E8 40%, #C8EBE0 100%);
    padding: 24px;
    border-radius: 24px;
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(107, 181, 167, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(107, 181, 167, 0.12);
}

.ai-intro-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
}

/* Decorative lotus petal corner */
.ai-intro-card::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 50px;
    height: 50px;
    background: radial-gradient(ellipse at 30% 30%, rgba(224, 112, 128, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ai-intro-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.ai-greeting {
    font-size: 18px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.ai-greeting::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--jade-500), transparent);
    border-radius: 1px;
}

.ai-question {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.ai-personality {
    background: rgba(255, 255, 255, 0.9);
    padding: 14px 18px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 3px solid var(--jade-400);
    transition: all 0.3s ease;
}

.ai-personality:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 16px rgba(107, 181, 167, 0.12);
    transform: translateX(4px);
}

.personality-tag {
    display: inline-block;
    background: linear-gradient(135deg, #6BB5A7 0%, #8CC4BD 100%);
    color: white;
    padding: 4px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.personality-text {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.ai-mascot-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(255, 255, 255, 0.6);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ai-intro-card:hover .ai-mascot-img {
    transform: scale(1.05) rotate(3deg);
}

/* Games section - Playful cards */
.games-section {
    margin-bottom: 24px;
    position: relative;
}

.play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    position: relative;
}

.play-text {
    font-size: 30px;
    font-weight: 800;
    background: linear-gradient(135deg, #6BB5A7 0%, #4A9B8E 50%, #8CC4BD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    text-shadow: 0 2px 10px rgba(107, 181, 167, 0.15);
}

.start-game-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #6BB5A7 0%, #4A9B8E 100%);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(107, 181, 167, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.start-game-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.start-game-btn:hover::before {
    opacity: 1;
}

.start-game-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 24px rgba(107, 181, 167, 0.45);
}

.start-game-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.game-card {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 4px;
    border-radius: 16px;
    position: relative;
}

.game-card:hover {
    transform: translateY(-6px);
    background: rgba(107, 181, 167, 0.04);
}

.game-card:active {
    transform: translateY(-2px) scale(0.96);
}

.game-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: all 0.3s ease;
}

.game-card:hover .game-icon {
    box-shadow: 0 8px 20px rgba(107, 181, 167, 0.25);
    transform: scale(1.08);
}

.game-name {
    font-size: 11px;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.game-card:hover .game-name {
    color: var(--jade-600);
}

/* Quick questions - Elevated chat style */
.quick-questions {
    margin-bottom: 24px;
}

.quick-title {
    font-size: 17px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 14px;
    position: relative;
    padding-left: 14px;
}

.quick-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background: linear-gradient(180deg, var(--jade-400), var(--jade-600));
    border-radius: 2px;
}

.questions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.question-btn {
    padding: 14px 18px 14px 22px;
    background: white;
    border: none;
    border-radius: 14px;
    text-align: left;
    font-size: 14px;
    color: #2C3E50;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.question-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--jade-400), var(--jade-600));
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.question-btn::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--jade-400);
    border-bottom: 2px solid var(--jade-400);
    transform: translateY(-50%) rotate(-45deg);
    opacity: 0;
    transition: all 0.3s ease;
}

.question-btn:hover::before {
    opacity: 1;
}

.question-btn:hover::after {
    opacity: 0.5;
    right: 14px;
}

.question-btn:hover {
    background: linear-gradient(135deg, #F8FCFA 0%, #E8F8F5 100%);
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(107, 181, 167, 0.15);
    padding-left: 26px;
}

.question-btn:active {
    transform: translateX(3px) scale(0.99);
}

/* Input section - Premium chat input */
.input-section {
    margin-bottom: 20px;
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 18px;
    border-radius: 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.input-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--jade-300), transparent, var(--jade-300));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.input-wrapper:focus-within {
    box-shadow: 0 8px 28px rgba(107, 181, 167, 0.2);
    border-color: rgba(107, 181, 167, 0.2);
    transform: translateY(-1px);
}

.input-wrapper:focus-within::before {
    opacity: 1;
}

.color-palette-btn {
    background: none;
    border: none;
    color: #6BB5A7;
    cursor: pointer;
    padding: 6px;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.color-palette-btn:hover {
    transform: scale(1.2) rotate(30deg);
    color: var(--jade-700);
    background: rgba(107, 181, 167, 0.08);
}

.chat-input {
    flex: 1;
    border: none;
    background: none;
    font-size: 14px;
    outline: none;
    color: #2C3E50;
    font-family: inherit;
}

.chat-input::placeholder {
    color: #95A5A6;
    transition: color 0.3s ease;
}

.chat-input:focus::placeholder {
    color: var(--jade-400);
}

.voice-btn {
    background: none;
    border: none;
    color: #6BB5A7;
    cursor: pointer;
    padding: 6px;
    transition: all 0.3s ease;
    border-radius: 50%;
    position: relative;
}

.voice-btn:hover {
    transform: scale(1.15);
    color: var(--jade-700);
    background: rgba(107, 181, 167, 0.08);
    animation: voicePulse 1s ease-in-out infinite;
}

@keyframes voicePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(107, 181, 167, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(107, 181, 167, 0); }
}

/* Shop styles */
.shop-search {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
}

.shop-search-input {
    flex: 1;
    padding: 14px 18px 14px 46px;
    border: 2px solid rgba(107, 181, 167, 0.15);
    background: linear-gradient(135deg, #FAFDFC 0%, #FFFFFF 100%);
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(107, 181, 167, 0.06);
}

.shop-search-input::placeholder {
    color: #A0B5AE;
    font-style: italic;
    transition: all 0.3s ease;
}

.shop-search-input:focus::placeholder {
    color: #6BB5A7;
    opacity: 0.8;
}

.shop-search-input:focus {
    border-color: #6BB5A7;
    box-shadow: 0 0 0 4px rgba(107, 181, 167, 0.1), 0 4px 16px rgba(107, 181, 167, 0.15);
    background: white;
}

.shop-search::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236BB5A7' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cpath d='m21 21-4.35-4.35'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
    pointer-events: none;
    z-index: 1;
    transition: all 0.3s ease;
}

.shop-search-input:focus ~ .shop-search::before {
    transform: translateY(-50%) scale(1.1);
}

.shop-search-btn {
    padding: 14px 18px;
    border: none;
    background: linear-gradient(135deg, #6BB5A7 0%, #5AA395 50%, #4A9182 100%);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(107, 181, 167, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.shop-search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.shop-search-btn:hover::before {
    left: 100%;
}

.shop-search-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 181, 167, 0.4), inset 0 1px 0 rgba(255,255,255,0.3);
}

/* Shop posters */
.shop-posters {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
}

.shop-posters::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(107, 181, 167, 0.1) 0%, rgba(140, 196, 189, 0.05) 50%, rgba(107, 181, 167, 0.1) 100%);
    border-radius: 28px;
    z-index: -1;
    filter: blur(8px);
}

.shop-poster {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(107, 181, 167, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.shop-poster::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(107, 181, 167, 0.15) 100%);
    border-radius: 24px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shop-poster:hover::after {
    opacity: 1;
}

.shop-poster:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 40px rgba(107, 181, 167, 0.25), 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 28px;
}

.shop-poster:first-child {
    height: 280px;
}

.shop-poster:first-child::before {
    content: '点击探索更多';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    background: rgba(107, 181, 167, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(4px);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.shop-poster:first-child:hover::before {
    opacity: 1;
}

.shop-poster:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* Shop sections */
.shop-section {
    margin-bottom: 24px;
}

.shop-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 16px;
    padding-left: 4px;
    position: relative;
}

.shop-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background: linear-gradient(180deg, #6BB5A7 0%, #8CC4BD 100%);
    border-radius: 2px;
}

/* Products grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.product-card {
    background: linear-gradient(145deg, #FFFFFF 0%, #FAFCFB 100%);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(107, 181, 167, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(107, 181, 167, 0.08);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(107, 181, 167, 0.18), 0 4px 8px rgba(0, 0, 0, 0.04);
    border-color: rgba(107, 181, 167, 0.2);
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107, 181, 167, 0.02) 0%, transparent 50%, rgba(107, 181, 167, 0.02) 100%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #F0F7F4 0%, #E8F2ED 100%);
}

.product-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8f8f8;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
    color: white;
    padding: 5px 14px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(46, 204, 113, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-badge-hot {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #E74C3C 0%, #FF6B6B 50%, #FF8E8E 100%);
    color: white;
    padding: 5px 14px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    animation: hotBadgeGlow 2s ease-in-out infinite;
}

@keyframes hotBadgeGlow {
    0%, 100% { box-shadow: 0 3px 10px rgba(231, 76, 60, 0.4); }
    50% { box-shadow: 0 3px 16px rgba(231, 76, 60, 0.6), 0 0 8px rgba(255, 107, 107, 0.3); }
}

.product-info {
    padding: 14px;
    position: relative;
    z-index: 1;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.product-card:hover .product-name {
    color: #6BB5A7;
}

.product-desc {
    font-size: 12px;
    color: #7F8C8D;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-size: 18px;
    font-weight: 800;
    color: #E74C3C;
    margin-bottom: 12px;
    text-shadow: 0 1px 2px rgba(231, 76, 60, 0.1);
    position: relative;
    display: inline-block;
}

.product-price::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #E74C3C 0%, #FF6B6B 100%);
    border-radius: 1px;
    opacity: 0.3;
}

.product-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.btn-cart {
    width: 38px;
    height: 38px;
    border: none;
    background: linear-gradient(135deg, #6BB5A7 0%, #5AA395 50%, #4A9182 100%);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(107, 181, 167, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-cart::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-cart:hover::before {
    opacity: 1;
}

.btn-cart:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 16px rgba(107, 181, 167, 0.4);
}

.btn-cart:active {
    transform: scale(0.95);
}

.btn-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #E74C3C 0%, #FF6B6B 100%);
    color: white;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(231, 76, 60, 0.4);
    z-index: 3;
    animation: cartBadgeBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes cartBadgeBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.btn-buy {
    flex: 1;
    padding: 10px;
    border: none;
    background: linear-gradient(135deg, #E74C3C 0%, #FF6B6B 50%, #FF8E8E 100%);
    color: white;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-buy:hover::before {
    left: 100%;
}

.btn-buy:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-buy:active {
    transform: translateY(-1px) scale(0.98);
}

/* Cart Toast Animation */
.cart-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #6BB5A7 0%, #5AA395 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(107, 181, 167, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    font-size: 14px;
}

.cart-toast.toast-show {
    animation: cartToastPopIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.cart-toast.toast-hide {
    animation: cartToastPopOut 0.3s ease forwards;
}

@keyframes cartToastPopIn {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.3) rotate(-10deg); }
    60% { transform: translate(-50%, -50%) scale(1.08) rotate(2deg); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0deg); }
}

@keyframes cartToastPopOut {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -60%) scale(0.9); }
}

/* Fly to cart animation */
.fly-to-cart {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6BB5A7 0%, #8CC4BD 100%);
    z-index: 999;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(107, 181, 167, 0.4);
}

/* My page */
.my-content {
    padding-top: 8px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #E8F8F5 0%, #D5F0E8 100%);
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(107, 181, 167, 0.15);
    position: relative;
    overflow: hidden;
}

.user-profile::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(107, 181, 167, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.user-avatar-wrapper {
    position: relative;
    z-index: 1;
}

.user-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
}

.user-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.user-name {
    font-size: 18px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 4px;
}

.user-status {
    font-size: 13px;
    color: #6BB5A7;
    font-weight: 500;
}

/* Stats row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.stat-item {
    background: white;
    padding: 16px 12px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(107, 181, 167, 0.15);
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #E8F8F5 0%, #D5F0E8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6BB5A7;
}

.stat-label {
    font-size: 12px;
    color: #95A5A6;
    font-weight: 500;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #2C3E50;
}

/* Menu list */
.menu-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: linear-gradient(135deg, #E8F8F5 0%, #D5F0E8 100%);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(107, 181, 167, 0.12);
}

.menu-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #6BB5A7 0%, #8CC4BD 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.menu-text {
    flex: 1;
    font-size: 15px;
    color: #2C3E50;
    font-weight: 500;
}

.menu-arrow {
    color: #BDC3C7;
    transition: transform 0.2s ease;
}

.menu-item:hover .menu-arrow {
    transform: translateX(4px);
    color: #6BB5A7;
}

/* Avatar ring animation */
.avatar-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #6BB5A7,
        #8CC4BD,
        #4A9B8E,
        #6BB5A7
    );
    animation: avatarRingRotate 4s linear infinite;
    z-index: -1;
}

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

/* Avatar badge */
.avatar-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6BB5A7 0%, #4A9B8E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(107, 181, 167, 0.3);
    z-index: 2;
}

/* User level badge */
.user-level-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #E8F8F5 0%, #D5F0E8 100%);
    border: 1px solid rgba(107, 181, 167, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #4A9B8E;
    margin-bottom: 6px;
}

/* Profile arrow */
.profile-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.user-profile:hover .profile-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* Section title */
.my-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 4px 8px;
    font-size: 15px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 12px;
    position: relative;
}

.my-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 3px;
    background: linear-gradient(90deg, #6BB5A7, transparent);
    border-radius: 2px;
}

.section-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Menu count badge */
.menu-count {
    margin-left: auto;
    padding: 2px 8px;
    background: linear-gradient(135deg, #E8F8F5 0%, #D5F0E8 100%);
    border: 1px solid rgba(107, 181, 167, 0.2);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: #6BB5A7;
    margin-right: 8px;
}

/* Order summary card */
.order-summary-card {
    background: white;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.order-summary-card:hover {
    box-shadow: 0 8px 24px rgba(107, 181, 167, 0.12);
}

.order-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(107, 181, 167, 0.1);
    margin-bottom: 16px;
}

.order-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #2C3E50;
}

.order-view-all {
    font-size: 13px;
    color: #95A5A6;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.order-view-all:hover {
    color: #6BB5A7;
}

.order-status-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.order-status-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 8px;
    border-radius: 12px;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-status-item:hover {
    background: linear-gradient(135deg, #E8F8F5 0%, #D5F0E8 100%);
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(107, 181, 167, 0.15);
}

.order-status-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.order-status-text {
    font-size: 12px;
    color: #7F8C8D;
    font-weight: 500;
}

.order-badge {
    font-size: 11px;
    font-weight: 700;
    color: #6BB5A7;
    background: rgba(107, 181, 167, 0.1);
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
}

/* Points card */
.points-card {
    position: relative;
    background: linear-gradient(135deg, #6BB5A7 0%, #4A9B8E 50%, #3D8B7E 100%);
    border-radius: 20px;
    padding: 24px 20px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(107, 181, 167, 0.3);
    transition: all 0.3s ease;
}

.points-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(107, 181, 167, 0.4);
}

.points-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.points-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.points-circle-1 {
    width: 120px;
    height: 120px;
    top: -30px;
    right: -20px;
}

.points-circle-2 {
    width: 80px;
    height: 80px;
    bottom: -10px;
    left: -10px;
}

.points-main {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.points-info {
    flex: 1;
}

.points-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.points-number {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.points-value {
    font-size: 36px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.points-unit {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.points-actions {
    display: flex;
    gap: 12px;
}

.points-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border: none;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.points-btn-primary {
    background: white;
    color: #6BB5A7;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.points-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.points-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.points-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

/* Settings group */
.settings-group {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.settings-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.settings-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50px;
    right: 18px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(107, 181, 167, 0.1), transparent);
}

.settings-item:hover {
    background: linear-gradient(135deg, #E8F8F5 0%, #D5F0E8 100%);
}

.settings-item:hover .settings-arrow {
    transform: translateX(4px);
    color: #6BB5A7;
}

.settings-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.settings-item-text {
    flex: 1;
    font-size: 15px;
    color: #2C3E50;
    font-weight: 500;
}

.settings-arrow {
    color: #BDC3C7;
    transition: all 0.2s ease;
}

/* Logout button with SVG icon support */
.logout-btn {
    width: 100%;
    padding: 14px;
    border: 2px solid rgba(255, 107, 107, 0.3);
    background: white;
    color: #FF6B6B;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.logout-btn:hover {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
    transform: translateY(-2px);
}

.logout-btn:active {
    transform: translateY(0) scale(0.98);
}

.login-prompt-btn {
    width: 100%;
    padding: 14px;
    border: none;
    background: linear-gradient(135deg, #6BB5A7 0%, #4A9B8E 100%);
    color: white;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 181, 167, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.login-prompt-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 181, 167, 0.4);
}

.login-prompt-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Confirmation modal specific */
.confirm-modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.confirm-modal-btn {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.confirm-modal-btn-cancel {
    background: #F5F5F5;
    color: #7F8C8D;
}

.confirm-modal-btn-cancel:hover {
    background: #E8E8E8;
}

.confirm-modal-btn-confirm {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.confirm-modal-btn-confirm:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.4);
}

/* Bottom navigation - Frosted glass with art deco accent */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    justify-content: space-around;
    padding: 12px 16px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(107, 181, 167, 0.06);
    z-index: 100;
    box-sizing: border-box;
    border: none;
}

/* Decorative top border line */
.bottom-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--jade-400), var(--gold-500), var(--jade-400), transparent);
    border-radius: 1px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.nav-item:hover {
    background: rgba(107, 181, 167, 0.08);
}

.nav-icon {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.nav-icon.active-icon {
    display: none;
}

.nav-icon.inactive-icon {
    display: block;
}

.nav-item.active .nav-icon.active-icon {
    display: block;
    filter: drop-shadow(0 2px 4px rgba(107, 181, 167, 0.3));
}

.nav-item.active .nav-icon.inactive-icon {
    display: none;
}

.nav-label {
    font-size: 11px;
    color: #95A5A6;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-item.active .nav-label {
    color: #6BB5A7;
    font-weight: 700;
}

/* Responsive design */
@media (max-width: 375px) {
    .app-title {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .attractions-grid,
    .products-grid {
        gap: 10px;
    }
}

@media (min-width: 768px) {
    .app-container {
        max-width: 768px;
    }
    
    .attractions-grid,
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .games-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #6BB5A7 0%, #8CC4BD 100%);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4A9B8E;
}

/* ===== 活动滑块推送 - Optimized ===== */
.activity-slider-wrapper {
    padding: 16px;
    background: linear-gradient(135deg, #F8FCFA 0%, #FFFFFF 100%);
    margin: 12px 0;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(107, 181, 167, 0.12);
    border: 1px solid rgba(107, 181, 167, 0.08);
    position: relative;
    overflow: hidden;
}

.activity-slider-wrapper::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(107, 181, 167, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.slider-title {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    padding-left: 4px;
    position: relative;
}

.slider-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background: linear-gradient(180deg, #6BB5A7 0%, #8CC4BD 100%);
    border-radius: 2px;
}

.activity-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 12px;
    position: relative;
}

.activity-slider::-webkit-scrollbar {
    display: none;
}

/* Scroll indicator */
.activity-slider-wrapper::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    width: 60px;
    height: 4px;
    background: rgba(107, 181, 167, 0.15);
    border-radius: 2px;
}

.activity-item {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(107, 181, 167, 0.2);
}

.activity-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #6BB5A7 0%, #8CC4BD 100%);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 16px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(107, 181, 167, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.activity-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.activity-item:hover .activity-img {
    transform: scale(1.05);
}

.activity-img-wrapper {
    position: relative;
    overflow: hidden;
}

.activity-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.activity-content {
    padding: 14px 16px 16px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FCFA 100%);
}

.activity-name {
    font-size: 16px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.activity-desc {
    font-size: 13px;
    color: #7F8C8D;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.activity-time {
    font-size: 12px;
    color: #6BB5A7;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.activity-time::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #6BB5A7 0%, #8CC4BD 100%);
    border-radius: 50%;
    display: inline-block;
}

/* ===== 精选活动区域 ===== */
.featured-activities-section {
    padding: 16px;
    margin-top: 8px;
}

.featured-activities-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.featured-activity-card {
    display: flex;
    gap: 12px;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.featured-activity-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 181, 167, 0.15);
}

.featured-activity-img-wrapper {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    overflow: hidden;
}

.featured-activity-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-activity-card:hover .featured-activity-img {
    transform: scale(1.05);
}

.featured-activity-info {
    flex: 1;
    padding: 12px 12px 12px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-activity-name {
    font-size: 15px;
    font-weight: 600;
    color: #2C3E50;
    margin: 0 0 4px;
}

.featured-activity-desc {
    font-size: 12px;
    color: #7F8C8D;
    margin: 0 0 8px;
}

.featured-activity-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #6BB5A7;
}

/* ===== 导览页推荐路线 ===== */
.guide-routes-section {
    padding: 16px;
    margin-top: 8px;
}

.guide-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #2C3E50;
    margin: 0 0 12px;
    padding-left: 4px;
}

.route-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.route-item {
    display: flex;
    gap: 12px;
    background: white;
    padding: 14px;
    border-radius: 14px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.route-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 181, 167, 0.15);
}

.route-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(107, 181, 167, 0.1) 0%, rgba(140, 196, 189, 0.1) 100%);
    border-radius: 10px;
    flex-shrink: 0;
}

.route-info {
    flex: 1;
}

.route-name {
    font-size: 14px;
    font-weight: 600;
    color: #2C3E50;
    margin: 0 0 4px;
}

.route-desc {
    font-size: 12px;
    color: #7F8C8D;
    margin: 0 0 6px;
}

.route-duration {
    font-size: 11px;
    color: #6BB5A7;
    font-weight: 500;
    background: rgba(107, 181, 167, 0.08);
    padding: 3px 8px;
    border-radius: 8px;
    display: inline-block;
}

/* ===== 导览页附近景点 ===== */
.nearby-attractions-section {
    padding: 16px;
    margin-top: 8px;
}

.nearby-attractions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nearby-attraction-item {
    display: flex;
    gap: 12px;
    background: white;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.nearby-attraction-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(107, 181, 167, 0.12);
}

.nearby-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.nearby-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nearby-name {
    font-size: 14px;
    font-weight: 600;
    color: #2C3E50;
    margin: 0 0 6px;
}

.nearby-distance {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #6BB5A7;
    margin: 0;
}

/* ===== Header 登录元素 ===== */
.header-login {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(107, 181, 167, 0.12) 0%, rgba(140, 196, 189, 0.08) 100%);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid rgba(107, 181, 167, 0.25);
    backdrop-filter: blur(4px);
    overflow: hidden;
}

.header-login::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #6BB5A7 0%, #4A9B8E 100%);
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: inherit;
    z-index: 0;
}

.header-login:hover::before {
    opacity: 1;
}

.header-login:hover {
    border-color: transparent;
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 6px 20px rgba(107, 181, 167, 0.35);
}

.header-login:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 2px 8px rgba(107, 181, 167, 0.2);
}

.header-login svg {
    position: relative;
    z-index: 1;
    transition: stroke 0.35s ease, transform 0.35s ease;
}

.header-login:hover svg {
    stroke: white;
    transform: scale(1.1);
}

.header-login .login-text {
    position: relative;
    z-index: 1;
    font-size: 13px;
    font-weight: 600;
    color: #6BB5A7;
    transition: color 0.35s ease;
    letter-spacing: 0.3px;
}

.header-login:hover .login-text {
    color: white;
}

/* 已登录状态 - 头像显示 */
.header-login.logged-in {
    padding: 3px;
    background: transparent;
    border: 2px solid rgba(107, 181, 167, 0.3);
    backdrop-filter: none;
    border-radius: 50%;
    overflow: visible;
    width: 38px;
    height: 38px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-login.logged-in:hover {
    border-color: #6BB5A7;
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(107, 181, 167, 0.3);
}

.header-login.logged-in:active {
    transform: scale(0.95);
}

.header-login.logged-in::before {
    display: none;
}

.header-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    transition: transform 0.35s ease;
}

/* 在线状态绿点 */
.header-login.logged-in::after {
    content: '';
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    background: #4ADE80;
    border: 2px solid white;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 1px 4px rgba(74, 222, 128, 0.4);
    animation: onlinePulse 3s ease-in-out infinite;
}

@keyframes onlinePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.15); }
}

/* ===== 导览页地图区域优化 ===== */
.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(107, 181, 167, 0.15);
    background: #F0F9F5;
}

.map-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.map-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(107, 181, 167, 0.05) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(107, 181, 167, 0.08) 100%
    );
    pointer-events: none;
}

.map-overlay-top {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
}

.map-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    font-size: 13px;
    font-weight: 600;
    color: #2C3E50;
}

.map-zoom-controls {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.zoom-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    color: #6BB5A7;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.zoom-btn:hover {
    background: #6BB5A7;
    color: white;
    transform: scale(1.08);
}

.zoom-btn:active {
    transform: scale(0.95);
}

/* ===== 地图热点 ===== */
.map-hotspots {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.map-hotspot {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
}

.map-hotspot[data-spot="1"] { top: 35%; left: 45%; }
.map-hotspot[data-spot="2"] { top: 55%; left: 30%; }
.map-hotspot[data-spot="3"] { top: 60%; left: 65%; }
.map-hotspot[data-spot="4"] { top: 70%; left: 50%; }

.hotspot-pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(107, 181, 167, 0.3);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }
    80%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.hotspot-marker {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6BB5A7 0%, #4A9B8E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(107, 181, 167, 0.4);
    transition: transform 0.2s ease;
    z-index: 2;
}

.hotspot-marker svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.map-hotspot:hover .hotspot-marker {
    transform: scale(1.2);
}

.hotspot-label {
    position: absolute;
    bottom: -22px;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 600;
    color: white;
    background: rgba(44, 62, 80, 0.85);
    backdrop-filter: blur(4px);
    padding: 3px 8px;
    border-radius: 10px;
    transform: translateY(0);
    transition: all 0.2s ease;
    opacity: 0;
}

.map-hotspot:hover .hotspot-label {
    opacity: 1;
    transform: translateY(-4px);
}

/* ===== 导览页推荐路线卡片 ===== */
.route-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 14px;
}

.route-card {
    display: flex;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.route-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(107, 181, 167, 0.18);
}

.route-card-cover {
    width: 100px;
    height: 110px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.route-card-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
}

.route-card-cover svg {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.route-card-info {
    flex: 1;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.route-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}

.route-card-name {
    font-size: 15px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0;
    line-height: 1.3;
}

.difficulty-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.difficulty-badge.easy {
    background: rgba(107, 181, 167, 0.12);
    color: #6BB5A7;
}

.difficulty-badge.moderate {
    background: rgba(245, 166, 35, 0.12);
    color: #F5A623;
}

.difficulty-badge.hard {
    background: rgba(231, 76, 60, 0.12);
    color: #E74C3C;
}

.route-card-path {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #7F8C8D;
    margin: 0 0 8px;
    line-height: 1.4;
}

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

.route-card-time {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #6BB5A7;
    font-weight: 600;
    background: rgba(107, 181, 167, 0.08);
    padding: 4px 10px;
    border-radius: 10px;
}

.route-detail-btn {
    padding: 6px 14px;
    border: 1.5px solid #6BB5A7;
    background: transparent;
    color: #6BB5A7;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.route-detail-btn:hover {
    background: #6BB5A7;
    color: white;
    transform: scale(1.05);
}

.route-detail-btn:active {
    transform: scale(0.95);
}

/* ===== 附近景点网格 ===== */
.nearby-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.nearby-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.nearby-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(107, 181, 167, 0.18);
}

.nearby-card-img-wrapper {
    position: relative;
    height: 110px;
    overflow: hidden;
}

.nearby-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.nearby-card:hover .nearby-card-img {
    transform: scale(1.08);
}

.nearby-card-rating {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    gap: 3px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    color: #2C3E50;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nearby-card-info {
    padding: 10px 12px;
}

.nearby-card-name {
    font-size: 13px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nearby-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nearby-card-distance {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    color: #6BB5A7;
    font-weight: 600;
}

.nearby-card-nav {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(107, 181, 167, 0.3);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6BB5A7;
}

/* ===== 浮动萌宠 ===== */
.floating-mascot {
    position: fixed;
    bottom: 90px;
    left: 12px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.floating-mascot:hover {
    transform: scale(1.05);
}

.mascot-speech-bubble {
    background: white;
    padding: 8px 14px;
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    box-shadow: 0 4px 16px rgba(107, 181, 167, 0.2);
    margin-bottom: 6px;
    margin-left: 10px;
    max-width: 140px;
    pointer-events: auto;
    cursor: pointer;
    animation: bubbleFadeIn 0.5s ease;
    position: relative;
}

.mascot-speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 12px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid white;
}

.mascot-speech-bubble p {
    font-size: 12px;
    color: #2C3E50;
    line-height: 1.5;
    margin: 0;
}

.mascot-3d-container {
    width: 160px;
    height: 160px;
    position: relative;
    pointer-events: auto;
    cursor: pointer;
    filter: drop-shadow(0 4px 12px rgba(107, 181, 167, 0.3));
}

.mascot-3d-container canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.mascot-fallback-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mascot-fallback-img img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    animation: mascotFloatFallback 2s ease-in-out infinite;
}

@keyframes mascotFloatFallback {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

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

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

.mascot-speech-bubble.hiding {
    animation: bubbleFadeOut 0.3s ease forwards;
}

/* ===== 萌宠AI聊天面板 ===== */
.mascot-chat-panel {
    position: fixed;
    bottom: 90px;
    left: 12px;
    width: 300px;
    max-height: 420px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(107, 181, 167, 0.25), 0 2px 8px rgba(0, 0, 0, 0.08);
    display: none;
    flex-direction: column;
    z-index: 100;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    pointer-events: auto;
}

.mascot-chat-panel.active {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.mascot-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: linear-gradient(135deg, #6BB5A7, #8ECAE6);
    color: white;
}

.mascot-chat-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mascot-chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.mascot-chat-header-info h3 {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}

.mascot-chat-header-info p {
    font-size: 10px;
    margin: 0;
    opacity: 0.85;
}

.mascot-chat-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.2s;
}

.mascot-chat-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.mascot-chat-body {
    flex: 1;
    padding: 12px 14px;
    overflow-y: auto;
    max-height: 240px;
}

.mascot-chat-welcome {
    text-align: center;
    padding: 16px 8px;
}

.mascot-chat-welcome p {
    font-size: 13px;
    color: #666;
    margin: 4px 0;
    line-height: 1.6;
}

.mascot-chat-welcome .welcome-emoji {
    font-size: 28px;
    margin-bottom: 8px;
}

.mascot-quick-questions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
    justify-content: center;
}

.mascot-quick-btn {
    background: linear-gradient(135deg, #f0faf7, #e8f4f0);
    border: 1px solid rgba(107, 181, 167, 0.3);
    color: #4a9a8a;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.mascot-quick-btn:hover {
    background: linear-gradient(135deg, #6BB5A7, #8ECAE6);
    color: white;
    border-color: transparent;
    transform: translateY(-1px);
}

.mascot-chat-footer {
    padding: 10px 12px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 8px;
    align-items: center;
}

.mascot-chat-input {
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
    background: #fafafa;
}

.mascot-chat-input:focus {
    border-color: #6BB5A7;
    background: white;
}

.mascot-chat-input::placeholder {
    color: #bbb;
}

.mascot-chat-send {
    background: linear-gradient(135deg, #6BB5A7, #5aa89a);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.mascot-chat-send:hover {
    background: linear-gradient(135deg, #5aa89a, #4a9a8a);
    transform: scale(1.05);
}

.mascot-chat-send:active {
    transform: scale(0.95);
}

/* 聊天消息样式 */
.chat-msg {
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
    animation: msgSlideIn 0.3s ease;
}

.chat-msg.mascot-msg {
    flex-direction: row;
}

.chat-msg.user-msg {
    flex-direction: row-reverse;
}

.chat-msg-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.chat-msg-bubble {
    max-width: 200px;
    padding: 8px 12px;
    border-radius: 14px;
    font-size: 12px;
    line-height: 1.5;
    word-break: break-word;
}

.mascot-msg .chat-msg-bubble {
    background: #f0faf7;
    color: #2C3E50;
    border-bottom-left-radius: 4px;
}

.user-msg .chat-msg-bubble {
    background: linear-gradient(135deg, #6BB5A7, #5aa89a);
    color: white;
    border-bottom-right-radius: 4px;
}

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

.nearby-card-nav:hover {
    background: #6BB5A7;
    border-color: #6BB5A7;
    color: white;
    transform: scale(1.1);
}

.nearby-card-nav:active {
    transform: scale(0.9);
}

/* ===== 商城页海报增强 ===== */
.shop-poster-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(107, 181, 167, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-poster-wrapper:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 18px 48px rgba(107, 181, 167, 0.22), 0 6px 16px rgba(0, 0, 0, 0.08);
}

.shop-poster-wrapper .shop-poster {
    position: relative;
    border-radius: 0;
    transform: none;
}

.shop-poster-wrapper .shop-poster:hover {
    transform: none;
    border-radius: 0;
}

.shop-poster-wrapper .shop-poster::after,
.shop-poster-wrapper .shop-poster::before {
    display: none;
}

.shop-poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        transparent 55%, 
        rgba(107, 181, 167, 0.25) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.shop-poster-wrapper:hover .shop-poster-overlay {
    opacity: 1;
}

.shop-poster-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, rgba(107, 181, 167, 0.92) 0%, rgba(74, 155, 142, 0.92) 100%);
    border-radius: 24px;
    backdrop-filter: blur(8px);
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(107, 181, 167, 0.35);
    transform: translateY(12px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-poster-wrapper:hover .shop-poster-cta {
    transform: translateY(0);
}

.shop-poster-cta svg {
    flex-shrink: 0;
}

/* 海报第一张高度 */
.shop-poster-wrapper:first-child .shop-poster {
    height: 280px;
}

.shop-poster-wrapper:not(:first-child) .shop-poster {
    height: 240px;
}

/* ===== 热销角标增强 ===== */
.product-badge-hot {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #E74C3C 0%, #FF6B6B 50%, #FF8E8E 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    animation: hotBadgeGlow 2s ease-in-out infinite;
}

.product-badge-hot svg {
    width: 12px;
    height: 12px;
}

/* ===== 商城搜索栏微调 ===== */
.shop-search-input:focus {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFDFC 100%);
}

.shop-search-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== 产品价格样式增强 ===== */
.product-price {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.product-price::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #E74C3C 0%, transparent 100%);
    border-radius: 1px;
    opacity: 0.4;
}

/* ===== 全局登录状态增强 (Task 6) ===== */

/* 未登录按钮 - 渐变背景与微交互 */
.header-login {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(107, 181, 167, 0.12) 0%, rgba(140, 196, 189, 0.08) 100%);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid rgba(107, 181, 167, 0.25);
    backdrop-filter: blur(4px);
    overflow: hidden;
}

.header-login::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #6BB5A7 0%, #4A9B8E 100%);
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: inherit;
}

.header-login:hover::before {
    opacity: 1;
}

.header-login:hover {
    border-color: transparent;
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 6px 20px rgba(107, 181, 167, 0.35);
}

.header-login:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 2px 8px rgba(107, 181, 167, 0.2);
}

.header-login svg {
    position: relative;
    z-index: 1;
    transition: stroke 0.35s ease, transform 0.35s ease;
}

.header-login:hover svg {
    stroke: white;
    transform: scale(1.1);
}

.header-login .login-text {
    position: relative;
    z-index: 1;
    font-size: 13px;
    font-weight: 600;
    color: #6BB5A7;
    transition: color 0.35s ease;
    letter-spacing: 0.3px;
}

.header-login:hover .login-text {
    color: white;
}

/* 已登录状态 - 头像展示 */
.header-login.logged-in {
    padding: 3px;
    background: transparent;
    border: 2px solid rgba(107, 181, 167, 0.3);
    backdrop-filter: none;
    border-radius: 50%;
    overflow: visible;
    width: 38px;
    height: 38px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-login.logged-in:hover {
    border-color: #6BB5A7;
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(107, 181, 167, 0.3);
}

.header-login.logged-in:active {
    transform: scale(0.95);
}

.header-login.logged-in::before {
    display: none;
}

.header-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    transition: transform 0.35s ease;
}

/* 在线状态绿点 */
.header-login.logged-in::after {
    content: '';
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    background: #4ADE80;
    border: 2px solid white;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 1px 4px rgba(74, 222, 128, 0.4);
    animation: onlinePulse 3s ease-in-out infinite;
}

@keyframes onlinePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.15); }
}

/* 未登录按钮涟漪动画 */
.header-login:not(.logged-in)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    z-index: 3;
}

.header-login:not(.logged-in).clicked::after {
    animation: rippleEffect 0.6s ease-out;
}

@keyframes rippleEffect {
    0% { width: 0; height: 0; opacity: 0.5; }
    100% { width: 120px; height: 120px; opacity: 0; }
}

/* ===== 首页搜索栏 ===== */
.search-bar-container {
    padding: 0 16px 12px;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FCFA 100%);
    border: 1.5px solid rgba(107, 181, 167, 0.2);
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: 0 4px 16px rgba(107, 181, 167, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-bar:focus-within {
    border-color: #6BB5A7;
    box-shadow: 0 6px 24px rgba(107, 181, 167, 0.18);
    transform: translateY(-1px);
}

.search-bar-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.search-bar:focus-within .search-bar-icon {
    transform: scale(1.1);
}

.search-bar-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #2C3E50;
    font-family: inherit;
}

.search-bar-input::placeholder {
    color: #95A5A6;
}

/* ===== 活动滑块箭头导航 ===== */
.slider-nav-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-nav-btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid rgba(107, 181, 167, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.slider-nav-btn:hover {
    background: #6BB5A7;
    border-color: #6BB5A7;
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(107, 181, 167, 0.3);
}

.slider-nav-btn:hover svg {
    stroke: white;
}

.slider-nav-btn:active {
    transform: scale(0.95);
}

.slider-nav-btn svg {
    transition: stroke 0.3s ease;
}

.slider-nav-container .activity-slider {
    flex: 1;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
    gap: 14px;
    padding: 4px 0;
    padding-right: 8px;
}

.slider-nav-container .activity-slider .activity-item:last-child {
    margin-right: 0;
}

.slider-nav-container .activity-slider::-webkit-scrollbar {
    display: none;
}

/* ===== Page-specific decorative backgrounds ===== */

/* AI page - subtle cloud pattern */
#ai-page {
    position: relative;
}

#ai-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 80% 20%, rgba(107, 181, 167, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(224, 112, 128, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Shop page - subtle warmth */
#shop-page {
    position: relative;
}

#shop-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 10%, rgba(245, 166, 35, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 90%, rgba(107, 181, 167, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Guide page - map-like subtle grid */
#guide-page {
    position: relative;
}

#guide-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 30%, rgba(107, 181, 167, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* My page - warm personal touch */
#my-page {
    position: relative;
}

#my-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(224, 112, 128, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(107, 181, 167, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* ===== Enhanced cursor interactions ===== */
.category-tab,
.attraction-card,
.featured-activity-card,
.route-item,
.nearby-card,
.game-card,
.question-btn,
.menu-item,
.settings-item,
.order-status-item {
    cursor: pointer;
}

/* ===== Entry fade-in animation ===== */
.page.active > * {
    animation: pageFadeIn 0.5s ease-out both;
}

.page.active > *:nth-child(1) { animation-delay: 0s; }
.page.active > *:nth-child(2) { animation-delay: 0.05s; }
.page.active > *:nth-child(3) { animation-delay: 0.1s; }
.page.active > *:nth-child(4) { animation-delay: 0.15s; }
.page.active > *:nth-child(5) { animation-delay: 0.2s; }
.page.active > *:nth-child(6) { animation-delay: 0.25s; }
.page.active > *:nth-child(7) { animation-delay: 0.3s; }
.page.active > *:nth-child(8) { animation-delay: 0.35s; }
.page.active > *:nth-child(9) { animation-delay: 0.4s; }

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

/* ===== Reduced motion preference ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== Journey Cards - 我的旅程卡片 ===== */
.journey-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
    padding: 0 4px;
}

.journey-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 140px;
}

.journey-card:hover {
    transform: translateY(-4px);
}

.journey-card:active {
    transform: translateY(-2px) scale(0.98);
}

.journey-card-primary {
    background: linear-gradient(135deg, #6BB5A7 0%, #4A9B8E 50%, #3D8B7E 100%);
    box-shadow: 0 8px 24px rgba(107, 181, 167, 0.25), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.journey-card-primary:hover {
    box-shadow: 0 12px 32px rgba(107, 181, 167, 0.35), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.journey-card-secondary {
    background: linear-gradient(135deg, #E07080 0%, #D45D6E 50%, #C84A5C 100%);
    box-shadow: 0 8px 24px rgba(224, 112, 128, 0.25), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.journey-card-secondary:hover {
    box-shadow: 0 12px 32px rgba(224, 112, 128, 0.35), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.journey-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

.journey-card-primary .journey-card-bg {
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L35 20 L50 20 L38 30 L42 45 L30 36 L18 45 L22 30 L10 20 L25 20 Z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
}

.journey-card-secondary .journey-card-bg {
    background-image: 
        radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='8' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
}

.journey-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 18px;
    height: 100%;
    box-sizing: border-box;
}

.journey-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.journey-card:hover .journey-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.journey-info {
    flex: 1;
}

.journey-title {
    font-size: 17px;
    font-weight: 600;
    color: white;
    margin: 0 0 4px 0;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.journey-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.journey-count {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-top: auto;
    padding-top: 12px;
}

.count-num {
    font-size: 28px;
    font-weight: 700;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.count-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* My Section Title - 我的页面分区标题 */
.my-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 4px 12px;
    font-size: 16px;
    font-weight: 600;
    color: #2C3E50;
    letter-spacing: 0.5px;
}

.section-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Journey Cards Animation */
.journey-card {
    animation: journeyCardFadeIn 0.6s ease-out both;
}

.journey-card:nth-child(1) {
    animation-delay: 0.1s;
}

.journey-card:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes journeyCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

