* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            background-color: #0B0A1A;
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Helvetica, 'Noto Sans', sans-serif;
            color: #F0EFF7;
            line-height: 1.5;
            padding-bottom: 30px;
        }

        /* 主容器 */
        .app {
            max-width: 600px;
            margin: 0 auto;
            background: linear-gradient(145deg, #0F0E1F 0%, #080714 100%);
            box-shadow: 0 0 40px rgba(0,0,0,0.5);
            min-height: 100vh;
            position: relative;
        }

        /* 顶部品牌区 */
        .hero {
            padding: 28px 20px 20px 20px;
            background: radial-gradient(circle at 10% 20%, rgba(80, 40, 130, 0.25), transparent);
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
		.logoimg{
			width: 90px;
			height: 41px;
			object-fit: cover;
		}
        .logo {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #F3E6FF, #C084FC);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .slogan {
            font-size: 13px;
            background: rgba(192, 132, 252, 0.18);
            padding: 4px 10px;
            border-radius: 40px;
            color: #D9C6FF;
            font-weight: 500;
        }

        .tagline {
            font-size: 14px;
            color: #A9A2D0;
            margin-top: 12px;
            line-height: 1.4;
            border-left: 3px solid #C084FC;
            padding-left: 12px;
        }

        .stats {
            display: flex;
            gap: 18px;
            margin-top: 20px;
            flex-wrap: wrap;
            justify-content: space-between;
            background: rgba(15, 14, 30, 0.7);
            backdrop-filter: blur(4px);
            border-radius: 32px;
            padding: 12px 18px;
            border: 0.5px solid rgba(255,255,255,0.1);
        }

        .stat-item {
            text-align: center;
            flex: 1;
        }

        .stat-number {
            font-size: 20px;
            font-weight: 700;
            color: #E2C6FF;
        }

        .stat-label {
            font-size: 11px;
            opacity: 0.7;
        }

        /* 通用卡片样式 */
        .section {
            margin: 28px 16px;
        }

        .section-title {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            margin-bottom: 16px;
            font-weight: 600;
        }

        .title-left {
            font-size: 20px;
            letter-spacing: -0.3px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .title-left span:first-child {
            background: #2A1E42;
            padding: 4px 12px;
            border-radius: 40px;
            font-size: 14px;
            color: #C282FF;
        }

        .more-link {
            font-size: 13px;
            color: #B68BFF;
            background: rgba(182, 139, 255, 0.1);
            padding: 5px 10px;
            border-radius: 40px;
        }

        /* 剧本卡片横滑 */
        .script-scroll {
            overflow-x: auto;
            display: flex;
            gap: 16px;
            scrollbar-width: thin;
            padding-bottom: 8px;
            -webkit-overflow-scrolling: touch;
        }

        .script-scroll::-webkit-scrollbar {
            height: 4px;
        }

        .script-card {
            flex: 0 0 150px;
            background: #14122C;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 8px 18px rgba(0,0,0,0.3);
            transition: transform 0.2s;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .script-img {
            background: linear-gradient(145deg, #352A52, #1E183A);
            height: 130px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
        }

        .script-info {
            padding: 12px 10px;
        }

        .script-name {
            font-weight: 700;
            font-size: 16px;
        }

        .script-type {
            font-size: 11px;
            color: #B7AEE1;
            margin-top: 4px;
            display: flex;
            gap: 6px;
        }

        /* 组局卡片 - 横向滚动 */
        .group-scroll {
            overflow-x: auto;
            display: flex;
            gap: 16px;
            padding-bottom: 8px;
        }

        .group-card {
            flex: 0 0 260px;
            background: rgba(22, 20, 45, 0.8);
            backdrop-filter: blur(8px);
            border-radius: 28px;
            padding: 16px;
            border: 0.5px solid rgba(192, 132, 252, 0.3);
        }

        .group-title {
            font-size: 18px;
            font-weight: 700;
        }

        .group-meta {
            font-size: 12px;
            color: #B8ABE6;
            margin: 8px 0;
            display: flex;
            gap: 12px;
        }

        .join-btn {
            background: #7C3AED;
            border: none;
            padding: 8px 0;
            width: 100%;
            border-radius: 40px;
            color: white;
            font-weight: 600;
            font-size: 14px;
            margin-top: 12px;
            transition: 0.2s;
            cursor: pointer;
        }

        .join-btn:active {
            background: #9B6DFF;
            transform: scale(0.97);
        }

        /* 用户评价 */
        .review-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .review-item {
            background: rgba(25, 22, 48, 0.65);
            border-radius: 24px;
            padding: 16px;
            border-left: 4px solid #C084FC;
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .avatar {
            width: 40px;
            height: 40px;
            background: #2F264F;
            border-radius: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #c59aff;
        }

        .review-name {
            font-weight: 600;
        }

        .review-stars {
            color: #FFCD4D;
            font-size: 12px;
            letter-spacing: 2px;
        }

        .review-text {
            margin-top: 10px;
            font-size: 14px;
            color: #E1D9FF;
            line-height: 1.4;
        }

        /* 地图导航模块 */
        .map-card {
            background: #14122C;
            border-radius: 32px;
            overflow: hidden;
            margin-top: 8px;
            border: 0.5px solid rgba(255,255,255,0.1);
        }

        .map-preview {
            background: #1A1738;
            height: 160px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            background-image: radial-gradient(circle at 20% 40%, rgba(128, 90, 213, 0.2) 2%, transparent 2.5%);
            background-size: 28px 28px;
            position: relative;
        }

        .fake-map {
            text-align: center;
        }

        .city-badge {
            font-size: 15px;
            background: #00000055;
            backdrop-filter: blur(4px);
            padding: 6px 16px;
            border-radius: 40px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .nav-btn {
            background: #7C3AED;
            margin: 16px;
            text-align: center;
            padding: 12px;
            border-radius: 60px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            transition: 0.2s;
        }

        .nav-btn:active {
            background: #946BFF;
        }

        .address {
            padding: 0 16px 20px 16px;
            font-size: 13px;
            color: #B7ADD9;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.05);
            margin-top: 6px;
        }

        /* 底部 */
        .footer-note {
            text-align: center;
            font-size: 11px;
            color: #5A5285;
            margin-top: 20px;
            margin-bottom: 10px;
        }
		.footer-note a{
			color: #5A5285;
			text-decoration: none;
		}

        button {
            background: none;
            border: none;
            font-family: inherit;
        }

        .toast-msg {
            position: fixed;
            top: 40%;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            backdrop-filter: blur(8px);
            padding: 8px 20px;
            border-radius: 40px;
            font-size: 13px;
            color: #1A173Ed9;
            z-index: 1000;
            pointer-events: none;
            transition: opacity 0.2s;
            opacity: 0;
        }