/* ============================================
   糖心vlog - 原创样式表
   品牌色系：糖心粉红 + 深紫 + 暖橙
   893181.cn
   ============================================ */

/* CSS Variables */
:root {
    --primary: #E8456B;
    --primary-light: #FF6B8A;
    --secondary: #2D1B4E;
    --accent: #FF8C42;
    --accent-light: #FFB347;
    --bg-dark: #0F0A1A;
    --bg-card: #1A1230;
    --bg-card-hover: #241845;
    --text-main: #F0E6FF;
    --text-sub: #A89CC8;
    --text-muted: #6B5F8A;
    --border-color: #2E2252;
    --gradient-primary: linear-gradient(135deg, #E8456B 0%, #FF8C42 100%);
    --gradient-dark: linear-gradient(180deg, #0F0A1A 0%, #1A1230 100%);
    --gradient-card: linear-gradient(145deg, #1A1230 0%, #241845 100%);
    --shadow-glow: 0 0 20px rgba(232, 69, 107, 0.3);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

a { color: var(--primary-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-main);
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; color: var(--text-sub); }

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

/* ============ Header & Navigation ============ */
.yr2ao {
    background: rgba(15, 10, 26, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.etjmax {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.h6eih7j {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.h6eih7j img {
    height: 42px;
    width: auto;
    border-radius: 6px;
}

.h6eih7j span {
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

/* Main Navigation */
.qkk9x30 {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

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

.qkk9x30 a {
    color: var(--text-sub);
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    transition: var(--transition);
    position: relative;
}

.qkk9x30 a:hover,
.qkk9x30 a.active {
    color: var(--text-main);
    background: rgba(232, 69, 107, 0.15);
}

.qkk9x30 a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Mobile Menu Toggle */
.sfpwscbo {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

/* Search Bar */
.o9awb2 {
    background: var(--secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.o9awb2 .container {
    display: flex;
    justify-content: center;
}

.hss7388 {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.hss7388 input {
    width: 100%;
    padding: 10px 44px 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    color: var(--text-main);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.hss7388 input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 69, 107, 0.2);
}

.hss7388 input::placeholder {
    color: var(--text-muted);
}

.hss7388 button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.hss7388 button:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* ============ Hero / Banner ============ */
.hwmpn9 {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-bottom: 40px;
}

.mpcoev5 {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.mpcoev5 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.iiahsisd {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-dark) 0%, rgba(15,10,26,0.4) 50%, rgba(15,10,26,0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.iiahsisd h1 {
    font-size: 2.6rem;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.iiahsisd h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.iiahsisd p {
    font-size: 1.1rem;
    color: var(--text-sub);
    max-width: 600px;
}

/* ============ Section Titles ============ */
.kok50z {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.kok50z::before {
    content: '';
    width: 4px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 2px;
    flex-shrink: 0;
}

.kok50z h2 {
    font-size: 1.5rem;
}

.kok50z .c4n7g {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.kok50z .c4n7g:hover {
    color: var(--primary);
}

/* ============ Video Card Grid ============ */
.esqhbw7 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.sm2d832h {
    background: var(--gradient-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

.sm2d832h:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.ypqxx {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.ypqxx img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sm2d832h:hover .ypqxx img {
    transform: scale(1.05);
}

.te9nv2m {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 56px;
    height: 56px;
    background: rgba(232, 69, 107, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(232, 69, 107, 0.5);
}

.te9nv2m::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #fff;
    margin-left: 3px;
}

.sm2d832h:hover .te9nv2m {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gbqhm {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
}

.mqnvvo5s {
    padding: 14px;
}

.mqnvvo5s h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.yl7x0d9 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.yl7x0d9 span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.j9iktsrg {
    display: inline-block;
    background: rgba(232, 69, 107, 0.15);
    color: var(--primary-light);
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 8px;
}

/* ============ Content Sections ============ */
.esoyoaf {
    padding: 30px 0;
}

/* Expert Cards */
.mu4ror8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.pfo62v {
    background: var(--gradient-card);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.pfo62v:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.pfo62v img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 14px;
    border: 3px solid var(--primary);
}

.pfo62v h4 { margin-bottom: 4px; }
.pfo62v .dzr71btd { color: var(--accent); font-size: 0.85rem; margin-bottom: 10px; }
.pfo62v p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px; }

.s34cpy4d {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.r6bxunok {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.vnnuyfe5 {
    background: var(--gradient-primary);
    color: #fff;
}

.uhl7vfgg {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary-light);
}

.vnnuyfe5:hover { box-shadow: var(--shadow-glow); }
.uhl7vfgg:hover { background: rgba(232, 69, 107, 0.15); }

/* FAQ Section */
.b6yqe4b4 {
    max-width: 800px;
    margin: 0 auto 50px;
}

.bu3ety44 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
}

.mqnf1le {
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition);
}

.mqnf1le:hover {
    background: var(--bg-card-hover);
}

.mqnf1le::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--primary);
    transition: var(--transition);
}

.bu3ety44.active .mqnf1le::after {
    content: '-';
}

.t05ngeeu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.bu3ety44.active .t05ngeeu {
    max-height: 300px;
    padding: 0 20px 16px;
}

.t05ngeeu p {
    font-size: 0.9rem;
    color: var(--text-sub);
}

/* Reviews */
.p52cxz {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.wlqgj {
    background: var(--gradient-card);
    border-radius: var(--radius);
    padding: 22px;
    border: 1px solid var(--border-color);
}

.h9x5x {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.nyh1evhs {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.br5mqm05 { font-weight: 600; font-size: 0.95rem; }
.y8ycfnjn { font-size: 0.8rem; color: var(--text-muted); }

.bbcr8 {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.kinsndd {
    font-size: 0.9rem;
    color: var(--text-sub);
    line-height: 1.6;
}

/* Partners */
.ow4znf {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    padding: 30px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.ttmk0 {
    padding: 12px 24px;
    background: var(--bg-card-hover);
    border-radius: var(--radius-sm);
    color: var(--text-sub);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.ttmk0:hover {
    border-color: var(--primary);
    color: var(--text-main);
}

/* Contact Section */
.vkfkm1n {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.y8ky7 {
    background: var(--gradient-card);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.y8ky7 h4 {
    margin-bottom: 14px;
    color: var(--primary-light);
}

.y8ky7 p {
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.y8ky7 img {
    width: 140px;
    height: 140px;
    margin: 10px auto;
    border-radius: var(--radius-sm);
}

/* How-To Guide */
.guwh4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.v2wk7x {
    background: var(--gradient-card);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
}

.ld3xc {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 14px;
}

.v2wk7x h4 { margin-bottom: 8px; }
.v2wk7x p { font-size: 0.85rem; }

/* Social Share */
.wpoean {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.sjjt0 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 0.9rem;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.sjjt0:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.zbqaruh0 { background: #07C160; }
.l2t34ws2 { background: #E6162D; }
.q8rarux { background: #161823; border: 1px solid #333; }
.cbequ4jl { background: #00A1D6; }

/* ============ Footer ============ */
.v1ktibp {
    background: var(--secondary);
    border-top: 1px solid var(--border-color);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.v5nudu {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.ys4nni img {
    height: 40px;
    margin-bottom: 12px;
}

.ys4nni p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.dapyueoe h5 {
    color: var(--text-main);
    margin-bottom: 14px;
    font-size: 1rem;
}

.dapyueoe a {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 4px 0;
}

.dapyueoe a:hover { color: var(--primary-light); }

.dttiz9r5 {
    display: flex;
    gap: 16px;
}

.dttiz9r5 img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-sm);
}

.j7dj3v2b {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.j7dj3v2b p { margin-bottom: 4px; }

/* ============ Breadcrumb ============ */
.breadcrumb {
    padding: 14px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a { color: var(--text-sub); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 6px; }

/* ============ Inner Page ============ */
.yqj9x1f {
    padding: 30px 0 20px;
}

.yqj9x1f h1 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.yqj9x1f p {
    font-size: 1rem;
}

/* Sidebar Recommend */
.bnj34ic {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
}

.mdemcxf4 {
    background: var(--gradient-card);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.mdemcxf4 h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.iiziw {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.iiziw:hover { opacity: 0.8; }

.iiziw img {
    width: 100px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.f0xqm8bk h5 {
    font-size: 0.85rem;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.f0xqm8bk span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Tags */
.ogu79 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ogu79 a {
    padding: 4px 12px;
    background: var(--bg-card-hover);
    border-radius: 16px;
    font-size: 0.8rem;
    color: var(--text-sub);
    border: 1px solid var(--border-color);
}

.ogu79 a:hover {
    border-color: var(--primary);
    color: var(--primary-light);
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
    .esqhbw7 { grid-template-columns: repeat(3, 1fr); }
    .mu4ror8 { grid-template-columns: repeat(2, 1fr); }
    .v5nudu { grid-template-columns: repeat(2, 1fr); }
    .vkfkm1n { grid-template-columns: repeat(2, 1fr); }
    .guwh4 { grid-template-columns: repeat(2, 1fr); }
    .bnj34ic { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .esqhbw7 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .mu4ror8 { grid-template-columns: 1fr; }
    .p52cxz { grid-template-columns: 1fr; }
    .vkfkm1n { grid-template-columns: 1fr; }
    .guwh4 { grid-template-columns: 1fr; }
    .v5nudu { grid-template-columns: 1fr; }

    .qkk9x30 { display: none; }
    .qkk9x30.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(15, 10, 26, 0.98);
        padding: 16px;
        border-bottom: 1px solid var(--border-color);
    }
    .sfpwscbo { display: block; }

    .mpcoev5 { height: 260px; }
    .iiahsisd h1 { font-size: 1.6rem; }
    .iiahsisd { padding: 20px; }

    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .esqhbw7 { grid-template-columns: 1fr; }
    .etjmax { height: 56px; }
    .h6eih7j img { height: 32px; }
    .h6eih7j span { font-size: 1.1rem; }
}

/* ============ Animations ============ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.mm2xk {
    animation: fadeInUp 0.6s ease forwards;
}

/* Lazy load placeholder */
.b9370i {
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Video overlay stats */
.m15k75 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #ddd;
}

/* AI Badge */
.m2zq5a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
}

/* Community Features */
.rfxyh {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 50px;
}

.p8lg2 {
    background: var(--gradient-card);
    border-radius: var(--radius);
    padding: 22px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.p8lg2:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.n9wm8 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.p8lg2 h3.ytp5u { margin-bottom: 6px; font-size: 1rem; border-bottom: none; padding-bottom: 0; }
.p8lg2 p { font-size: 0.85rem; margin-bottom: 0; }

/* MCP Frontend Placeholder */
.zti17f {
    background: var(--bg-card);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.zti17f p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============ Inner Page Article ============ */
.dp5a4 article,
.dp5a4 > p,
.dp5a4 > h2,
.dp5a4 > h3 {
    margin-bottom: 1.2rem;
}

.dp5a4 article h2 {
    font-size: 1.5rem;
    margin: 28px 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.dp5a4 article h3 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: var(--primary-light);
}

.dp5a4 article p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-sub);
    margin-bottom: 1rem;
}

.dp5a4 .esqhbw7 {
    margin-top: 30px;
}

/* Video title h3 in homepage */
.mqnvvo5s .fyec3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.mqnvvo5s .oagctjag {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Page header enhanced */
.yqj9x1f {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.yqj9x1f h1 {
    font-size: 2rem;
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.yqj9x1f p {
    font-size: 1rem;
    color: var(--text-sub);
    max-width: 800px;
}
