/* ===== 歪茶影视 - 抹茶柠檬黄·潮流新茶饮国风风格 ===== */
@import url('https://fonts.googleapis.com/css2?family=ZCOOL+KuaiLe&family=Ma+Shan+Zheng&family=Noto+Sans+SC:wght@400;500;700;900&family=Noto+Serif+SC:wght@600;700;900&display=swap');

:root {
    /* 抹茶翠绿渐变 */
    --matcha-light: #7CB342;
    --matcha-mid: #558B2F;
    --matcha-deep: #33691E;
    /* 柠檬鲜黄 */
    --lemon-light: #FDD835;
    --lemon-mid: #FBC02D;
    --lemon-deep: #F9A825;
    /* 奶盖米白 */
    --milk-light: #FFFDE7;
    --milk-mid: #F5F5DC;
    --milk-cream: #FFF8E1;
    /* 茶汤琥珀 */
    --tea-amber: #8D6E63;
    --tea-light: #BCAAA4;
    --tea-deep: #5D4037;
    /* 潮流黑 */
    --trend-black: #1B1B1B;
    --ink-black: #2C2C2C;
    /* 文字色 */
    --text-dark: #2E3B1E;
    --text-body: #4E5A38;
    --text-muted: #8D6E63;
    /* 阴影 */
    --shadow-matcha: rgba(51, 105, 30, 0.28);
    --shadow-lemon: rgba(251, 192, 45, 0.35);
    --shadow-warm: rgba(141, 110, 99, 0.22);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    background: linear-gradient(180deg, #F1F8E9 0%, #FFFDE7 35%, #FFF8E1 100%);
    color: var(--text-body);
    line-height: 1.8;
    overflow-x: hidden;
    min-height: 100vh;
}

/* 新茶饮波纹背景 */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(124, 179, 66, 0.10) 0%, transparent 42%),
        radial-gradient(circle at 90% 80%, rgba(253, 216, 53, 0.10) 0%, transparent 42%),
        radial-gradient(circle at 50% 50%, rgba(141, 110, 99, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: -2;
}

/* 茶汤波纹纹理 */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-radial-gradient(circle at 15% 30%, transparent 0, transparent 80px, rgba(124, 179, 66, 0.04) 80px, rgba(124, 179, 66, 0.04) 82px),
        repeating-radial-gradient(circle at 85% 70%, transparent 0, transparent 100px, rgba(253, 216, 53, 0.04) 100px, rgba(253, 216, 53, 0.04) 102px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== 字体类 ===== */
.kuai-font { font-family: 'ZCOOL KuaiLe', cursive; }
.mashan-font { font-family: 'Ma Shan Zheng', cursive; }
.serif-font { font-family: 'Noto Serif SC', serif; }

/* ===== 漂浮粒子（茶叶/茶滴/柠檬片/珍珠/吸管） ===== */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    font-size: 20px;
    animation: floatUp linear infinite;
    opacity: 0.6;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ===== 歪茶杯 LOGO ===== */
.waicha-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.waicha-cup {
    width: 54px;
    height: 64px;
    position: relative;
    flex-shrink: 0;
    transform: rotate(-12deg);
    filter: drop-shadow(2px 4px 0 rgba(51, 105, 30, 0.35));
}

/* 杯盖奶盖 */
.waicha-cup .cup-lid {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 12px;
    background: linear-gradient(180deg, #FFFDE7 0%, #F5F5DC 100%);
    border-radius: 25px 25px 4px 4px;
    border: 3px solid var(--matcha-deep);
    z-index: 3;
}

/* 奶盖滴落 */
.waicha-cup .cup-lid::before,
.waicha-cup .cup-lid::after {
    content: "";
    position: absolute;
    bottom: -8px;
    width: 6px;
    height: 10px;
    background: #FFFDE7;
    border-radius: 0 0 3px 3px;
    border: 2px solid var(--matcha-deep);
    border-top: none;
}
.waicha-cup .cup-lid::before { left: 8px; }
.waicha-cup .cup-lid::after { right: 10px; height: 6px; }

/* 杯身（茶汤渐变） */
.waicha-cup .cup-body {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 44px;
    background: linear-gradient(180deg, var(--lemon-light) 0%, var(--matcha-light) 35%, var(--matcha-mid) 100%);
    border-radius: 4px 4px 18px 18px;
    border: 3px solid var(--matcha-deep);
    border-top: none;
    overflow: hidden;
}

/* 杯身W字母 */
.waicha-cup .cup-body .w-letter {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 20px;
    font-weight: bold;
    color: #FFFDE7;
    line-height: 1;
    text-shadow: 1px 1px 0 var(--matcha-deep);
    z-index: 2;
}

/* 珍珠装饰 */
.waicha-cup .cup-body::before,
.waicha-cup .cup-body::after {
    content: "";
    position: absolute;
    bottom: 4px;
    width: 5px;
    height: 5px;
    background: var(--trend-black);
    border-radius: 50%;
}
.waicha-cup .cup-body::before { left: 8px; }
.waicha-cup .cup-body::after { right: 8px; bottom: 6px; }

/* 茶叶装饰 */
.waicha-cup .cup-leaf {
    position: absolute;
    top: -6px;
    right: -4px;
    font-size: 14px;
    transform: rotate(25deg);
    z-index: 4;
}

/* 茶香热气 */
.waicha-cup .cup-steam {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 16px;
    z-index: 2;
}
.waicha-cup .cup-steam::before,
.waicha-cup .cup-steam::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 14px;
    background: rgba(255, 253, 231, 0.85);
    border-radius: 4px;
    filter: blur(1px);
    animation: steamRise 2.5s ease-in-out infinite;
}
.waicha-cup .cup-steam::before { left: 6px; }
.waicha-cup .cup-steam::after { right: 6px; animation-delay: 0.6s; }

@keyframes steamRise {
    0%, 100% { transform: translateY(0) scaleX(1); opacity: 0.85; }
    50% { transform: translateY(-6px) scaleX(1.6); opacity: 0.4; }
}

.logo-text .brand-name {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 26px;
    background: linear-gradient(180deg, var(--matcha-light) 0%, var(--matcha-deep) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    filter: drop-shadow(1px 2px 0 rgba(51, 105, 30, 0.25));
}

.logo-text .brand-tag {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: var(--lemon-deep);
    letter-spacing: 2px;
    margin-top: 2px;
}

/* ===== 顶部导航 ===== */
.wc-header {
    background: linear-gradient(180deg, rgba(255,253,231,0.98) 0%, rgba(245,245,220,0.98) 100%);
    backdrop-filter: blur(10px);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 500;
    border-bottom: 4px solid var(--matcha-mid);
    box-shadow: 0 4px 0 var(--matcha-deep), 0 8px 30px rgba(124, 179, 66, 0.15);
}

.wc-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.wc-user-btns {
    display: flex;
    gap: 12px;
    align-items: center;
}

.tea-btn {
    padding: 10px 22px;
    border-radius: 24px;
    font-family: 'ZCOOL KuaiLe', sans-serif;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.2s;
    position: relative;
    border: 2px solid var(--matcha-deep);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tea-btn-login {
    background: var(--milk-light);
    color: var(--text-dark);
    box-shadow: 0 3px 0 var(--matcha-deep);
}

.tea-btn-login:hover {
    background: #FFF8E1;
    transform: translateY(2px);
    box-shadow: 0 1px 0 var(--matcha-deep);
}

.tea-btn-vip {
    background: linear-gradient(180deg, var(--lemon-light) 0%, var(--lemon-mid) 100%);
    color: var(--matcha-deep);
    box-shadow: 0 3px 0 var(--lemon-deep), 0 0 0 3px rgba(253, 216, 53, 0.3);
    animation: shine 2.2s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.12); }
}

.tea-btn-vip:hover {
    transform: translateY(2px);
    box-shadow: 0 1px 0 var(--lemon-deep), 0 0 0 3px rgba(253, 216, 53, 0.3);
}

/* ===== 主导航条 ===== */
.wc-nav {
    background: linear-gradient(180deg, var(--matcha-light) 0%, var(--matcha-mid) 60%, var(--matcha-deep) 100%);
    border-bottom: 4px solid var(--matcha-deep);
    box-shadow: 0 4px 0 rgba(51, 105, 30, 0.3), 0 8px 20px rgba(85, 139, 47, 0.2);
    position: relative;
}

.wc-nav::before,
.wc-nav::after {
    content: "🍃";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    opacity: 0.7;
}

.wc-nav::before { left: 20px; transform: translateY(-50%) rotate(-20deg); }
.wc-nav::after { right: 20px; transform: translateY(-50%) rotate(20deg); }

.wc-nav ul {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.wc-nav li { position: relative; }

.wc-nav a {
    display: block;
    padding: 18px 26px;
    color: var(--milk-light);
    font-weight: bold;
    font-size: 16px;
    font-family: 'ZCOOL KuaiLe', sans-serif;
    transition: all 0.2s;
    position: relative;
    text-shadow: 1px 2px 0 rgba(0,0,0,0.18);
}

.wc-nav a::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--lemon-light);
    border-radius: 2px;
    transition: width 0.3s;
    box-shadow: 0 2px 0 rgba(0,0,0,0.15);
}

.wc-nav a:hover {
    color: var(--lemon-light);
    transform: translateY(-2px);
}

.wc-nav a:hover::after { width: 60%; }

.wc-nav a.active { color: var(--lemon-light); }
.wc-nav a.active::after { width: 60%; }

/* ===== 国潮印章对话框 ===== */
.seal-bubble {
    position: relative;
    background: var(--milk-light);
    border: 3px solid var(--matcha-deep);
    border-radius: 16px;
    padding: 16px 24px;
    box-shadow: 4px 6px 0 var(--matcha-deep), 0 10px 30px rgba(0,0,0,0.08);
}

.seal-bubble::after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 40px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 18px solid var(--matcha-deep);
}

