/* 每日大赛 mrds ynusl7.cn - 主样式文件 */
/* ===== CSS 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", "Hiragino Sans GB", sans-serif;
    background: #0d0d1a;
    color: #e8e8f0;
    line-height: 1.7;
    overflow-x: hidden;
}
a { color: #c084fc; text-decoration: none; transition: color .25s; }
a:hover { color: #f0abfc; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ===== CSS Variables ===== */
:root {
    --primary: #7c3aed;
    --primary-light: #a855f7;
    --primary-glow: rgba(124,58,237,.35);
    --accent: #ec4899;
    --accent2: #06b6d4;
    --bg-dark: #0d0d1a;
    --bg-card: #13132a;
    --bg-card2: #1a1a35;
    --border: rgba(124,58,237,.3);
    --text: #e8e8f0;
    --text-muted: #9999bb;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,.5);
}

/* ===== Layout ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-sub {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 48px;
    font-size: .95rem;
}
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ===== Header ===== */
#site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(13,13,26,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px; gap: 20px;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-wrap img { width: 40px; height: 40px; border-radius: 8px; }
.logo-text { font-size: 1.3rem; font-weight: 800; background: linear-gradient(135deg,#a855f7,#ec4899); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-sub { font-size: .7rem; color: var(--text-muted); display: block; margin-top: -4px; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
    color: var(--text-muted); font-size: .9rem; padding: 6px 14px;
    border-radius: 20px; transition: all .25s; white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: #fff; background: var(--primary); }

/* Search */
.header-search { display: flex; align-items: center; gap: 8px; }
.search-wrap {
    display: flex; align-items: center;
    background: var(--bg-card2); border: 1px solid var(--border);
    border-radius: 24px; padding: 6px 16px; gap: 8px;
    transition: border-color .25s;
}
.search-wrap:focus-within { border-color: var(--primary-light); }
.search-wrap input {
    background: none; border: none; outline: none;
    color: var(--text); font-size: .88rem; width: 180px;
}
.search-wrap input::placeholder { color: var(--text-muted); }
.search-btn {
    background: none; border: none; cursor: pointer;
    color: var(--text-muted); font-size: 1rem; padding: 0;
    transition: color .25s;
}
.search-btn:hover { color: var(--primary-light); }

/* Search Bar below nav */
.search-bar-row {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}
.search-bar-inner {
    display: flex; align-items: center; gap: 12px;
    max-width: 700px; margin: 0 auto; padding: 0 20px;
}
.search-bar-inner input {
    flex: 1; background: var(--bg-dark); border: 1px solid var(--border);
    border-radius: 24px; padding: 9px 20px; color: var(--text);
    font-size: .9rem; outline: none; transition: border-color .25s;
}
.search-bar-inner input:focus { border-color: var(--primary-light); }
.search-bar-inner button {
    background: linear-gradient(135deg,var(--primary),var(--accent));
    border: none; border-radius: 24px; padding: 9px 24px;
    color: #fff; font-size: .9rem; cursor: pointer; font-weight: 600;
    transition: opacity .25s;
}
.search-bar-inner button:hover { opacity: .85; }
.search-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.search-tags span {
    font-size: .78rem; color: var(--text-muted);
    background: var(--bg-card2); border-radius: 12px;
    padding: 3px 10px; cursor: pointer; transition: all .2s;
}
.search-tags span:hover { color: var(--primary-light); border-color: var(--primary); }

/* Mobile menu toggle */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--text); font-size: 1.4rem; }

