/* ============================================
   糖心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 ============ */
.mx1u3rze {
    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;
}

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

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

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

.prlju0g8 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 */
.m08z8l {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

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

.m08z8l 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;
}

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

.m08z8l 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 */
.u2zi0 {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

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

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

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

.qzyxuv 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);
}

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

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

.qzyxuv 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);
}

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

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

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

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

.o03pq {
    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;
}

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

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

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

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

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

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

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

.zp4748hh .hh2600iz:hover {
    color: var(--primary);
}

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

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

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

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

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

.wv77a:hover .fixizln8 img {
    transform: scale(1.05);
}

.i8i4j31 {
    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);
}

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

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

.wptd9g6 {
    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;
}

.bmhel {
    padding: 14px;
}

.bmhel 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;
}

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

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

.wj17kyj {
    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 ============ */
.wna4lw {
    padding: 30px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c45k5.active .fq4q26::after {
    content: '-';
}

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

.c45k5.active .dsjnm0t {
    max-height: 300px;
    padding: 0 20px 16px;
}

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

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

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

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

.oajrf19 {
    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;
}

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

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

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

/* Partners */
.h0vv2 {
    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);
}

.j5i5h {
    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);
}

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

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

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

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

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

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

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

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

.lznvbz {
    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;
}

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

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

.x98ms94 {
    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);
}

.x98ms94:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.vblss { background: #07C160; }
.bdgbku { background: #E6162D; }
.lswfas { background: #161823; border: 1px solid #333; }
.znob4 { background: #00A1D6; }

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

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

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

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

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

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

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

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

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

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

.segx1 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 ============ */
.ricmnl {
    padding: 30px 0 20px;
}

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

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

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

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

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

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

.qribss4z:hover { opacity: 0.8; }

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

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

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

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

.xldyz 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);
}

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

/* ============ Responsive ============ */
@media (max-width: 1024px) {
    .jnjnb4c1 { grid-template-columns: repeat(3, 1fr); }
    .elpw9 { grid-template-columns: repeat(2, 1fr); }
    .idvf2t3 { grid-template-columns: repeat(2, 1fr); }
    .hkxcd6f { grid-template-columns: repeat(2, 1fr); }
    .ady7g { grid-template-columns: repeat(2, 1fr); }
    .qhj3fph { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .jnjnb4c1 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .elpw9 { grid-template-columns: 1fr; }
    .bejlo { grid-template-columns: 1fr; }
    .hkxcd6f { grid-template-columns: 1fr; }
    .ady7g { grid-template-columns: 1fr; }
    .idvf2t3 { grid-template-columns: 1fr; }

    .m08z8l { display: none; }
    .m08z8l.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);
    }
    .u2zi0 { display: block; }

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

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

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

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

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

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

/* Video overlay stats */
.mipjp8qy {
    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 */
.fghamqpd {
    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 */
.xxkewc5t {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 50px;
}

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

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

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

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

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

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

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

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

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

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

.dtgcfyin .jnjnb4c1 {
    margin-top: 30px;
}

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

.bmhel .xoydp {
    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 */
.ricmnl {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

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

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