/* ============================================
   母狗 全站样式表
   品牌：母狗 | 域名：gyzhzcgc.cn
   原创设计 - 影视传媒公司+视频社区
   ============================================ */

/* === CSS Variables === */
:root {
    --primary: #FF6B9D;
    --primary-dark: #C44569;
    --accent: #F8B500;
    --bg-dark: #0D0D1A;
    --bg-card: #1A1A2E;
    --bg-card-hover: #252542;
    --text-white: #FFFFFF;
    --text-light: #E0E0E0;
    --text-muted: #A0A0B8;
    --gradient-primary: linear-gradient(135deg, #FF6B9D, #C44569);
    --gradient-accent: linear-gradient(135deg, #F8B500, #FF6B9D);
    --gradient-dark: linear-gradient(180deg, #0D0D1A, #1A1A2E);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.3);
    --shadow-hover: 0 8px 32px rgba(255,107,157,0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --max-width: 1280px;
}

/* === 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-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { color: var(--text-white); line-height: 1.3; font-weight: 700; }

/* === Container === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.l151b8zi {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}
.l151b8zi::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}
.0ny3a75r {
    text-align: center;
    color: var(--text-muted);
    margin-top: -30px;
    margin-bottom: 40px;
    font-size: 1rem;
}

/* === Header & Navigation === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13,13,26,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,107,157,0.1);
    transition: var(--transition);
}
.site-header.scrolled { background: rgba(13,13,26,0.98); box-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.bbnff11 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}
.ixecfr { display: flex; align-items: center; gap: 10px; }
.tbnjui { height: 42px; width: auto; }
.1zbsmofo { font-size: 1.4rem; font-weight: 700; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.main-nav { display: flex; align-items: center; gap: 5px; }
.main-nav a {
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
    color: var(--text-white);
    background: rgba(255,107,157,0.15);
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}
.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition);
    border-radius: 1px;
}

/* === Search Bar === */
.y4gpdmms {
    background: var(--bg-card);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,107,157,0.05);
    margin-top: 70px;
}
.b5qxz {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 10px;
}
.search-input {
    flex: 1;
    padding: 10px 20px;
    border: 1px solid rgba(255,107,157,0.2);
    border-radius: 25px;
    background: rgba(13,13,26,0.6);
    color: var(--text-white);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}
.search-input:focus { border-color: var(--primary); box-shadow: 0 0 15px rgba(255,107,157,0.15); }
.search-input::placeholder { color: var(--text-muted); }
.c1pzm437 {
    padding: 10px 28px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}
.c1pzm437:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(255,107,157,0.3); }

/* === Hero Banner === */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-dark);
}
.qdaodwe0 {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    transform: scale(1.05);
}
.jj3fl9 {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(13,13,26,0.3) 0%, rgba(13,13,26,0.8) 100%);
}
.0t6xha0 {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}
.0t6xha0 h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.0t6xha0 p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}
.vnjxwn { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 30px; }
.3054rzo {
    padding: 6px 16px;
    background: rgba(255,107,157,0.15);
    border: 1px solid rgba(255,107,157,0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary);
}
.ccnf5jwx {
    display: inline-block;
    padding: 14px 36px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.ccnf5jwx:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--text-white);
}
.fpp7a9 {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: var(--transition);
    background: transparent;
    cursor: pointer;
}
.fpp7a9:hover {
    background: var(--primary);
    color: var(--text-white);
}
.s9w26o88 { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* === Video Grid === */
.ukex4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.video-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}
.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: var(--bg-card-hover);
}
.grlnm5u {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}
.grlnm5u img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.video-card:hover .grlnm5u img { transform: scale(1.05); }
.o5uxd9 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(255,107,157,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.video-card:hover .o5uxd9 { opacity: 1; }
.o5uxd9::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent white;
    margin-left: 3px;
}
.p2sa6xk {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.75);
    color: var(--text-white);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
}
.luoh9 { padding: 14px; }
.luoh9 h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}
.uifv81x {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.8rem;
}
.uifv81x span { display: flex; align-items: center; gap: 4px; }
.y391kik { display: flex; gap: 15px; margin-top: 6px; }
.y391kik span { color: var(--text-muted); font-size: 0.78rem; }