.seal-bubble::before {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 44px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 14px solid var(--milk-light);
    z-index: 1;
}

/* 国潮印章 */
.guo-seal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #C62828 0%, #B71C1C 100%);
    color: #FFFDE7;
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 20px;
    line-height: 1.1;
    text-align: center;
    border-radius: 8px;
    border: 3px solid #8E0000;
    transform: rotate(-6deg);
    box-shadow: 2px 3px 0 rgba(183, 28, 28, 0.4);
    letter-spacing: 1px;
}

/* ===== HERO 区域 ===== */
.wc-hero {
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
}

.wc-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(253, 216, 53, 0.30) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 90%, rgba(124, 179, 66, 0.28) 0%, transparent 50%),
        linear-gradient(180deg, #DCEDC8 0%, #FFFDE7 55%, #FFF8E1 100%);
}

.wc-hero-decor {
    position: absolute;
    font-size: 40px;
    opacity: 0.75;
    animation: bobble 3s ease-in-out infinite;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.1));
}

@keyframes bobble {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-16px) rotate(8deg); }
}

.wc-hero-decor.d1 { top: 80px; left: 5%; animation-delay: 0s; font-size: 50px; }
.wc-hero-decor.d2 { top: 120px; right: 8%; animation-delay: 0.5s; font-size: 36px; }
.wc-hero-decor.d3 { bottom: 60px; left: 12%; animation-delay: 1s; font-size: 44px; }
.wc-hero-decor.d4 { bottom: 100px; right: 10%; animation-delay: 1.5s; font-size: 38px; }
.wc-hero-decor.d5 { top: 200px; left: 30%; animation-delay: 0.8s; font-size: 30px; }
.wc-hero-decor.d6 { top: 260px; right: 25%; animation-delay: 1.2s; font-size: 34px; }

