        :root {
            --primary: #059669;
            --primary-dark: #047857;
            --primary-light: #10b981;
            --secondary: #1a1a2e;
            --accent: #f59e0b;
            --accent-light: #fbbf24;
            --bg-light: #f8faf9;
            --bg-warm: #fefcf8;
            --bg-cream: #faf8f5;
            --text-dark: #1a1a2e;
            --text-gray: #6b7280;
            --text-light: #9ca3af;
            --white: #ffffff;
            --shadow-sm: 0 2px 8px rgba(5, 150, 105, 0.08);
            --shadow-md: 0 4px 20px rgba(5, 150, 105, 0.12);
            --shadow-lg: 0 8px 40px rgba(5, 150, 105, 0.16);
            --gradient-hero: linear-gradient(135deg, #0f3d2e 0%, #1a5f4a 25%, #0d4732 50%, #1a3a2e 75%, #0a2a1f 100%);
            --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8faf9 100%);
            --gradient-accent: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            --border-radius: 16px;
            --border-radius-lg: 24px;
            --border-radius-sm: 8px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

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

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

        /* ===== Hero Section ===== */
        .hero {
            position: relative;
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: var(--gradient-hero);
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse 80% 50% at 20% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
        }

        .hero-mountain {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 300px;
            opacity: 0.1;
            pointer-events: none;
            z-index: 1;
        }

        .hero-cloud {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
            animation: float 8s ease-in-out infinite;
        }

        .hero-cloud:nth-child(1) { width: 300px; height: 300px; top: 15%; left: 10%; animation-delay: 0s; }
        .hero-cloud:nth-child(2) { width: 200px; height: 200px; top: 25%; right: 15%; animation-delay: -2s; }
        .hero-cloud:nth-child(3) { width: 250px; height: 250px; top: 40%; left: 5%; animation-delay: -4s; }

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

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 50px 48px 100px;
            max-width: 1100px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 8px 20px;
            border-radius: 50px;
            color: var(--accent-light);
            font-size: 14px;
            margin-bottom: 32px;
            animation: fadeInDown 0.8s ease-out;
        }

        .hero-badge i {
            color: var(--accent);
        }

        .hero-title {
            font-family: 'Noto Serif SC', serif;
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 700;
            color: var(--white);
            margin-bottom: 24px;
            line-height: 1.4;
            letter-spacing: 0.05em;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .hero-title .highlight {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.35rem);
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 48px;
            font-weight: 300;
            letter-spacing: 0.08em;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-bottom: 48px;
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--border-radius);
            padding: 28px 20px;
            text-align: center;
            transition: var(--transition);
        }

        .stat-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-4px);
        }

        .stat-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 12px;
            background: var(--gradient-accent);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--white);
            font-family: 'Noto Serif SC', serif;
            line-height: 1.2;
        }

        .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 4px;
        }

        .hero-search {
            display: flex;
            position: relative;
            max-width: 560px;
            margin: 0 auto 36px;
            border-radius: 16px;
            padding: 0;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
            animation: fadeInUp 0.8s ease-out 0.8s both;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .hero-search input {
            flex: 1;
            border: none;
            outline: none;
            padding: 14px 20px;
            font-size: 15px;
            font-family: inherit;
            background: transparent;
            color: var(--text-dark);
        }

        .hero-search input::placeholder {
            color: #9ca3af;
        }

        .hero-search button {
            background: linear-gradient(135deg, #059669 0%, #10b981 100%);
            border: none;
            padding: 14px 28px;
            color: #fff;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .hero-search button:hover {
            background: linear-gradient(135deg, #047857 0%, #059669 100%);
        }

        .hero-search button i {
            font-size: 14px;
        }

        .hero-tags {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 1s both;
        }

        .hero-tag {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.9);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            transition: var(--transition);
        }

        .hero-tag:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .wave-divider {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            line-height: 0;
            transform: rotate(180deg);
            z-index: 1;
        }

        .wave-divider svg {
            width: 100%;
            height: 60px;
        }

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

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

        @keyframes scaleIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

        /* ===== Section Common ===== */
        .section {
            padding: 80px 0;
        }

        .section-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 40px;
        }

        .section-title-wrap {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .section-title {
            font-family: 'Noto Serif SC', serif;
            font-size: 2rem;
            font-weight: 600;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
        }

        .section-title::before {
            content: '';
            width: 4px;
            height: 32px;
            background: var(--gradient-accent);
            border-radius: 4px;
        }

        .section-title .icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 18px;
        }

        .section-title .icon i {
            margin: 0;
        }

        .section-subtitle {
            font-size: 14px;
            color: var(--text-gray);
            margin-left: 16px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .more-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
        }

        .more-link:hover {
            color: var(--primary-dark);
            gap: 10px;
        }

        /* ===== Daily Word Section ===== */
        .daily-section {
            background: var(--bg-cream);
            position: relative;
            overflow: hidden;
        }

        .daily-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23059669' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }

        .daily-card {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            padding: 48px;
            box-shadow: var(--shadow-lg);
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 48px;
            align-items: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(5, 150, 105, 0.08);
        }

        .daily-card::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(5, 150, 105, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .daily-card::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .daily-word-display {
            text-align: center;
            padding: 40px 32px;
            background: var(--gradient-hero);
            border-radius: 20px;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .daily-word-display::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
        }

        .daily-word-display::after {
            content: '"';
            position: absolute;
            bottom: -20px;
            right: 10px;
            font-size: 120px;
            font-family: 'Noto Serif SC', serif;
            color: rgba(255,255,255,0.05);
            line-height: 1;
        }

        .daily-label {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 3px;
            opacity: 0.8;
            margin-bottom: 12px;
            font-weight: 500;
        }

        .daily-word {
            font-family: 'Noto Serif SC', serif;
            font-size: 4.5rem;
            font-weight: 700;
            margin-bottom: 8px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 1;
        }

        .daily-ipa { opacity: 0.7; font-size: 0.9em; margin-left: 6px; }
        .daily-pinyin {
            font-size: 1.5rem;
            opacity: 0.8;
            font-weight: 300;
            margin-bottom: 24px;
        }

        .daily-play-btn {
            margin-top: 16px;
            background: rgba(255, 255, 255, 0.25);
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: #fff;
            padding: 12px 28px;
            border-radius: 50px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            font-weight: 500;
            transition: var(--transition);
            -webkit-tap-highlight-color: transparent;
            position: relative;
            z-index: 1;
        }

        .daily-play-btn:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: scale(1.05);
        }

        .daily-play-btn i {
            font-size: 16px;
        }

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

        .daily-info h4 {
            font-family: 'Noto Serif SC', serif;
            font-size: 1.125rem;
            color: var(--primary);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .daily-info h4::before {
            content: '';
            width: 20px;
            height: 2px;
            background: var(--primary);
        }

        .daily-definition {
            font-size: 1.125rem;
            color: var(--text-dark);
            line-height: 1.9;
            margin-bottom: 24px;
        }

        .daily-example {
            background: rgba(5, 150, 105, 0.06);
            border-left: 4px solid var(--primary);
            padding: 16px 20px;
            border-radius: 0 12px 12px 0;
            margin-bottom: 24px;
            position: relative;
        }

        .daily-example::before {
            content: '例';
            position: absolute;
            top: -10px;
            left: 12px;
            background: var(--primary);
            color: white;
            font-size: 11px;
            padding: 2px 8px;
            border-radius: 4px;
        }

        .daily-example-label {
            font-size: 13px;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .daily-example-text {
            font-size: 1.125rem;
            color: var(--text-dark);
            font-style: italic;
            margin-top: 4px;
        }

        .daily-meta {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .meta-tag {
            background: rgba(5, 150, 105, 0.1);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .meta-tag i {
            font-size: 12px;
        }

        .daily-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            margin-top: 20px;
            transition: var(--transition);
            padding: 10px 20px;
            background: rgba(5, 150, 105, 0.08);
            border-radius: 50px;
        }

        .daily-more:hover {
            gap: 12px;
            background: rgba(5, 150, 105, 0.15);
        }

        /* ===== Quick Entry Section - Bento Grid ===== */
        .entry-section {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .entry-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(to bottom, rgba(5, 150, 105, 0.02) 0%, transparent 100%);
        }

        .entry-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 180px);
            gap: 20px;
        }

        .entry-card {
            text-decoration: none;
            color: inherit;
            border-radius: var(--border-radius-lg);
            padding: 28px;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .entry-card::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0.95;
            transition: var(--transition);
        }

        .entry-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .entry-card:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

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

        /* Entry Card Colors */
        .entry-card.entry-words {
            background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
        }

        .entry-card.entry-voices {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a78bfa 100%);
        }

        .entry-card.entry-quiz {
            background: linear-gradient(135deg, #f59e0b 0%, #fb923c 50%, #fbbf24 100%);
        }

        .entry-card.entry-discuss {
            background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 50%, #67e8f9 100%);
        }

        .entry-icon {
            width: 56px;
            height: 56px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--white);
            position: relative;
            z-index: 1;
            transition: var(--transition);
        }

        .entry-card:hover .entry-icon {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1) rotate(-5deg);
        }

        .entry-content {
            position: relative;
            z-index: 1;
        }

        .entry-card h3 {
            font-family: 'Noto Serif SC', serif;
            font-size: 1.5rem;
            margin-bottom: 4px;
            color: var(--white);
            font-weight: 600;
        }

        /* 移除span2后的统一字号 */

        .entry-card p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
        }

        .entry-number {
            position: absolute;
            top: 20px;
            right: 24px;
            font-family: 'Noto Serif SC', serif;
            font-size: 3rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.15);
            line-height: 1;
        }

        /* ===== Hot Words Section - Magazine Style ===== */
        .hot-section {
            background: linear-gradient(180deg, var(--bg-cream) 0%, var(--white) 100%);
        }

        .words-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .word-card {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            padding: 32px;
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.04);
            box-shadow: var(--shadow-sm);
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 24px;
            align-items: center;
        }

        .word-card:nth-child(even) {
            background: linear-gradient(135deg, rgba(5, 150, 105, 0.03) 0%, rgba(16, 185, 129, 0.03) 100%);
        }

        .word-card:hover {
            border-color: rgba(5, 150, 105, 0.2);
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }

        .word-card-left {
            text-align: center;
            padding: 24px 32px;
            background: var(--gradient-hero);
            border-radius: 16px;
            min-width: 140px;
            position: relative;
            overflow: hidden;
        }

        .word-card-left::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15) 0%, transparent 50%);
        }

        .word-card-title {
            font-family: 'Noto Serif SC', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 4px;
            position: relative;
            z-index: 1;
        }

        .word-card-pinyin {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            position: relative;
            z-index: 1;
        }

        .word-card-right {
            flex: 1;
        }

        .word-card-definition {
            font-size: 15px;
            color: var(--text-dark);
            line-height: 1.7;
            margin-bottom: 16px;
        }

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

        .word-card-category {
            background: rgba(5, 150, 105, 0.1);
            color: var(--primary);
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 500;
        }

        .word-card-play {
            width: 44px;
            height: 44px;
            background: var(--gradient-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .word-card-play:hover {
            transform: scale(1.15);
            box-shadow: 0 8px 25px rgba(5, 150, 105, 0.35);
        }

        /* ===== Voices Section ===== */
        .voices-section {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .voices-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom, rgba(5, 150, 105, 0.03) 0%, transparent 100%);
            pointer-events: none;
        }

        /* 移除深色背景的section-title样式覆盖，使用默认深色样式 */

        .voices-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            position: relative;
            z-index: 1;
        }

        .voice-card {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            padding: 28px;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 0, 0, 0.06);
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .voice-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(5, 150, 105, 0.2);
        }

        .voice-play-wrapper {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .voice-play-btn {
            width: 48px;
            height: 48px;
            background: var(--gradient-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(5, 150, 105, 0.25);
        }

        .voice-play-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35);
        }
        .voice-play-btn.playing {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            box-shadow: 0 4px 15px rgba(239, 68, 68, 0.25);
        }
        .voice-play-btn.playing:hover {
            box-shadow: 0 6px 20px rgba(239, 68, 68, 0.35);
        }
        
        .word-card-play.playing {
            color: #ef4444 !important;
        }
        
        .daily-play-btn.playing {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
            color: white !important;
        }


        .voice-content-wrapper {
            flex: 1;
        }

        .voice-title-link {
            text-decoration: none;
            color: var(--text-dark);
        }

        .voice-title {
            font-family: 'Noto Serif SC', serif;
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 12px;
            transition: var(--transition);
        }

        .voice-title-link:hover .voice-title {
            color: var(--primary);
        }

        .voice-meta {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .voice-tag {
            background: rgba(5, 150, 105, 0.1);
            color: var(--primary);
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .voice-tag i {
            font-size: 11px;
        }

        /* ===== Articles Section - Magazine Layout ===== */
        .articles-section {
            background: var(--bg-cream);
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .article-card {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
        }

        /* 移除第一篇文章跨两行的样式 */

        .article-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

        /* Article Cover with different gradients */
        .article-cover {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        /* 移除第一篇文章封面高度覆盖 */

        .article-cover::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0.4;
        }

        .article-cover::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
        }

        /* Category gradients */
        .article-cover.cat-research {
            background: linear-gradient(135deg, #3b82f6 0%, #6366f1 50%, #8b5cf6 100%);
        }
        .article-cover.cat-culture {
            background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ef4444 100%);
        }
        .article-cover.cat-heritage {
            background: linear-gradient(135deg, #10b981 0%, #06b6d4 50%, #14b8a6 100%);
        }
        .article-cover.cat-proverb {
            background: linear-gradient(135deg, #eab308 0%, #f59e0b 50%, #d97706 100%);
        }
        .article-cover.cat-intro {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
        }
        .article-cover.cat-rhyme {
            background: linear-gradient(135deg, #ec4899 0%, #f472b6 50%, #fb7185 100%);
        }
        .article-cover.cat-default {
            background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
        }

        .article-cover-decoration {
            position: absolute;
            font-family: 'Noto Serif SC', serif;
            font-size: 6rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.12);
            bottom: -20px;
            right: 10px;
            line-height: 1;
            z-index: 1;
        }

        /* 移除第一篇文章装饰字号覆盖 */

        .article-cover-icon {
            font-size: 48px;
            color: rgba(255, 255, 255, 0.4);
            position: relative;
            z-index: 2;
        }

        .article-cover-tags {
            position: absolute;
            top: 16px;
            left: 16px;
            display: flex;
            gap: 8px;
            z-index: 3;
        }

        .article-tag {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            backdrop-filter: blur(8px);
        }

        .article-category-tag {
            background: rgba(255, 255, 255, 0.25);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.35);
        }

        .article-source-badge {
            display: inline-flex;
            align-items: center;
            padding: 2px 10px;
            border-radius: 10px;
            font-size: 11px;
            font-weight: 500;
            margin-left: 6px;
            vertical-align: middle;
        }

        .badge-official {
            background: rgba(5, 150, 105, 0.15);
            color: #34d399;
        }

        .badge-contribute {
            background: rgba(245, 158, 11, 0.15);
            color: #fbbf24;
        }

        .article-body {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        /* 移除第一篇文章body padding覆盖 */

        .article-title {
            font-family: 'Noto Serif SC', serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: var(--transition);
        }

        /* 移除第一篇文章标题字号覆盖 */

        .article-card:hover .article-title {
            color: var(--primary);
        }

        .article-excerpt {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 16px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }

        .article-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 16px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .article-author {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-gray);
        }

        .article-author i {
            color: var(--primary);
        }

        .article-date {
            font-size: 13px;
            color: var(--text-light);
        }

        .article-views {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 13px;
            color: var(--text-light);
        }

        .article-views i {
            font-size: 12px;
        }

        /* ===== Guardians Section - Card Style ===== */
        .guardians-section {
            background: linear-gradient(180deg, var(--white) 0%, var(--bg-cream) 100%);
        }

        .guardians-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            max-width: 900px;
            margin: 0 auto;
        }

        .guardian-card {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            padding: 32px 24px;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 0, 0, 0.04);
            position: relative;
            overflow: hidden;
        }

        .guardian-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transition: var(--transition);
        }

        .guardian-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .guardian-card:hover::before {
            transform: scaleX(1);
        }

        .guardian-avatar {
            position: relative;
            width: 100px;
            height: 100px;
            margin: 0 auto 20px;
        }

        .guardian-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--white);
            box-shadow: var(--shadow-md);
        }

        .guardian-rank {
            position: absolute;
            bottom: -4px;
            right: -4px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            color: var(--white);
        }

        .guardian-rank.rank-1 {
            background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
            box-shadow: 0 4px 15px rgba(255, 183, 0, 0.4);
        }

        .guardian-rank.rank-2 {
            background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
            box-shadow: 0 4px 15px rgba(168, 168, 168, 0.4);
        }

        .guardian-rank.rank-3 {
            background: linear-gradient(135deg, #cd7f32 0%, #b5651d 100%);
            box-shadow: 0 4px 15px rgba(181, 101, 29, 0.4);
        }

        .guardian-name {
            font-family: 'Noto Serif SC', serif;
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .guardian-contribution {
            font-size: 14px;
            color: var(--text-gray);
            margin-bottom: 16px;
        }

        .guardian-progress {
            height: 6px;
            background: rgba(5, 150, 105, 0.1);
            border-radius: 3px;
            overflow: hidden;
            margin-bottom: 8px;
        }

        .guardian-progress-bar {
            height: 100%;
            background: var(--gradient-accent);
            border-radius: 3px;
            transition: width 1s ease-out;
        }

        .guardian-level {
            font-size: 12px;
            color: var(--primary);
            font-weight: 500;
        }

        .guardians-cta {
            text-align: center;
            margin-top: 48px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gradient-accent);
            color: var(--white);
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.125rem;
            font-weight: 500;
            transition: var(--transition);
            box-shadow: 0 8px 30px rgba(5, 150, 105, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(5, 150, 105, 0.4);
        }

        /* ===== CTA Section - Compact ===== */
        .cta-section {
            background: var(--gradient-hero);
            position: relative;
            overflow: hidden;
            padding: 50px 0;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse 60% 50% at 20% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse 50% 50% at 80% 50%, rgba(5, 150, 105, 0.2) 0%, transparent 50%);
        }

        .cta-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .cta-title {
            font-family: 'Noto Serif SC', serif;
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            font-weight: 700;
            color: var(--white);
            margin-bottom: 12px;
        }

        .cta-subtitle {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 32px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: var(--transition);
        }

        .cta-btn-light {
            background: var(--white);
            color: var(--primary);
        }

        .cta-btn-light:hover {
            background: var(--accent-light);
            color: var(--text-dark);
            transform: translateY(-3px);
        }

        .cta-btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

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

        /* ===== Footer ===== */
        .footer {
            background: var(--secondary);
            color: rgba(255, 255, 255, 0.7);
            padding: 40px 0;
            text-align: center;
        }

        .footer p {
            font-size: 14px;
        }

        .footer a {
            color: var(--accent-light);
            text-decoration: none;
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .words-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .entry-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(2, 160px);
            }
            
            .voices-grid,
            .articles-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            /* 移动端也移除第一篇文章跨行 */
            
            .daily-card {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            
            .daily-word-display {
                padding: 24px;
            }
            
            .daily-word {
                font-size: 3rem;
            }
            
            .guardians-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 60px 0;
            }
            
            .hero {
                min-height: auto;
                padding: 20px 0 0;
            }
            
            .hero-content {
                padding: 10px 16px 70px;
                max-width: 100%;
            }
            
            .hero-title {
                font-size: 2rem;
                line-height: 1.5;
            }
            
            .hero-title .highlight::after {
                content: "\A";
                white-space: pre;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            
            .stat-card {
                padding: 16px 12px;
            }
            
            .stat-number {
                font-size: 1.5rem;
            }
            
            .stat-label {
                font-size: 12px;
            }
            
            .hero-search {
                border-radius: 14px;
                max-width: 100%;
                margin: 0 16px 28px;
                box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
            }
            
            .hero-search input {
                padding: 12px 16px;
                font-size: 14px;
            }
            
            .hero-search button {
                padding: 12px 14px;
                font-size: 16px;
                min-width: 44px;
                justify-content: center;
            }
            
            .hero-search button .search-text {
                display: none;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .section-subtitle {
                font-size: 12px;
            }
            
            .daily-card {
                grid-template-columns: 1fr;
                padding: 24px;
                gap: 24px;
            }
            
            .daily-word-display {
                padding: 20px;
            }
            
            .daily-word {
                font-size: 2.5rem;
            }
            
            .daily-play-btn {
                padding: 10px 24px;
                font-size: 14px;
            }
            
            /* Entry Grid - Mobile */
            .entry-grid {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(4, 140px);
            }
            
            .entry-card {
                min-height: 140px;
            }
            
            /* Words Grid - Mobile */
            .words-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            
            .word-card {
                grid-template-columns: 1fr;
                gap: 16px;
                padding: 20px;
            }
            
            .word-card-left {
                min-width: unset;
                padding: 16px 24px;
            }
            
            .word-card-title {
                font-size: 2rem;
            }
            
            .voices-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            
            .articles-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            
            .article-cover {
                height: 160px;
            }
            
            .article-card:first-child .article-cover {
                height: 180px;
            }
            
            .guardians-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }
            
            .guardian-card {
                padding: 20px 12px;
            }
            
            .guardian-avatar {
                width: 64px;
                height: 64px;
                margin-bottom: 12px;
            }
            
            .guardian-avatar img {
                border-width: 3px;
            }
            
            .guardian-rank {
                width: 24px;
                height: 24px;
                font-size: 11px;
                bottom: -2px;
                right: -2px;
            }
            
            .guardian-name {
                font-size: 0.875rem;
            }
            
            .guardian-contribution {
                font-size: 12px;
            }
            
            .guardian-progress,
            .guardian-level {
                display: none;
            }
            
            .guardians-cta {
                margin-top: 24px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
            
            .cta-title {
                font-size: 1.4rem;
            }
        }

        /* ===== Animations on Scroll ===== */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== Loading State ===== */
        .loading {
            position: relative;
        }

        .loading::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
        }
    
/* ===== 移动端适配 - 768px以下 ===== */
@media (max-width: 768px) {
    .hero-content { padding: 10px 16px 70px; }
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.95rem; margin-bottom: 32px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 32px; }
    .stat-card { padding: 20px 12px; }
    .stat-icon { width: 40px; height: 40px; font-size: 16px; }
    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: 12px; }
    .hero-search { margin: 0 16px 28px; border-radius: 14px; max-width: 100%; box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1); }
    .hero-search input { padding: 12px 16px; font-size: 14px; }
    .hero-search button { padding: 12px 14px; font-size: 16px; min-width: 44px; justify-content: center; }
    .hero-search button .search-text { display: none; }
    .entry-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 120px); gap: 12px; }
    .entry-card { padding: 20px 16px; }
    .entry-icon { width: 44px; height: 44px; font-size: 20px; }
    .entry-card h3 { font-size: 1.25rem; }
    .entry-number { font-size: 2rem; top: 12px; right: 16px; }
    .words-grid { grid-template-columns: 1fr; gap: 12px; }
    .word-card { grid-template-columns: 1fr; padding: 16px; }
    .word-card-left { padding: 16px; }
    .word-card-title { font-size: 1.75rem; }
    .voices-grid { grid-template-columns: 1fr; gap: 16px; }
    .voice-card { flex-direction: column; gap: 16px; }
    .articles-grid { grid-template-columns: 1fr; gap: 16px; }
    .article-cover { height: 140px; }
    .guardians-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .guardian-card { min-width: unset; padding: 16px 8px; }
    .guardian-avatar { width: 64px; height: 64px; margin: 0 auto 10px; }
    .guardian-avatar img { border-width: 3px; }
    .guardian-rank { width: 24px; height: 24px; font-size: 11px; bottom: -2px; right: -2px; }
    .guardian-name { font-size: 0.875rem; }
    .guardian-contribution { font-size: 12px; }
    .guardians-cta { margin-top: 24px; }
    .cta-content { padding: 24px 20px; }
    .cta-title { font-size: 1.4rem; }
    .cta-buttons { flex-direction: column; gap: 12px; }
    .cta-btn { width: 100%; justify-content: center; }
    .daily-word-header { padding: 16px 20px; flex-direction: column; gap: 8px; align-items: flex-start; }
    .daily-word-content { padding: 20px; }
    .daily-word-text { font-size: 2rem; }
    .section-title { font-size: 1.3rem; }
}