/* ===== Hero Banner ===== */
.hero {
    position: relative; overflow: hidden;
    min-height: 520px; display: flex; align-items: center;
    background: linear-gradient(135deg, #0d0d1a 0%, #1a0a2e 50%, #0d1a2e 100%);
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background-image: url('../images/banner_live.jpg');
    background-size: cover; background-position: center;
    opacity: .25;
    filter: blur(2px);
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(13,13,26,.9) 0%, rgba(26,10,46,.7) 60%, rgba(13,26,46,.8) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 80px 0; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(124,58,237,.2); border: 1px solid var(--primary);
    border-radius: 20px; padding: 4px 14px; font-size: .8rem;
    color: var(--primary-light); margin-bottom: 20px;
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900;
    line-height: 1.2; margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #c084fc 50%, #f0abfc 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff; padding: 13px 32px; border-radius: 30px;
    font-weight: 700; font-size: .95rem; border: none; cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px var(--primary-glow);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--primary-glow); color: #fff; }
.btn-outline {
    background: transparent; color: var(--text);
    padding: 12px 28px; border-radius: 30px;
    font-weight: 600; font-size: .95rem;
    border: 1px solid var(--border); cursor: pointer;
    transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--primary-light); color: var(--primary-light); }
.hero-stats { display: flex; gap: 40px; margin-top: 48px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num { font-size: 1.8rem; font-weight: 800; color: var(--primary-light); }
.stat-label { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }

/* ===== Video Cards ===== */
.video-card {
    background: var(--bg-card); border-radius: var(--radius);
    overflow: hidden; border: 1px solid var(--border);
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
}
.video-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(124,58,237,.3); }
.video-thumb {
    position: relative; overflow: hidden;
    aspect-ratio: 16/9; background: var(--bg-card2);
}
.video-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s;
}
.video-card:hover .video-thumb img { transform: scale(1.06); }
.play-btn {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .3s;
    background: rgba(0,0,0,.4);
}
.video-card:hover .play-btn { opacity: 1; }
.play-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(124,58,237,.85);
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 20px rgba(124,58,237,.6);
    transition: transform .2s;
}
.play-icon:hover { transform: scale(1.1); }
.play-icon svg { width: 22px; height: 22px; fill: #fff; margin-left: 3px; }
.video-duration {
    position: absolute; bottom: 8px; right: 8px;
    background: rgba(0,0,0,.75); color: #fff;
    font-size: .72rem; padding: 2px 7px; border-radius: 4px;
}
.video-tag {
    position: absolute; top: 8px; left: 8px;
    background: var(--primary); color: #fff;
    font-size: .7rem; padding: 2px 8px; border-radius: 4px; font-weight: 600;
}
.video-info { padding: 14px; }
.video-title { font-size: .92rem; font-weight: 600; margin-bottom: 8px; line-height: 1.4; color: var(--text); }
.video-meta { display: flex; align-items: center; gap: 12px; font-size: .78rem; color: var(--text-muted); }
.video-meta span { display: flex; align-items: center; gap: 4px; }

/* ===== Feature Cards ===== */
.feature-card {
    background: var(--bg-card); border-radius: var(--radius);
    padding: 28px 24px; border: 1px solid var(--border);
    transition: all .3s; position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0); transition: transform .3s; transform-origin: left;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 16px;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: .87rem; color: var(--text-muted); line-height: 1.6; }