.wc-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
}

.wc-hero-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--matcha-light), var(--matcha-mid));
    color: var(--milk-light);
    padding: 8px 22px;
    border-radius: 24px;
    font-family: 'ZCOOL KuaiLe', sans-serif;
    font-size: 15px;
    margin-bottom: 26px;
    border: 2px solid var(--matcha-deep);
    box-shadow: 0 4px 0 var(--matcha-deep), 0 8px 20px rgba(85, 139, 47, 0.3);
    animation: badgeFloat 3s ease-in-out infinite;
}

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

.wc-hero-title {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 88px;
    background: linear-gradient(180deg, var(--matcha-light) 0%, var(--matcha-mid) 50%, var(--matcha-deep) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 6px;
    line-height: 1.1;
    margin-bottom: 10px;
    filter: drop-shadow(3px 4px 0 var(--lemon-light));
}

.wc-hero-subtitle {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 32px;
    color: var(--lemon-deep);
    letter-spacing: 6px;
    margin-bottom: 26px;
    text-shadow: 2px 2px 0 var(--milk-light);
}

.wc-hero-desc {
    font-size: 18px;
    color: var(--text-body);
    line-height: 2;
    margin-bottom: 36px;
    padding: 0 40px;
}

.wc-hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 16px 38px;
    border-radius: 30px;
    font-family: 'ZCOOL KuaiLe', sans-serif;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.2s;
    border: 3px solid var(--matcha-deep);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-btn-primary {
    background: linear-gradient(180deg, var(--matcha-light) 0%, var(--matcha-mid) 100%);
    color: var(--milk-light);
    box-shadow: 0 5px 0 var(--matcha-deep), 0 10px 24px rgba(85, 139, 47, 0.35);
}

.hero-btn-primary:hover {
    transform: translateY(3px);
    box-shadow: 0 2px 0 var(--matcha-deep), 0 6px 16px rgba(85, 139, 47, 0.3);
}

.hero-btn-secondary {
    background: linear-gradient(180deg, var(--lemon-light) 0%, var(--lemon-mid) 100%);
    color: var(--matcha-deep);
    box-shadow: 0 5px 0 var(--lemon-deep), 0 10px 24px rgba(251, 192, 45, 0.35);
}

.hero-btn-secondary:hover {
    transform: translateY(3px);
    box-shadow: 0 2px 0 var(--lemon-deep), 0 6px 16px rgba(251, 192, 45, 0.3);
}

/* ===== 数据统计 ===== */
.wc-stats {
    background: linear-gradient(180deg, var(--matcha-deep) 0%, var(--matcha-mid) 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.wc-stats::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(90deg, var(--lemon-light) 0, var(--lemon-light) 20px, var(--lemon-mid) 20px, var(--lemon-mid) 40px);
}

.wc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.wc-stat-item {
    text-align: center;
    color: var(--milk-light);
    padding: 20px;
    background: rgba(255, 253, 231, 0.08);
    border-radius: 16px;
    border: 2px solid rgba(253, 216, 53, 0.3);
    transition: transform 0.3s;
}

.wc-stat-item:hover { transform: translateY(-6px); }

.wc-stat-icon {
    font-size: 38px;
    display: block;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.wc-stat-num {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 42px;
    color: var(--lemon-light);
    margin-bottom: 6px;
    text-shadow: 2px 2px 0 var(--matcha-deep);
}

.wc-stat-label {
    font-size: 14px;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* ===== 通用区块 ===== */
.wc-section {
    padding: 70px 0;
    position: relative;
}

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

.wc-section-tag {
    display: inline-block;
    background: var(--milk-light);
    color: var(--matcha-mid);
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    border: 2px solid var(--matcha-mid);
    margin-bottom: 16px;
}

.wc-section-title {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.wc-section-title span {
    color: var(--matcha-mid);
    position: relative;
}

.wc-section-title span::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--lemon-light);
    z-index: -1;
    opacity: 0.7;
    border-radius: 4px;
}

.wc-section-sub {
    font-size: 16px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* 茶纹边框装饰 */
.vine-border {
    border: 2px dashed rgba(85, 139, 47, 0.4);
    border-radius: 24px;
    padding: 40px;
    background: rgba(255, 253, 231, 0.5);
    position: relative;
}

.vine-border::before,
.vine-border::after {
    content: "🍃";
    position: absolute;
    font-size: 24px;
    opacity: 0.5;
}
.vine-border::before { top: -14px; left: 30px; transform: rotate(-20deg); }
.vine-border::after { bottom: -14px; right: 30px; transform: rotate(20deg); }

/* ===== 分类网格 ===== */
.wc-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.wc-cat-item {
    text-align: center;
    padding: 28px 16px;
    background: var(--milk-light);
    border-radius: 16px;
    border: 2px solid var(--matcha-mid);
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 4px 0 var(--matcha-deep);
}

.wc-cat-item:hover {
    transform: translateY(-6px) rotate(-1deg);
    background: var(--lemon-light);
    box-shadow: 0 8px 0 var(--matcha-deep), 0 12px 24px rgba(85, 139, 47, 0.25);
}

.wc-cat-icon {
    font-size: 44px;
    display: block;
    margin-bottom: 12px;
    transition: transform 0.3s;
}

.wc-cat-item:hover .wc-cat-icon { transform: scale(1.2) rotate(10deg); }

.wc-cat-name {
    font-family: 'ZCOOL KuaiLe', sans-serif;
    font-size: 18px;
    color: var(--text-dark);
    letter-spacing: 1px;
}

/* ===== 视频卡片网格 ===== */
.wc-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.wc-video-card {
    background: var(--milk-light);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--matcha-mid);
    box-shadow: 0 4px 0 var(--matcha-deep);
    transition: all 0.3s;
    cursor: pointer;
}

.wc-video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 0 var(--matcha-deep), 0 16px 30px rgba(85, 139, 47, 0.3);
}

.wc-video-thumb {
    position: relative;
    height: 150px;
    background: linear-gradient(135deg, var(--matcha-light) 0%, var(--matcha-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.wc-video-thumb.v2 { background: linear-gradient(135deg, var(--lemon-light) 0%, var(--lemon-mid) 100%); }
.wc-video-thumb.v3 { background: linear-gradient(135deg, var(--tea-amber) 0%, var(--tea-deep) 100%); }
.wc-video-thumb.v4 { background: linear-gradient(135deg, var(--matcha-mid) 0%, var(--matcha-deep) 100%); }
.wc-video-thumb.v5 { background: linear-gradient(135deg, var(--lemon-mid) 0%, var(--lemon-deep) 100%); }
.wc-video-thumb.v6 { background: linear-gradient(135deg, var(--matcha-light) 0%, var(--lemon-light) 100%); }
.wc-video-thumb.v7 { background: linear-gradient(135deg, var(--tea-light) 0%, var(--tea-amber) 100%); }
.wc-video-thumb.v8 { background: linear-gradient(135deg, var(--trend-black) 0%, var(--matcha-deep) 100%); }

.thumb-emoji {
    font-size: 56px;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.2));
    transition: transform 0.3s;
}

.wc-video-card:hover .thumb-emoji { transform: scale(1.15); }

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 56px;
    height: 56px;
    background: rgba(255, 253, 231, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--matcha-deep);
    font-size: 22px;
    transition: transform 0.3s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    border: 3px solid var(--matcha-deep);
}

.wc-video-card:hover .play-btn { transform: translate(-50%, -50%) scale(1); }

.duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(27, 27, 27, 0.85);
    color: var(--milk-light);
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 700;
}

.hot-tag, .vip-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(90deg, #E53935, #C62828);
    color: var(--milk-light);
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

.vip-tag {
    background: linear-gradient(90deg, var(--lemon-light), var(--lemon-deep));
    color: var(--matcha-deep);
}

.wc-video-info { padding: 14px 16px 18px; }

.wc-video-cat {
    display: inline-block;
    background: var(--milk-cream);
    color: var(--matcha-mid);
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    border: 1px solid var(--matcha-light);
}

.wc-video-title {
    font-family: 'ZCOOL KuaiLe', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wc-video-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== VIP 特性区 ===== */
.wc-feature {
    background: linear-gradient(180deg, rgba(124, 179, 66, 0.08) 0%, rgba(253, 216, 53, 0.10) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.wc-feature::before {
    content: "🍃 🍵 🍋 🧋 🌿";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 22px;
    letter-spacing: 12px;
    opacity: 0.4;
}

.wc-feature-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 30px;
}

.wc-feature-tag {
    display: inline-block;
    background: linear-gradient(90deg, var(--lemon-light), var(--lemon-mid));
    color: var(--matcha-deep);
    padding: 6px 20px;
    border-radius: 20px;
    font-family: 'ZCOOL KuaiLe', sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
    border: 2px solid var(--lemon-deep);
    box-shadow: 0 3px 0 var(--lemon-deep);
}

.wc-feature-title {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 38px;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 22px;
    letter-spacing: 2px;
}

.wc-feature-title span { color: var(--matcha-mid); }

.wc-feature-text {
    font-size: 16px;
    color: var(--text-body);
    line-height: 2;
    margin-bottom: 26px;
}

.wc-feature-list {
    margin-bottom: 32px;
}

.wc-feature-list li {
    padding: 8px 0 8px 8px;
    font-size: 15px;
    color: var(--text-body);
    position: relative;
    padding-left: 32px;
}

.wc-feature-list li::before {
    content: "🍵";
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 18px;
}

.wc-feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* VIP 茶客卡 */
.vip-card {
    background: linear-gradient(160deg, var(--matcha-deep) 0%, var(--matcha-mid) 50%, var(--matcha-light) 100%);
    border-radius: 24px;
    padding: 36px 32px;
    color: var(--milk-light);
    width: 320px;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--lemon-light);
    box-shadow: 0 12px 0 var(--matcha-deep), 0 20px 50px rgba(51, 105, 30, 0.4);
    transform: rotate(-3deg);
    transition: transform 0.3s;
}

.vip-card:hover { transform: rotate(0deg) scale(1.02); }

.vip-card-decor {
    position: absolute;
    font-size: 28px;
    opacity: 0.5;
    animation: bobble 3s ease-in-out infinite;
}

.vip-card-decor.d1 { top: 16px; right: 20px; }
.vip-card-decor.d2 { bottom: 90px; left: 16px; animation-delay: 0.8s; }

.vip-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.vip-card-badge {
    background: linear-gradient(90deg, var(--lemon-light), var(--lemon-mid));
    color: var(--matcha-deep);
    padding: 4px 14px;
    border-radius: 14px;
    font-family: 'ZCOOL KuaiLe', sans-serif;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    border: 2px solid var(--lemon-deep);
}

.vip-card-logo { font-size: 40px; }

.vip-card-title {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 30px;
    color: var(--lemon-light);
    margin-bottom: 6px;
    letter-spacing: 3px;
    position: relative;
    z-index: 2;
}

.vip-card-sub {
    font-size: 11px;
    opacity: 0.8;
    letter-spacing: 2px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.vip-card-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    border-top: 2px dashed rgba(253, 216, 53, 0.4);
    padding-top: 20px;
}

.vip-card-price .currency { font-size: 22px; color: var(--lemon-light); }
.vip-card-price .amount {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 58px;
    color: var(--lemon-light);
    line-height: 1;
}
.vip-card-price .period { font-size: 14px; opacity: 0.85; }

.vip-card-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(180deg, var(--lemon-light) 0%, var(--lemon-mid) 100%);
    color: var(--matcha-deep);
    border: none;
    border-radius: 30px;
    font-family: 'ZCOOL KuaiLe', sans-serif;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 4px;
    border: 2px solid var(--lemon-deep);
    box-shadow: 0 4px 0 var(--lemon-deep);
    transition: all 0.2s;
    position: relative;
    z-index: 2;
}

.vip-card-btn:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--lemon-deep);
}