/* ===== 乡镇守护进度 Section ===== */
.town-coverage-section {
    background: linear-gradient(180deg, #faf8f5 0%%, #f5f9f4 100%%);
    padding: 60px 0;
}
.town-coverage-legend {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding: 12px 16px;
    background: rgba(74, 157, 91, 0.08);
    border-radius: 10px;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #555;
}
.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%%;
}
.legend-dot.status-empty { background: #d1d5db; }
.legend-dot.status-early { background: #a7f3d0; }
.legend-dot.status-progress { background: #4ade80; }
.legend-dot.status-rich { background: #16a34a; }
.town-coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.town-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}
.town-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 157, 91, 0.15);
}
.town-card.status-empty { background: #f9fafb; border-color: #e5e7eb; }
.town-card.status-early { border-left: 3px solid #a7f3d0; }
.town-card.status-progress { border-left: 3px solid #4ade80; }
.town-card.status-rich { border-left: 3px solid #16a34a; background: linear-gradient(135deg, #fff 0%%, #f0fdf4 100%%); }
.town-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.town-name { font-size: 15px; font-weight: 600; color: #333; }
.town-status { font-size: 11px; padding: 2px 8px; border-radius: 10px; font-weight: 500; }
.town-status.status-empty { background: #e5e7eb; color: #6b7280; }
.town-status.status-early { background: #d1fae5; color: #059669; }
.town-status.status-progress { background: #bbf7d0; color: #16a34a; }
.town-status.status-rich { background: #16a34a; color: #fff; }
.town-card-stats { display: flex; gap: 12px; margin-bottom: 12px; }
.town-stat { flex: 1; display: flex; align-items: center; gap: 6px; font-size: 12px; color: #666; }
.town-stat i { font-size: 12px; color: #4a9d5b; }
.town-stat .stat-value { font-weight: 600; color: #2d6a4f; }
.town-stat .stat-label { color: #999; }
.town-card-progress { margin-top: 8px; }
.progress-bar { height: 6px; background: #e5e7eb; border-radius: 3px; overflow: hidden; margin-bottom: 6px; }
.progress-fill { height: 100%%; background: linear-gradient(90deg, #4ade80, #16a34a); border-radius: 3px; }
.progress-text { font-size: 11px; color: #999; }
.town-card-empty { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 10px; color: #9ca3af; font-size: 12px; }
.town-stats-summary { display: flex; gap: 24px; flex-wrap: wrap; }
.town-stat-item { font-size: 14px; color: #666; display: flex; align-items: center; gap: 6px; }
.town-stat-item i { color: #4a9d5b; }
.town-stat-item strong { color: #2d6a4f; font-weight: 600; }
@media (max-width: 992px) { .town-coverage-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
    .town-coverage-section { padding: 40px 0; }
    .town-coverage-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .town-card { padding: 14px; }
}
@media (max-width: 480px) {
    .town-coverage-grid { gap: 10px; }
    .town-stat .stat-label { display: none; }
}
