/* ============================================
   金年会体育 - 游戏解说与视频社区 主样式表
   品牌色系：明亮白底 + 活力橙红 + 科技蓝绿
   ============================================ */

/* CSS Variables - 明亮配色方案 */
:root {
    --primary: #F5F7FA;
    --secondary: #E8553D;
    --accent: #0EA573;
    --bg-dark: #FFFFFF;
    --card-bg: #FFFFFF;
    --card-bg-hover: #F8FAFB;
    --text-main: #1A1A2E;
    --text-sub: #4A5568;
    --text-muted: #8896A6;
    --border-color: #E2E8F0;
    --gradient-primary: linear-gradient(135deg, #E8553D 0%, #FF7B5C 100%);
    --gradient-accent: linear-gradient(135deg, #0EA573 0%, #10C48C 100%);
    --gradient-dark: linear-gradient(180deg, #F5F7FA 0%, #EDF2F7 100%);
    --shadow-card: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 28px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --max-width: 1280px;
    --header-bg: #1A2942;
    --footer-bg: #1A2942;
    --section-alt: #F0F4F8;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: #0C8A60; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* Container */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ============ Header & Navigation ============ */
.s18o9z1 {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(26, 41, 66, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}
.dduvxn {
    display: flex; align-items: center; justify-content: space-between;
    max-width: var(--max-width); margin: 0 auto; padding: 0 20px; height: 68px;
}
.q4nyr4i { display: flex; align-items: center; gap: 10px; }
.q4nyr4i img { height: 42px; width: auto; }
.q4nyr4i span { font-size: 1.3rem; font-weight: 700; color: #FFFFFF; }

.idyv9 { display: flex; align-items: center; gap: 6px; }
.idyv9 a {
    color: rgba(255,255,255,0.8); font-size: 0.95rem; padding: 8px 14px;
    border-radius: var(--radius-sm); transition: var(--transition); white-space: nowrap;
}
.idyv9 a:hover, .idyv9 a.active {
    color: #FFFFFF; background: rgba(14, 165, 115, 0.2);
}
.idyv9 a.active { color: #10C48C; }

.z03su {
    display: none; background: none; border: none; color: #FFFFFF;
    font-size: 1.5rem; cursor: pointer; padding: 8px;
}

/* Search Bar */
.q0rfv-wrap {
    background: #EDF2F7; border-bottom: 1px solid var(--border-color);
    padding: 12px 0; margin-top: 68px;
}
.q0rfv {
    display: flex; max-width: 640px; margin: 0 auto;
    background: #FFFFFF; border-radius: 50px; overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.q0rfv input {
    flex: 1; background: transparent; border: none; padding: 12px 20px;
    color: var(--text-main); font-size: 0.95rem; outline: none;
}
.q0rfv input::placeholder { color: var(--text-muted); }
.q0rfv button {
    background: var(--gradient-accent); border: none; padding: 12px 24px;
    color: #FFFFFF; font-weight: 600; cursor: pointer; transition: var(--transition);
}
.q0rfv button:hover { opacity: 0.9; }

/* ============ Hero Banner ============ */
.kmy8m1 {
    position: relative; min-height: 520px; display: flex; align-items: center;
    background-size: cover; background-position: center; background-repeat: no-repeat;
    overflow: hidden;
}
.kmy8m1::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,41,66,0.88) 0%, rgba(26,41,66,0.65) 50%, rgba(26,41,66,0.88) 100%);
}
.pznlhdhi {
    position: relative; z-index: 2; max-width: 720px; padding: 60px 0;
}
.pznlhdhi h1 {
    font-size: 2.6rem; font-weight: 800; line-height: 1.3; margin-bottom: 18px;
    color: #FFFFFF;
}
.pznlhdhi p { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 28px; line-height: 1.8; }
.thiplwbas { display: flex; flex-wrap: wrap; gap: 10px; }
.thiplwba {
    background: rgba(14, 165, 115, 0.2); color: #10C48C;
    padding: 6px 16px; border-radius: 50px; font-size: 0.85rem;
    border: 1px solid rgba(14, 165, 115, 0.4);
}

/* ============ Section Common ============ */
.section { padding: 70px 0; }
.myg7y { text-align: center; margin-bottom: 48px; }
.myg7y h2 {
    font-size: 2rem; font-weight: 700; margin-bottom: 12px; color: var(--text-main);
}
.myg7y h2 .hl { color: var(--secondary); }
.myg7y p { color: var(--text-sub); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.ftbyyq {
    width: 60px; height: 3px; margin: 16px auto 0;
    background: var(--gradient-primary); border-radius: 2px;
}

/* ============ Video Cards Grid ============ */
.o884xw { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.q4hjbeq5 {
    background: var(--card-bg); border-radius: var(--radius); overflow: hidden;
    transition: var(--transition); border: 1px solid var(--border-color);
    cursor: pointer; box-shadow: var(--shadow-card);
}
.q4hjbeq5:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--secondary); }
.wlao9a {
    position: relative; padding-top: 56.25%; overflow: hidden;
}
.wlao9a img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; transition: transform 0.4s ease;
}
.wlao9a video.yasgu {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
}
.q4hjbeq5:hover .wlao9a img { transform: scale(1.05); }
.uhxjg {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 56px; height: 56px; background: rgba(232, 85, 61, 0.9);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition); z-index: 2;
}
.uhxjg::after {
    content: ''; width: 0; height: 0;
    border-left: 18px solid #fff; border-top: 11px solid transparent; border-bottom: 11px solid transparent;
    margin-left: 4px;
}
.q4hjbeq5:hover .uhxjg { opacity: 1; }
.x1iugk {
    position: absolute; bottom: 8px; right: 8px;
    background: rgba(0,0,0,0.75); color: #fff; padding: 2px 8px;
    border-radius: 4px; font-size: 0.8rem; z-index: 1;
}
.jh26lht { padding: 16px; }
.jh26lht h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; color: var(--text-main); line-height: 1.4; }
.dfapp { display: flex; gap: 16px; color: var(--text-muted); font-size: 0.82rem; }
.dfapp span { display: flex; align-items: center; gap: 4px; }
.c7fma4mx {
    display: inline-block; background: rgba(14, 165, 115, 0.1); color: var(--accent);
    padding: 2px 10px; border-radius: 4px; font-size: 0.75rem; margin-top: 8px;
    font-weight: 500;
}

/* ============ Feature Cards ============ */
.go2vx4sz { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mvxppcs {
    background: var(--card-bg); border-radius: var(--radius); padding: 32px 24px;
    text-align: center; transition: var(--transition); border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}
.mvxppcs:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--secondary); }
.d3dkrb {
    width: 64px; height: 64px; margin: 0 auto 20px;
    background: var(--gradient-primary); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
}
.mvxppcs h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; color: var(--text-main); }
.mvxppcs p { color: var(--text-sub); font-size: 0.9rem; line-height: 1.6; }