/* ===== 内容卡片网格 ===== */
.wc-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.wc-content-card {
    background: var(--milk-light);
    border-radius: 18px;
    padding: 32px 26px;
    border: 2px solid var(--matcha-mid);
    box-shadow: 0 5px 0 var(--matcha-deep);
    transition: all 0.3s;
    position: relative;
}

.wc-content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 11px 0 var(--matcha-deep), 0 16px 32px rgba(85, 139, 47, 0.25);
    background: var(--milk-cream);
}

.card-icon-wrap {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--lemon-light) 0%, var(--lemon-mid) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 18px;
    border: 2px solid var(--lemon-deep);
    box-shadow: 0 4px 0 var(--lemon-deep);
    transition: transform 0.3s;
}

.wc-content-card:hover .card-icon-wrap { transform: rotate(-10deg) scale(1.1); }

.wc-content-card h3 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.wc-content-card p {
    font-size: 14.5px;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 16px;
}

.card-link {
    display: inline-block;
    color: var(--matcha-mid);
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s;
}

.card-link:hover {
    color: var(--lemon-deep);
    transform: translateX(4px);
}

/* ===== CTA 行动召唤 ===== */
.wc-cta {
    background: linear-gradient(135deg, var(--matcha-deep) 0%, var(--matcha-mid) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--milk-light);
    position: relative;
    overflow: hidden;
}