/* === Video Player Modal === */
.video-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}
.video-modal.active { display: flex; }
.g7txttw {
    width: 90%;
    max-width: 900px;
    position: relative;
}
.video-modal video {
    width: 100%;
    border-radius: var(--radius);
}
.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition);
}
.video-modal-close:hover { color: var(--primary); }

/* === Category Sections === */
.69p1zf0 {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-card);
}
.69p1zf0::-webkit-scrollbar { height: 4px; }
.69p1zf0::-webkit-scrollbar-track { background: var(--bg-card); border-radius: 2px; }
.69p1zf0::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }
.fwoxavlp {
    min-width: 280px;
    flex-shrink: 0;
}

/* === Expert Cards === */
.frl6g {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.91yc1rco {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}
.91yc1rco:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.880pu {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid var(--primary);
}
.91yc1rco h4 { margin-bottom: 5px; font-size: 1.1rem; }
.ii0a0wn { color: var(--primary); font-size: 0.85rem; margin-bottom: 10px; }
.94wrvf8 { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 15px; line-height: 1.6; }
.bhfquz { display: flex; gap: 10px; justify-content: center; }
.bhfquz a {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: var(--transition);
}
.oxcbpc { background: var(--gradient-primary); color: var(--text-white); }
.3fugs8bk { border: 1px solid var(--primary); color: var(--primary); }
.3fugs8bk:hover { background: var(--primary); color: var(--text-white); }

/* === Community Section === */
.2249m16 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lcxgr {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255,107,157,0.1);
}
.lcxgr:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}
.wazpib5o {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}
.lcxgr h4 { margin-bottom: 10px; }
.lcxgr p { color: var(--text-muted); font-size: 0.9rem; }