/* ===== Expert Cards ===== */
.expert-card {
    background: var(--bg-card); border-radius: var(--radius);
    overflow: hidden; border: 1px solid var(--border);
    transition: all .3s; text-align: center;
}
.expert-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(124,58,237,.25); border-color: var(--primary); }
.expert-avatar { width: 100%; aspect-ratio: 1/1; overflow: hidden; }
.expert-avatar img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.expert-card:hover .expert-avatar img { transform: scale(1.05); }
.expert-info { padding: 20px 16px; }
.expert-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.expert-role { font-size: .8rem; color: var(--primary-light); margin-bottom: 10px; }
.expert-desc { font-size: .82rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.5; }
.expert-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 14px; }
.tag { font-size: .72rem; background: rgba(124,58,237,.15); border: 1px solid var(--border); color: var(--primary-light); padding: 3px 10px; border-radius: 12px; }
.expert-btns { display: flex; gap: 8px; justify-content: center; }
.btn-sm {
    font-size: .78rem; padding: 6px 14px; border-radius: 16px;
    border: 1px solid var(--primary); color: var(--primary-light);
    background: transparent; cursor: pointer; transition: all .2s;
}
.btn-sm:hover { background: var(--primary); color: #fff; }
.btn-sm.filled { background: var(--primary); color: #fff; }

/* ===== Reviews ===== */
.review-card {
    background: var(--bg-card); border-radius: var(--radius);
    padding: 24px; border: 1px solid var(--border);
    transition: all .3s;
}
.review-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.review-stars { color: #fbbf24; font-size: .9rem; margin-bottom: 10px; }
.review-text { font-size: .88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.review-user { display: flex; align-items: center; gap: 10px; }
.review-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.review-name { font-size: .88rem; font-weight: 600; }
.review-date { font-size: .75rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-item {
    background: var(--bg-card); border-radius: var(--radius);
    border: 1px solid var(--border); overflow: hidden; margin-bottom: 12px;
}
.faq-q {
    padding: 18px 20px; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    font-weight: 600; font-size: .93rem; transition: color .2s;
    user-select: none;
}
.faq-q:hover { color: var(--primary-light); }
.faq-q .arrow { transition: transform .3s; font-size: .8rem; color: var(--text-muted); }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
    max-height: 0; overflow: hidden; transition: max-height .35s ease;
    font-size: .87rem; color: var(--text-muted); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 20px 18px; }

/* ===== Partners ===== */
.partner-logo {
    background: var(--bg-card); border-radius: 10px;
    padding: 20px; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    transition: all .3s; min-height: 80px;
}
.partner-logo:hover { border-color: var(--primary); background: var(--bg-card2); }
.partner-logo span { font-size: .9rem; font-weight: 700; color: var(--text-muted); }

/* ===== Share Buttons ===== */
.share-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.share-btn {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 20px; border-radius: 24px;
    font-size: .85rem; font-weight: 600; cursor: pointer;
    border: none; transition: all .2s;
}
.share-wechat { background: #07c160; color: #fff; }
.share-weibo { background: #e6162d; color: #fff; }
.share-douyin { background: #000; color: #fff; border: 1px solid #333; }
.share-bilibili { background: #00a1d6; color: #fff; }
.share-btn:hover { transform: translateY(-2px); opacity: .9; }

/* ===== Contact / QR ===== */
.contact-card {
    background: var(--bg-card); border-radius: var(--radius);
    padding: 28px; border: 1px solid var(--border);
}
.contact-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: .88rem; }
.contact-icon { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.qr-wrap { text-align: center; }
.qr-wrap img { width: 120px; height: 120px; border-radius: 10px; margin: 0 auto 8px; border: 2px solid var(--border); }
.qr-label { font-size: .78rem; color: var(--text-muted); }

/* ===== How-To Steps ===== */
.step-item { display: flex; gap: 20px; margin-bottom: 28px; }
.step-num {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1rem; color: #fff;
}
.step-content h4 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.step-content p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== Breadcrumb ===== */
.breadcrumb {
    padding: 14px 0; font-size: .82rem; color: var(--text-muted);
    display: flex; align-items: center; gap: 6px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb .sep { color: var(--border); }

/* ===== Footer ===== */
#site-footer {
    background: var(--bg-card); border-top: 1px solid var(--border);
    padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo-wrap { margin-bottom: 14px; }
.footer-brand p { font-size: .85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.social-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--bg-card2); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; color: var(--text-muted); cursor: pointer;
    transition: all .2s;
}
.social-icon:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-col h4 { font-size: .92rem; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: .83rem; color: var(--text-muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--primary-light); }
.footer-qr { display: flex; gap: 16px; }
.footer-bottom {
    border-top: 1px solid var(--border); padding: 20px 0;
    display: flex; align-items: center; justify-content: space-between;
    font-size: .8rem; color: var(--text-muted); flex-wrap: wrap; gap: 10px;
}
.footer-links { display: flex; gap: 16px; }
.footer-links a { color: var(--text-muted); font-size: .8rem; }
.footer-links a:hover { color: var(--primary-light); }

/* ===== Inner Page Hero ===== */
.page-hero {
    background: linear-gradient(135deg, #0d0d1a, #1a0a2e);
    padding: 60px 0 40px; border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: 2rem; font-weight: 800; margin-bottom: 10px; }
.page-hero p { color: var(--text-muted); font-size: .95rem; max-width: 600px; }

/* ===== Tabs ===== */
.tabs { display: flex; gap: 4px; margin-bottom: 32px; flex-wrap: wrap; }
.tab-btn {
    padding: 8px 20px; border-radius: 20px; font-size: .88rem;
    background: var(--bg-card); border: 1px solid var(--border);
    color: var(--text-muted); cursor: pointer; transition: all .2s;
}
.tab-btn.active, .tab-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ===== Pagination ===== */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.page-btn {
    width: 38px; height: 38px; border-radius: 8px;
    background: var(--bg-card); border: 1px solid var(--border);
    color: var(--text-muted); font-size: .88rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.page-btn.active, .page-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ===== Notice Bar ===== */
.notice-bar {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    padding: 10px 0; font-size: .82rem; color: #fff; text-align: center;
}
.notice-bar a { color: #fff; text-decoration: underline; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .main-nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: rgba(13,13,26,.98); padding: 16px; border-bottom: 1px solid var(--border); }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 10px 16px; border-radius: 8px; }
    .menu-toggle { display: block; }
    .header-search { display: none; }
    .hero { min-height: 380px; }
    .hero h1 { font-size: 1.8rem; }
    .hero-stats { gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section { padding: 48px 0; }
    .section-title { font-size: 1.5rem; }
}
@media (max-width: 480px) {
    .hero-btns { flex-direction: column; }
    .btn-primary, .btn-outline { text-align: center; justify-content: center; }
    .share-btns { gap: 8px; }
    .share-btn { padding: 8px 14px; font-size: .8rem; }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp .6s ease forwards; }
.fade-in-delay-1 { animation-delay: .1s; opacity: 0; animation-fill-mode: forwards; animation-name: fadeInUp; animation-duration: .6s; }
.fade-in-delay-2 { animation-delay: .2s; opacity: 0; animation-fill-mode: forwards; animation-name: fadeInUp; animation-duration: .6s; }
.fade-in-delay-3 { animation-delay: .3s; opacity: 0; animation-fill-mode: forwards; animation-name: fadeInUp; animation-duration: .6s; }

/* ===== Gradient Text ===== */
.grad-text { background: linear-gradient(135deg,#a855f7,#ec4899); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== Live Badge ===== */
.live-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: #ef4444; color: #fff; font-size: .7rem; font-weight: 700;
    padding: 2px 8px; border-radius: 4px;
}
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: blink 1s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===== Video Modal ===== */
.modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,.85); align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
    background: var(--bg-card); border-radius: var(--radius);
    padding: 24px; max-width: 700px; width: 90%;
    border: 1px solid var(--border); position: relative;
}
.modal-close {
    position: absolute; top: 12px; right: 16px;
    background: none; border: none; color: var(--text-muted);
    font-size: 1.4rem; cursor: pointer; transition: color .2s;
}
.modal-close:hover { color: var(--accent); }
.modal-video { width: 100%; aspect-ratio: 16/9; background: #000; border-radius: 8px; }

/* ===== Inner page content ===== */
.inner-content { padding: 40px 0 60px; }
.content-block { background: var(--bg-card); border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); margin-bottom: 24px; }
.content-block h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 14px; }
.content-block p { font-size: .9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.content-block ul li { font-size: .88rem; color: var(--text-muted); padding: 4px 0 4px 16px; position: relative; }
.content-block ul li::before { content: '▸'; position: absolute; left: 0; color: var(--primary-light); }