.wc-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(90deg, var(--lemon-light) 0, var(--lemon-light) 24px, var(--lemon-mid) 24px, var(--lemon-mid) 48px);
}

.cta-decor {
    position: absolute;
    font-size: 38px;
    opacity: 0.5;
    animation: bobble 3.5s ease-in-out infinite;
}

.cta-decor.cd1 { top: 30px; left: 10%; }
.cta-decor.cd2 { bottom: 30px; right: 12%; animation-delay: 0.7s; }
.cta-decor.cd3 { top: 40%; left: 6%; animation-delay: 1.2s; }

.wc-cta h2 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 38px;
    margin-bottom: 16px;
    letter-spacing: 3px;
    position: relative;
    z-index: 2;
}

.wc-cta p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

/* ===== 页面横幅 ===== */
.wc-page-banner {
    background: linear-gradient(135deg, var(--matcha-mid) 0%, var(--matcha-deep) 100%);
    padding: 56px 0 50px;
    color: var(--milk-light);
    position: relative;
    overflow: hidden;
}

.wc-page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(90deg, var(--lemon-light) 0, var(--lemon-light) 20px, var(--lemon-mid) 20px, var(--lemon-mid) 40px);
}

.wc-page-banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: radial-gradient(ellipse at center bottom, rgba(253, 216, 53, 0.15) 0%, transparent 70%);
}

.banner-decor {
    position: absolute;
    font-size: 44px;
    opacity: 0.55;
    animation: bobble 3s ease-in-out infinite;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.2));
}

.banner-decor.bd1 { top: 20px; left: 8%; }
.banner-decor.bd2 { top: 30px; right: 10%; animation-delay: 0.6s; }
.banner-decor.bd3 { bottom: 16px; right: 18%; animation-delay: 1.1s; }

.banner-breadcrumb {
    font-size: 14px;
    margin-bottom: 18px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.banner-breadcrumb a:hover { color: var(--lemon-light); }

.banner-breadcrumb span { margin: 0 8px; opacity: 0.7; }

.wc-page-banner h1 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 48px;
    margin-bottom: 12px;
    letter-spacing: 4px;
    position: relative;
    z-index: 2;
}

.wc-page-banner p {
    font-size: 17px;
    opacity: 0.92;
    position: relative;
    z-index: 2;
}

/* ===== 团队网格 ===== */
.wc-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.wc-team-card {
    background: var(--milk-light);
    border-radius: 18px;
    padding: 30px 22px;
    text-align: center;
    border: 2px solid var(--matcha-mid);
    box-shadow: 0 4px 0 var(--matcha-deep);
    transition: all 0.3s;
}