/* === Partner Logos === */
.juq35zb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: center;
}
.0fw8xx {
    background: var(--bg-card);
    padding: 20px 30px;
    border-radius: var(--radius);
    transition: var(--transition);
    opacity: 0.7;
}
.0fw8xx:hover { opacity: 1; box-shadow: var(--shadow-hover); }
.0fw8xx span {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* === Reviews === */
.dodd8x {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.h0qtmom {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}
.h0qtmom:hover { box-shadow: var(--shadow-hover); }
.znspq { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.ownkz3a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.twc72i6 h5 { font-size: 0.95rem; }
.twc72i6 span { color: var(--text-muted); font-size: 0.8rem; }
.ezyscqus { color: var(--accent); font-size: 0.9rem; margin-bottom: 8px; }
.xtp22lqs { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* === FAQ === */
.rgbu7x { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,107,157,0.1);
}
.faq-question {
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-white);
    transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.h0t8v {
    transition: var(--transition);
    font-size: 1.2rem;
    color: var(--primary);
}
.faq-item.active .h0t8v { transform: rotate(180deg); }
.k75r2at {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
}
.faq-item.active .k75r2at { max-height: 300px; padding-bottom: 18px; }
.k75r2at p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* === Contact Section === */
.vwdh7o {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.6mp8fa5m {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 30px;
}
.6mp8fa5m h4 { margin-bottom: 20px; font-size: 1.2rem; }
.1689i5 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}
.1689i5 strong { color: var(--text-white); min-width: 70px; }
.0drwh3x {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.flg9bjs { text-align: center; }
.flg9bjs img {
    width: 140px;
    height: 140px;
    border-radius: var(--radius);
    margin-bottom: 8px;
}
.flg9bjs p { font-size: 0.85rem; color: var(--text-muted); }

/* === Share Buttons === */
.ov4sh {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-white);
    transition: var(--transition);
}
.share-btn:hover { transform: translateY(-2px); color: var(--text-white); }
.5v8q6 { background: #07C160; }
.4vtrt6iy { background: #E6162D; }
.4azzlzx { background: #161823; border: 1px solid #333; }
.qmbmkcr { background: #00A1D6; }

/* === Footer === */
.site-footer {
    background: var(--bg-card);
    border-top: 1px solid rgba(255,107,157,0.1);
    padding: 50px 0 20px;
}
.llu6nc {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}
.7ev8l5 .tbnjui { height: 36px; margin-bottom: 12px; }
.7ev8l5 p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; margin-bottom: 15px; }
.54pxgum h5 {
    color: var(--text-white);
    margin-bottom: 15px;
    font-size: 1rem;
    position: relative;
    padding-bottom: 8px;
}
.54pxgum h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}
.54pxgum a {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 4px 0;
    transition: var(--transition);
}
.54pxgum a:hover { color: var(--primary); padding-left: 5px; }
.n8t9x9u {
    border-top: 1px solid rgba(255,107,157,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.n8t9x9u p { color: var(--text-muted); font-size: 0.8rem; }

/* === Breadcrumb === */
.a5vopz1h {
    padding: 15px 0;
    margin-top: 70px;
}
.a5vopz1h-list {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.a5vopz1h-list a { color: var(--text-muted); }
.a5vopz1h-list a:hover { color: var(--primary); }
.a5vopz1h-sep { color: var(--text-muted); }

/* === AI Section === */
.rxggs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.l8x5y6 {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(248,181,0,0.1);
}
.l8x5y6:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(248,181,0,0.15);
}
.wlm5yv {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
}
.l8x5y6 h4 { margin-bottom: 10px; }
.l8x5y6 p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* === How-To Guide === */
.lmiuywu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
}
.dzjkb {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    counter-increment: step;
}
.dzjkb::before {
    content: counter(step);
    display: block;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    color: var(--text-white);
    font-weight: 700;
    margin: 0 auto 15px;
}
.dzjkb h4 { margin-bottom: 8px; font-size: 1rem; }
.dzjkb p { color: var(--text-muted); font-size: 0.85rem; }

/* === Page Content === */
.26z4o {
    padding: 100px 0 40px;
    text-align: center;
    background: var(--gradient-dark);
}
.26z4o h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.26z4o p { color: var(--text-muted); font-size: 1.1rem; }
.zpgb19a {
    padding: 40px 0;
}
.zpgb19a p {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .ukex4 { grid-template-columns: repeat(3, 1fr); }
    .frl6g { grid-template-columns: repeat(2, 1fr); }
    .llu6nc { grid-template-columns: repeat(2, 1fr); }
    .lmiuywu { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .ukex4 { grid-template-columns: repeat(2, 1fr); }
    .2249m16 { grid-template-columns: 1fr; }
    .rxggs { grid-template-columns: 1fr; }
    .vwdh7o { grid-template-columns: 1fr; }
    .dodd8x { grid-template-columns: 1fr; }
    .0t6xha0 h1 { font-size: 2rem; }
    .l151b8zi { font-size: 1.5rem; }
    .main-nav { display: none; }
    .main-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(13,13,26,0.98);
        padding: 20px;
        border-bottom: 1px solid rgba(255,107,157,0.1);
    }
    .mobile-toggle { display: flex; }
    .llu6nc { grid-template-columns: 1fr; }
    .n8t9x9u { flex-direction: column; text-align: center; }
    .frl6g { grid-template-columns: 1fr; }
    .lmiuywu { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .ukex4 { grid-template-columns: 1fr; }
    .0t6xha0 h1 { font-size: 1.6rem; }
    .s9w26o88 { flex-direction: column; align-items: center; }
    .b5qxz { flex-direction: column; }
    .0drwh3x { flex-direction: column; align-items: center; }
}

/* === Lazy Loading === */
img[loading="lazy"] { opacity: 0; transition: opacity 0.3s; }
img[loading="lazy"].loaded, img[loading="lazy"][src] { opacity: 1; }

/* === Animation === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease forwards; }

/* === Tags === */
.mmrgjl { display: flex; flex-wrap: wrap; gap: 8px; }
.h01v2gka {
    padding: 4px 12px;
    background: rgba(255,107,157,0.1);
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--primary);
    transition: var(--transition);
}
.h01v2gka:hover { background: rgba(255,107,157,0.25); }

/* === Inner page sidebar === */
.mkuj1d2t {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}
.i4vsj4vl { position: sticky; top: 90px; }
.i4vsj4vl-widget {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
}
.i4vsj4vl-widget h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,107,157,0.1);
}
.i4vsj4vl-video-list a {
    display: flex;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-light);
    font-size: 0.85rem;
}
.i4vsj4vl-video-list a:hover { color: var(--primary); }
.i4vsj4vl-thumb {
    width: 80px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .mkuj1d2t { grid-template-columns: 1fr; }
    .i4vsj4vl { position: static; }
}