/* ============ Media Section (Game Media) ============ */
.a7u6wz { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.jyckgw {
    background: var(--card-bg); border-radius: var(--radius); overflow: hidden;
    display: flex; transition: var(--transition); border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}
.jyckgw:hover { box-shadow: var(--shadow-hover); border-color: var(--accent); }
.jyckgw-img { width: 200px; min-height: 160px; flex-shrink: 0; overflow: hidden; }
.jyckgw-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.jyckgw:hover .jyckgw-img img { transform: scale(1.05); }
.jyckgw-body { padding: 20px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.jyckgw-body h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; color: var(--text-main); }
.jyckgw-body p { color: var(--text-sub); font-size: 0.88rem; line-height: 1.6; }

/* ============ AI Section ============ */
.zdysxf6 { background: var(--section-alt); }
.ju7wk { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.zo1b48d2 { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.zo1b48d2 img { width: 100%; border-radius: var(--radius); }
.f9ism0i h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; color: var(--text-main); }
.f9ism0i p { color: var(--text-sub); margin-bottom: 16px; line-height: 1.8; }
.eg1r7wx { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.wp2qdf {
    display: flex; align-items: center; gap: 12px;
    background: #FFFFFF; padding: 14px 18px; border-radius: var(--radius-sm);
    border: 1px solid var(--border-color); box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.wp2qdf .icon { color: var(--secondary); font-size: 1.2rem; flex-shrink: 0; }
.wp2qdf span { color: var(--text-sub); font-size: 0.92rem; }

/* ============ Community Section ============ */
.lduma6 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.iu74yk {
    background: var(--card-bg); border-radius: var(--radius); padding: 24px; text-align: center;
    transition: var(--transition); border: 1px solid var(--border-color); box-shadow: var(--shadow-card);
}
.iu74yk:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.lv7ii3af { font-size: 2.5rem; margin-bottom: 12px; }
.iu74yk h4 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; color: var(--text-main); }
.iu74yk p { color: var(--text-sub); font-size: 0.85rem; }

/* ============ Expert Section ============ */
.agkkjkl { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.n3doue1 {
    background: var(--card-bg); border-radius: var(--radius); overflow: hidden;
    text-align: center; transition: var(--transition); border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}
.n3doue1:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.lpkib { width: 100%; aspect-ratio: 1; overflow: hidden; }
.lpkib img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.n3doue1:hover .lpkib img { transform: scale(1.05); }
.cel41 { padding: 20px; }
.cel41 h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; color: var(--text-main); }
.cel41 .role { color: var(--secondary); font-size: 0.85rem; margin-bottom: 8px; }
.cel41 p { color: var(--text-sub); font-size: 0.82rem; line-height: 1.5; }
.eg06i { display: flex; justify-content: center; gap: 10px; margin-top: 12px; }
.eg06i a {
    padding: 6px 14px; border-radius: 50px; font-size: 0.8rem;
    border: 1px solid var(--accent); color: var(--accent); transition: var(--transition);
}
.eg06i a:hover { background: var(--accent); color: #FFFFFF; }

/* ============ Reviews Section ============ */
.f3pwbula { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.p97hmwq {
    background: var(--card-bg); border-radius: var(--radius); padding: 28px;
    border: 1px solid var(--border-color); transition: var(--transition);
    box-shadow: var(--shadow-card);
}
.p97hmwq:hover { border-color: var(--secondary); box-shadow: var(--shadow-hover); }
.z5hfy { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.t6qj5qm {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--gradient-primary); display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 1.1rem;
}
.r241ms7 { font-weight: 600; color: var(--text-main); }
.cdgfgx { font-size: 0.8rem; color: var(--text-muted); }
.pac9ejj { color: #FFB800; margin-bottom: 10px; font-size: 0.9rem; }
.wx9jc44 { color: var(--text-sub); font-size: 0.92rem; line-height: 1.7; }

/* ============ FAQ Section ============ */
.rzg5bq { max-width: 800px; margin: 0 auto; }
.y7b0j {
    background: var(--card-bg); border-radius: var(--radius-sm); margin-bottom: 12px;
    border: 1px solid var(--border-color); overflow: hidden; box-shadow: var(--shadow-card);
}
.gaj59 {
    padding: 18px 24px; cursor: pointer; display: flex; justify-content: space-between;
    align-items: center; font-weight: 600; color: var(--text-main); transition: var(--transition);
}
.gaj59:hover { color: var(--secondary); }
.gaj59 .arrow { transition: transform 0.3s; color: var(--secondary); }
.y7b0j.active .gaj59 .arrow { transform: rotate(180deg); }
.c4wqq {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
    padding: 0 24px; color: var(--text-sub); line-height: 1.7; font-size: 0.92rem;
}
.y7b0j.active .c4wqq { max-height: 300px; padding-bottom: 18px; }

/* ============ Contact Section ============ */
.dott0r { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.womh5 {
    background: var(--card-bg); border-radius: var(--radius); padding: 28px; text-align: center;
    border: 1px solid var(--border-color); box-shadow: var(--shadow-card);
}
.womh5 h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 12px; color: var(--text-main); }
.womh5 p { color: var(--text-sub); font-size: 0.9rem; line-height: 1.6; }
.womh5 img { max-width: 160px; margin: 12px auto; border-radius: var(--radius-sm); }

/* ============ Cooperation Section ============ */
.wn0jfys { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 32px; }
.wn0jfy {
    text-align: center; padding: 24px 16px;
    background: var(--card-bg); border-radius: var(--radius); border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}
.wn0jfy-num {
    width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 14px;
    background: var(--gradient-primary); display: flex; align-items: center; justify-content: center;
    color: #FFFFFF; font-weight: 700; font-size: 1.2rem;
}
.wn0jfy h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; color: var(--text-main); }
.wn0jfy p { color: var(--text-sub); font-size: 0.82rem; }

/* ============ Share Section ============ */
.mwgizoh { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.u7hijz {
    display: flex; align-items: center; gap: 8px; padding: 10px 22px;
    border-radius: 50px; font-size: 0.9rem; font-weight: 500;
    transition: var(--transition); border: 1px solid var(--border-color);
    color: var(--text-main); background: var(--card-bg); box-shadow: var(--shadow-card);
}
.u7hijz:hover { transform: translateY(-2px); border-color: var(--secondary); color: var(--secondary); box-shadow: var(--shadow-hover); }

/* ============ Footer ============ */
.dkbpq {
    background: var(--footer-bg); border-top: 3px solid var(--secondary);
    padding: 48px 0 0;
}
.w0eiu01 { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.s5qghx1u .q4nyr4i { margin-bottom: 14px; }
.s5qghx1u p { color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.7; }
.ykaaw08 h4 { font-size: 1rem; font-weight: 600; margin-bottom: 16px; color: #FFFFFF; }
.ykaaw08 a { display: block; color: rgba(255,255,255,0.65); font-size: 0.88rem; padding: 4px 0; transition: var(--transition); }
.ykaaw08 a:hover { color: #10C48C; }
.k1a45 { display: flex; gap: 16px; margin-top: 16px; }
.k1a45 img { width: 100px; border-radius: var(--radius-sm); }
.foddf {
    border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0;
    text-align: center; color: rgba(255,255,255,0.5); font-size: 0.82rem;
}

/* ============ Breadcrumb ============ */
.ot8f0nyg {
    padding: 14px 0; margin-top: 68px;
    background: var(--section-alt); border-bottom: 1px solid var(--border-color);
}
.ot8f0nyg-list { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; }
.ot8f0nyg-list a { color: var(--text-sub); }
.ot8f0nyg-list a:hover { color: var(--secondary); }
.ot8f0nyg-list span { color: var(--text-muted); }
.ot8f0nyg-list .current { color: var(--text-main); font-weight: 500; }

/* ============ Page Header ============ */
.mbpygdyv {
    padding: 48px 0; text-align: center;
    background: linear-gradient(135deg, #1A2942 0%, #2D4A6F 100%);
    color: #FFFFFF;
}
.mbpygdyv h1 { font-size: 2.2rem; font-weight: 700; margin-bottom: 12px; color: #FFFFFF; }
.mbpygdyv p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }

/* ============ Content Page ============ */
.lvffuxx { padding: 48px 0; }
.lmvinmq { max-width: 800px; margin: 0 auto; }
.lmvinmq h2 { font-size: 1.5rem; font-weight: 700; margin: 32px 0 16px; color: var(--text-main); }
.lmvinmq h3 { font-size: 1.2rem; font-weight: 600; margin: 24px 0 12px; color: var(--text-main); }
.lmvinmq p { color: var(--text-sub); margin-bottom: 16px; line-height: 1.8; }
.lmvinmq ul { margin-bottom: 16px; padding-left: 20px; }
.lmvinmq ul li { color: var(--text-sub); margin-bottom: 8px; position: relative; padding-left: 16px; }
.lmvinmq ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: var(--secondary); border-radius: 50%; }

/* ============ Button Styles ============ */
.btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px;
    border-radius: 50px; font-size: 0.95rem; font-weight: 600;
    transition: var(--transition); cursor: pointer; border: none;
}
.btn-primary { background: var(--gradient-primary); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(232,85,61,0.4); color: #fff; }
.btn-accent { background: var(--gradient-accent); color: #FFFFFF; }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(14,165,115,0.4); color: #FFFFFF; }
.btn-outline {
    background: transparent; color: var(--secondary); border: 1px solid var(--secondary);
}
.btn-outline:hover { background: var(--secondary); color: #FFFFFF; }

/* ============ Section Alt Background ============ */
.s2q92c1 { background: var(--section-alt); }

/* ============ EEAT Notice ============ */
.ygqpqmo {
    background: #FFF8F0; border: 1px solid #F0D8C0; border-radius: var(--radius-sm);
    padding: 16px 20px; margin-top: 24px; font-size: 0.88rem; color: #7A5C3A; line-height: 1.6;
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
    .o884xw { grid-template-columns: repeat(2, 1fr); }
    .go2vx4sz { grid-template-columns: repeat(2, 1fr); }
    .agkkjkl { grid-template-columns: repeat(2, 1fr); }
    .lduma6 { grid-template-columns: repeat(2, 1fr); }
    .w0eiu01 { grid-template-columns: 1fr 1fr; gap: 30px; }
    .ju7wk { grid-template-columns: 1fr; }
    .wn0jfys { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .idyv9 { 
        display: none; position: fixed; top: 68px; left: 0; right: 0;
        background: rgba(26, 41, 66, 0.98); flex-direction: column;
        padding: 20px; gap: 4px; border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .idyv9.active { display: flex; }
    .idyv9 a { padding: 12px 16px; width: 100%; }
    .z03su { display: block; }
    .pznlhdhi h1 { font-size: 1.8rem; }
    .kmy8m1 { min-height: 400px; }
    .section { padding: 48px 0; }
    .myg7y h2 { font-size: 1.5rem; }
    .o884xw { grid-template-columns: 1fr; }
    .go2vx4sz { grid-template-columns: 1fr; }
    .a7u6wz { grid-template-columns: 1fr; }
    .jyckgw { flex-direction: column; }
    .jyckgw-img { width: 100%; min-height: 180px; }
    .agkkjkl { grid-template-columns: repeat(2, 1fr); }
    .lduma6 { grid-template-columns: repeat(2, 1fr); }
    .f3pwbula { grid-template-columns: 1fr; }
    .dott0r { grid-template-columns: 1fr; }
    .w0eiu01 { grid-template-columns: 1fr; gap: 24px; }
    .wn0jfys { grid-template-columns: 1fr; }
    .q0rfv { margin: 0 16px; }
}

@media (max-width: 480px) {
    .pznlhdhi h1 { font-size: 1.5rem; }
    .agkkjkl { grid-template-columns: 1fr; }
    .lduma6 { grid-template-columns: 1fr; }
}

/* ============ Lazy Load ============ */
img[data-src] { opacity: 0; transition: opacity 0.3s; }
img[data-src].loaded { opacity: 1; }

/* ============ Animations ============ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============ MCP Widget ============ */
.ikunz {
    background: var(--card-bg); border-radius: var(--radius); padding: 24px;
    border: 1px solid var(--border-color); margin-top: 24px; box-shadow: var(--shadow-card);
}
.ikunz h4 { font-size: 1rem; font-weight: 600; margin-bottom: 12px; color: var(--secondary); }
.ikunz .fb3imj9f { display: flex; align-items: center; gap: 8px; color: var(--text-sub); font-size: 0.88rem; }
.ikunz .cjne8v { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ============ Video Loading Animation ============ */
.wm6zqxmo {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3); display: flex; align-items: center;
    justify-content: center; z-index: 3;
}
.dasvo {
    width: 40px; height: 40px; border: 3px solid rgba(255,255,255,0.2);
    border-top-color: var(--secondary); border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ Article Content ============ */
.idourx { max-width: 860px; margin: 0 auto; }
.idourx h1 { color: var(--text-main); margin-bottom: 16px; }
.idourx h2 { font-size: 1.4rem; font-weight: 600; margin: 28px 0 14px; color: var(--text-main); border-left: 3px solid var(--secondary); padding-left: 14px; }
.idourx p { color: var(--text-sub); margin-bottom: 16px; line-height: 1.8; font-size: 0.95rem; }

/* ============ Breadcrumb (no search bar pages) ============ */
.ot8f0nyg + .section { margin-top: 0; }

/* ============ Reviews Grid 3-col on large screens ============ */
@media (min-width: 1025px) {
    .f3pwbula { grid-template-columns: repeat(3, 1fr); }
}