.wc-team-card:hover {
    transform: translateY(-6px) rotate(-1deg);
    box-shadow: 0 10px 0 var(--matcha-deep), 0 14px 28px rgba(85, 139, 47, 0.25);
}

.wc-team-avatar {
    width: 88px;
    height: 88px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--matcha-light) 0%, var(--matcha-mid) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border: 3px solid var(--lemon-light);
    box-shadow: 0 4px 0 var(--matcha-deep);
}

.wc-team-card h4 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.wc-team-card .role {
    color: var(--matcha-mid);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.wc-team-card p {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.8;
}

/* ===== 时间线 ===== */
.wc-timeline-wrap {
    position: relative;
}

.wc-timeline {
    position: relative;
    padding-left: 40px;
}

.wc-timeline::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--matcha-light), var(--lemon-mid), var(--matcha-deep));
    border-radius: 2px;
}

.wc-timeline-item {
    position: relative;
    margin-bottom: 32px;
}

.wc-timeline-item::before {
    content: "";
    position: absolute;
    left: -34px;
    top: 8px;
    width: 18px;
    height: 18px;
    background: var(--lemon-light);
    border: 4px solid var(--matcha-deep);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--milk-light);
}

.wc-timeline-content {
    background: var(--milk-light);
    padding: 24px 28px;
    border-radius: 16px;
    border: 2px solid var(--matcha-mid);
    box-shadow: 0 4px 0 var(--matcha-deep);
}

.wc-timeline-year {
    display: inline-block;
    background: linear-gradient(90deg, var(--lemon-light), var(--lemon-mid));
    color: var(--matcha-deep);
    padding: 3px 16px;
    border-radius: 14px;
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 18px;
    margin-bottom: 10px;
    border: 2px solid var(--lemon-deep);
}

.wc-timeline-content h4 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 19px;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.wc-timeline-content p {
    font-size: 14.5px;
    color: var(--text-body);
    line-height: 1.9;
}

/* ===== 案例网格 ===== */
.wc-case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.wc-case-card {
    background: var(--milk-light);
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid var(--matcha-mid);
    box-shadow: 0 5px 0 var(--matcha-deep);
    transition: all 0.3s;
}

.wc-case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 11px 0 var(--matcha-deep), 0 16px 30px rgba(85, 139, 47, 0.25);
}

.wc-case-banner {
    height: 130px;
    background: linear-gradient(135deg, var(--matcha-light) 0%, var(--lemon-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.wc-case-card:nth-child(2) .wc-case-banner { background: linear-gradient(135deg, var(--lemon-mid) 0%, var(--tea-amber) 100%); }
.wc-case-card:nth-child(3) .wc-case-banner { background: linear-gradient(135deg, var(--tea-amber) 0%, var(--matcha-mid) 100%); }
.wc-case-card:nth-child(4) .wc-case-banner { background: linear-gradient(135deg, var(--matcha-mid) 0%, var(--lemon-mid) 100%); }

.banner-emoji { font-size: 64px; filter: drop-shadow(0 3px 6px rgba(0,0,0,0.2)); }

.wc-case-body { padding: 24px 26px; }

.case-tag {
    display: inline-block;
    background: var(--milk-cream);
    color: var(--matcha-mid);
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    border: 1px solid var(--matcha-light);
}

.wc-case-body h3 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 19px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.5;
    letter-spacing: 1px;
}

.wc-case-body p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 18px;
}

.wc-case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 16px;
    border-top: 2px dashed rgba(85, 139, 47, 0.3);
}

.wc-case-stats div {
    text-align: center;
}

.wc-case-stats strong {
    display: block;
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 18px;
    color: var(--matcha-mid);
    margin-bottom: 2px;
}

.wc-case-stats span {
    font-size: 11px;
    color: var(--text-muted);
}

/* ===== 资讯特性卡 ===== */
.wc-news-featured {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    align-items: center;
}

.news-featured-img {
    background: linear-gradient(135deg, var(--matcha-light) 0%, var(--lemon-mid) 100%);
    border-radius: 18px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 3px solid var(--matcha-deep);
    box-shadow: 0 6px 0 var(--matcha-deep);
}

.news-tag-hot {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(90deg, #E53935, #C62828);
    color: var(--milk-light);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.news-featured-content h3 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.5;
    letter-spacing: 1px;
}

.news-featured-content p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.95;
    margin-bottom: 14px;
}

.news-meta {
    display: flex;
    gap: 18px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
    flex-wrap: wrap;
}

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

.wc-news-card {
    background: var(--milk-light);
    border-radius: 16px;
    padding: 24px;
    border: 2px solid var(--matcha-mid);
    box-shadow: 0 4px 0 var(--matcha-deep);
    transition: all 0.3s;
    display: flex;
    gap: 18px;
}

.wc-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 9px 0 var(--matcha-deep), 0 14px 26px rgba(85, 139, 47, 0.22);
}

.news-date {
    flex-shrink: 0;
    width: 64px;
    text-align: center;
    background: linear-gradient(180deg, var(--lemon-light) 0%, var(--lemon-mid) 100%);
    color: var(--matcha-deep);
    border-radius: 12px;
    padding: 10px 6px;
    border: 2px solid var(--lemon-deep);
    height: fit-content;
}

.news-date .day {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 26px;
    line-height: 1;
}

.news-date .month {
    font-size: 11px;
    font-weight: 700;
    margin-top: 2px;
}

.news-info { flex: 1; }

.news-info .tag {
    display: inline-block;
    background: var(--milk-cream);
    color: var(--matcha-mid);
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px;
    border: 1px solid var(--matcha-light);
}

.news-info h4 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.news-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== 联系方式网格 ===== */
.wc-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wc-contact-card {
    background: var(--milk-light);
    border-radius: 18px;
    padding: 30px 26px;
    border: 2px solid var(--matcha-mid);
    box-shadow: 0 5px 0 var(--matcha-deep);
    transition: all 0.3s;
}

.wc-contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 11px 0 var(--matcha-deep), 0 16px 30px rgba(85, 139, 47, 0.22);
}

.contact-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--lemon-light) 0%, var(--lemon-mid) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    border: 3px solid var(--lemon-deep);
    box-shadow: 0 4px 0 var(--lemon-deep);
}

.wc-contact-card h3 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.wc-contact-card > p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 18px;
}

.contact-info div {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-body);
    border-bottom: 1px dashed rgba(85, 139, 47, 0.2);
}

.contact-info div:last-child { border-bottom: none; }

.contact-info strong { color: var(--matcha-mid); }

/* 反馈表单 */
.wc-form-card {
    background: var(--milk-light);
    border-radius: 20px;
    padding: 36px;
    border: 2px solid var(--matcha-mid);
    box-shadow: 0 6px 0 var(--matcha-deep);
}

.wc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.wc-form-field { margin-bottom: 18px; }

.wc-form-field label {
    display: block;
    font-family: 'ZCOOL KuaiLe', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.wc-form-field input,
.wc-form-field select,
.wc-form-field textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--milk-cream);
    border: 2px solid var(--matcha-mid);
    border-radius: 12px;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.2s;
}

.wc-form-field input:focus,
.wc-form-field select:focus,
.wc-form-field textarea:focus {
    outline: none;
    border-color: var(--lemon-deep);
    background: var(--milk-light);
    box-shadow: 0 0 0 4px rgba(253, 216, 53, 0.2);
}

.wc-form-field textarea { resize: vertical; min-height: 120px; }

.wc-form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(180deg, var(--matcha-light) 0%, var(--matcha-mid) 100%);
    color: var(--milk-light);
    border: 2px solid var(--matcha-deep);
    border-radius: 30px;
    font-family: 'ZCOOL KuaiLe', sans-serif;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 4px;
    box-shadow: 0 5px 0 var(--matcha-deep);
    transition: all 0.2s;
}

.wc-form-submit:hover {
    transform: translateY(3px);
    box-shadow: 0 2px 0 var(--matcha-deep);
}

/* FAQ 折叠 */
.wc-faq-item {
    background: var(--milk-light);
    border-radius: 14px;
    padding: 22px 26px;
    margin-bottom: 16px;
    border: 2px solid var(--matcha-mid);
    box-shadow: 0 4px 0 var(--matcha-deep);
}

.wc-faq-item h4 {
    font-family: 'ZCOOL KuaiLe', sans-serif;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.wc-faq-item h4::before {
    content: "🍵 ";
}

.wc-faq-item p {
    font-size: 14.5px;
    color: var(--text-body);
    line-height: 1.9;
}

/* 价格方案网格 */
.wc-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wc-price-card {
    background: var(--milk-light);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    border: 2px solid var(--matcha-mid);
    box-shadow: 0 6px 0 var(--matcha-deep);
    transition: all 0.3s;
    position: relative;
}

.wc-price-card.featured {
    background: linear-gradient(180deg, var(--matcha-deep) 0%, var(--matcha-mid) 100%);
    color: var(--milk-light);
    transform: scale(1.05);
    border-color: var(--lemon-light);
    box-shadow: 0 8px 0 var(--matcha-deep), 0 16px 40px rgba(51, 105, 30, 0.4);
}

.wc-price-card:hover {
    transform: translateY(-8px);
}

.wc-price-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--lemon-light), var(--lemon-mid));
    color: var(--matcha-deep);
    padding: 5px 18px;
    border-radius: 16px;
    font-family: 'ZCOOL KuaiLe', sans-serif;
    font-size: 13px;
    border: 2px solid var(--lemon-deep);
    box-shadow: 0 3px 0 var(--lemon-deep);
}

.wc-price-card h3 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 24px;
    margin-bottom: 6px;
    letter-spacing: 2px;
}

.wc-price-card.featured h3 { color: var(--lemon-light); }

.wc-price-card .price-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.wc-price-card.featured .price-desc { color: rgba(255, 253, 231, 0.8); }

.wc-price-card .price-amount {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 52px;
    color: var(--matcha-mid);
    line-height: 1;
    margin-bottom: 6px;
}

.wc-price-card.featured .price-amount { color: var(--lemon-light); }

.wc-price-card .price-period {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.wc-price-card.featured .price-period { color: rgba(255, 253, 231, 0.8); }

.wc-price-card ul {
    text-align: left;
    margin-bottom: 26px;
}

.wc-price-card ul li {
    padding: 8px 0 8px 28px;
    font-size: 14px;
    position: relative;
    border-bottom: 1px dashed rgba(85, 139, 47, 0.2);
}

.wc-price-card.featured ul li {
    border-bottom-color: rgba(253, 216, 53, 0.2);
}

.wc-price-card ul li::before {
    content: "✓";
    position: absolute;
    left: 4px;
    top: 8px;
    width: 18px;
    height: 18px;
    background: var(--matcha-light);
    color: var(--milk-light);
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    font-size: 11px;
    font-weight: bold;
}

.wc-price-card.featured ul li::before { background: var(--lemon-light); color: var(--matcha-deep); }

.price-btn {
    display: inline-block;
    width: 100%;
    padding: 14px;
    background: var(--milk-cream);
    color: var(--matcha-mid);
    border: 2px solid var(--matcha-deep);
    border-radius: 26px;
    font-family: 'ZCOOL KuaiLe', sans-serif;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 2px;
    transition: all 0.2s;
    box-shadow: 0 4px 0 var(--matcha-deep);
}

.wc-price-card.featured .price-btn {
    background: linear-gradient(180deg, var(--lemon-light) 0%, var(--lemon-mid) 100%);
    color: var(--matcha-deep);
    border-color: var(--lemon-deep);
    box-shadow: 0 4px 0 var(--lemon-deep);
}

.price-btn:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--matcha-deep);
}

/* 内容分类标签筛选 */
.wc-filter-bar {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.wc-filter-bar a {
    padding: 8px 22px;
    background: var(--milk-light);
    color: var(--text-body);
    border-radius: 20px;
    font-family: 'ZCOOL KuaiLe', sans-serif;
    font-size: 14px;
    border: 2px solid var(--matcha-mid);
    transition: all 0.2s;
}

.wc-filter-bar a:hover,
.wc-filter-bar a.active {
    background: linear-gradient(90deg, var(--matcha-light), var(--matcha-mid));
    color: var(--milk-light);
    border-color: var(--matcha-deep);
    transform: translateY(-2px);
    box-shadow: 0 4px 0 var(--matcha-deep);
}

/* ===== 页脚 ===== */
.wc-footer {
    background: linear-gradient(180deg, var(--trend-black) 0%, #2C2C2C 100%);
    color: var(--milk-mid);
    padding: 60px 0 24px;
    position: relative;
}

.wc-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(90deg, var(--lemon-light) 0, var(--lemon-light) 20px, var(--matcha-mid) 20px, var(--matcha-mid) 40px);
}

.wc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}

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

.wc-footer-brand p {
    font-size: 13.5px;
    line-height: 1.9;
    opacity: 0.8;
    margin-bottom: 18px;
}

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

.wc-footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(253, 216, 53, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s;
    border: 1px solid rgba(253, 216, 53, 0.25);
}

.wc-footer-social a:hover {
    background: linear-gradient(135deg, var(--lemon-light), var(--lemon-mid));
    transform: translateY(-3px) rotate(8deg);
}

.wc-footer-col h4 {
    font-family: 'ZCOOL KuaiLe', sans-serif;
    color: var(--lemon-light);
    font-size: 17px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.wc-footer-col ul li {
    margin-bottom: 10px;
}

.wc-footer-col ul li a {
    font-size: 13.5px;
    opacity: 0.78;
    transition: all 0.2s;
}

.wc-footer-col ul li a:hover {
    opacity: 1;
    color: var(--lemon-light);
    padding-left: 6px;
}

.wc-footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px dashed rgba(253, 216, 53, 0.2);
}

.footer-decor {
    font-size: 20px;
    letter-spacing: 10px;
    margin-bottom: 12px;
    opacity: 0.6;
}

.wc-footer-bottom p {
    font-size: 12.5px;
    opacity: 0.65;
    line-height: 1.9;
}

/* ===== 响应式 ===== */
@media (max-width: 992px) {
    .wc-hero-title { font-size: 64px; }
    .wc-hero-subtitle { font-size: 26px; }
    .wc-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .wc-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .wc-video-grid { grid-template-columns: repeat(2, 1fr); }
    .wc-content-grid { grid-template-columns: repeat(2, 1fr); }
    .wc-team-grid { grid-template-columns: repeat(2, 1fr); }
    .wc-case-grid { grid-template-columns: 1fr; }
    .wc-news-list { grid-template-columns: 1fr; }
    .wc-contact-grid { grid-template-columns: 1fr; }
    .wc-price-grid { grid-template-columns: 1fr; }
    .wc-price-card.featured { transform: none; }
    .wc-price-card.featured:hover { transform: translateY(-8px); }
    .wc-feature-inner { grid-template-columns: 1fr; gap: 40px; }
    .wc-news-featured { grid-template-columns: 1fr; }
    .wc-footer-grid { grid-template-columns: 1fr 1fr; }
    .wc-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .container { padding: 0 16px; }
    .wc-nav ul { padding: 0 20px; }
    .wc-nav a { padding: 14px 14px; font-size: 14px; }
    .wc-hero { padding: 40px 0 60px; }
    .wc-hero-title { font-size: 46px; letter-spacing: 4px; }
    .wc-hero-subtitle { font-size: 20px; }
    .wc-hero-desc { padding: 0 10px; font-size: 15px; }
    .wc-hero-btns { flex-direction: column; align-items: stretch; }
    .wc-section { padding: 50px 0; }
    .wc-section-title { font-size: 30px; }
    .vine-border { padding: 24px 16px; }
    .wc-stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .wc-cat-grid { grid-template-columns: 1fr 1fr; }
    .wc-video-grid { grid-template-columns: 1fr; }
    .wc-content-grid { grid-template-columns: 1fr; }
    .wc-team-grid { grid-template-columns: 1fr 1fr; }
    .wc-footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .wc-page-banner h1 { font-size: 34px; }
    .tea-btn { padding: 8px 14px; font-size: 13px; }
    .logo-text .brand-name { font-size: 22px; }
    .waicha-cup { width: 46px; height: 54px; }
}
