/* ============================================
   糖心vlog - 赛博朋克风格主题样式表
   品牌：糖心vlog | 域名：5299yun.cn
   ============================================ */

/* --- CSS变量定义 --- */
:root {
    --primary: #e91e8c;
    --primary-light: #ff4db8;
    --secondary: #00e5ff;
    --secondary-light: #6effff;
    --accent: #b24aff;
    --dark-bg: #0a0a1a;
    --card-bg: #12122a;
    --card-hover: #1a1a3a;
    --text-primary: #f0f0ff;
    --text-secondary: #a0a0cc;
    --border-glow: rgba(233, 30, 140, 0.4);
    --neon-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
    --pink-shadow: 0 0 15px rgba(233, 30, 140, 0.3);
    --gradient-primary: linear-gradient(135deg, #e91e8c, #b24aff);
    --gradient-secondary: linear-gradient(135deg, #00e5ff, #b24aff);
    --gradient-dark: linear-gradient(180deg, #0a0a1a 0%, #141432 100%);
    --font-main: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    --max-width: 1200px;
    --radius: 12px;
    --transition: all 0.3s ease;
}

/* --- 全局重置 --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-main);
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}
a { color: var(--secondary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary-light); text-shadow: var(--neon-shadow); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.3; font-weight: 700; }

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

/* --- 头部导航 --- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10, 10, 26, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 229, 255, 0.15);
    transition: var(--transition);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: var(--max-width); margin: 0 auto; padding: 0 20px; height: 68px;
}
.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo img { width: 42px; height: 42px; border-radius: 8px; }
.site-logo span {
    font-size: 1.3rem; font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
    padding: 8px 14px; border-radius: 8px; font-size: 0.9rem;
    color: var(--text-secondary); font-weight: 500; white-space: nowrap;
    transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active {
    color: var(--secondary); background: rgba(0, 229, 255, 0.08);
}
.nav-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 1.5rem; cursor: pointer; padding: 8px; }

/* --- 搜索框 --- */
.search-bar {
    background: rgba(18, 18, 42, 0.95);
    border-bottom: 1px solid rgba(178, 74, 255, 0.15);
    padding: 12px 0; margin-top: 68px;
}
.search-bar .container { display: flex; justify-content: center; }
.search-wrap {
    display: flex; align-items: center; gap: 0;
    background: var(--card-bg); border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 30px; overflow: hidden; width: 100%; max-width: 560px;
    transition: var(--transition);
}
.search-wrap:focus-within { border-color: var(--secondary); box-shadow: var(--neon-shadow); }
.search-wrap input {
    flex: 1; background: transparent; border: none; padding: 10px 20px;
    color: var(--text-primary); font-size: 0.95rem; outline: none;
}
.search-wrap input::placeholder { color: var(--text-secondary); }
.search-wrap button {
    background: var(--gradient-primary); border: none; padding: 10px 24px;
    color: #fff; font-size: 0.95rem; cursor: pointer; font-weight: 600;
    transition: var(--transition);
}
.search-wrap button:hover { opacity: 0.85; }

/* --- Hero区域 --- */
.hero-section {
    position: relative; overflow: hidden;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    padding: 80px 0 60px; text-align: center;
}
.hero-section::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,10,26,0.7) 0%, rgba(10,10,26,0.9) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-content h1 {
    font-size: 2.6rem; margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content h1 span { display: inline; }
.hero-content .subtitle {
    font-size: 1.15rem; color: var(--text-secondary);
    margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto;
}
.hero-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 20px; }
.hero-tags span {
    display: inline-block; padding: 6px 16px; border-radius: 20px;
    background: rgba(0, 229, 255, 0.08); border: 1px solid rgba(0, 229, 255, 0.2);
    color: var(--secondary); font-size: 0.85rem; transition: var(--transition);
}
.hero-tags span:hover { background: rgba(0, 229, 255, 0.15); box-shadow: var(--neon-shadow); }

/* --- 面包屑 --- */
.breadcrumb {
    padding: 14px 0; font-size: 0.85rem; color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.breadcrumb a { color: var(--secondary); }
.breadcrumb span { margin: 0 6px; }

/* --- 通用区块 --- */
.section { padding: 50px 0; }
.section-title {
    font-size: 1.6rem; text-align: center; margin-bottom: 12px;
    position: relative; display: inline-block;
}
.section-title::after {
    content: ''; display: block; width: 60px; height: 3px;
    background: var(--gradient-primary); margin: 10px auto 0; border-radius: 2px;
}
.section-header { text-align: center; margin-bottom: 40px; }
.section-desc { color: var(--text-secondary); font-size: 0.95rem; margin-top: 8px; }

/* --- 视频卡片网格 --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.video-card {
    display: block;
    background: var(--card-bg); border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden; transition: var(--transition); cursor: pointer;
    position: relative; color: var(--text-primary);
}
.video-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
    box-shadow: var(--pink-shadow);
    color: var(--text-primary);
    text-shadow: none;
}
.video-thumb {
    position: relative; padding-top: 56.25%; overflow: hidden;
    background: #0d0d20;
}
.video-thumb img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; transition: transform 0.4s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.05); }
.play-icon {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(233, 30, 140, 0.85); display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.play-icon::after {
    content: ''; width: 0; height: 0;
    border-left: 16px solid #fff; border-top: 10px solid transparent; border-bottom: 10px solid transparent;
    margin-left: 3px;
}
.video-card:hover .play-icon { opacity: 1; }
.video-duration {
    position: absolute; bottom: 8px; right: 8px;
    background: rgba(0,0,0,0.75); padding: 2px 8px; border-radius: 4px;
    font-size: 0.75rem; color: #fff;
}
.video-info { padding: 14px 16px; }
.video-info h3 {
    font-size: 0.95rem; font-weight: 600; margin-bottom: 8px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    line-height: 1.4;
}
.video-meta {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.8rem; color: var(--text-secondary);
}
.video-meta span { display: flex; align-items: center; gap: 4px; }
.video-tag {
    display: inline-block; padding: 2px 8px; border-radius: 4px;
    background: rgba(178, 74, 255, 0.12); color: var(--accent);
    font-size: 0.75rem; margin-top: 8px;
}

/* --- 栏目模块 --- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}
.category-card {
    display: block;
    background: var(--card-bg); border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden; transition: var(--transition); text-align: center;
    padding: 30px 20px; color: var(--text-primary);
}
.category-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: var(--neon-shadow);
    color: var(--text-primary);
    text-shadow: none;
}
.category-card .icon {
    font-size: 2.5rem; margin-bottom: 14px; display: block;
}
.category-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.category-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.category-card p { font-size: 0.85rem; color: var(--text-secondary); }

/* --- 专家展示 --- */
.expert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.expert-card {
    background: var(--card-bg); border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 28px 22px; text-align: center; transition: var(--transition);
}
.expert-card:hover { border-color: var(--border-glow); box-shadow: var(--pink-shadow); }
.expert-avatar {
    width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px;
    background: var(--gradient-primary); display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: #fff;
}
.expert-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.expert-card .role { color: var(--accent); font-size: 0.85rem; margin-bottom: 10px; }
.expert-card p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 14px; }
.expert-credentials { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-bottom: 14px; }
.credential-tag {
    display: inline-block; padding: 3px 10px; border-radius: 12px;
    background: rgba(0, 229, 255, 0.08); border: 1px solid rgba(0, 229, 255, 0.2);
    color: var(--secondary); font-size: 0.75rem;
}
.expert-btns { display: flex; gap: 10px; justify-content: center; }
.btn-sm {
    padding: 6px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 600;
    border: 1px solid var(--secondary); color: var(--secondary);
    background: transparent; cursor: pointer; transition: var(--transition);
}
.btn-sm:hover { background: var(--secondary); color: var(--dark-bg); }
.btn-sm.filled { background: var(--gradient-primary); border-color: transparent; color: #fff; }
.btn-sm.filled:hover { opacity: 0.85; }

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--card-bg); border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 12px; overflow: hidden;
}
.faq-question {
    padding: 18px 22px; cursor: pointer; display: flex;
    justify-content: space-between; align-items: center;
    font-weight: 600; font-size: 0.95rem; transition: var(--transition);
}
.faq-question:hover { color: var(--secondary); }
.faq-question .arrow { transition: transform 0.3s ease; font-size: 1.2rem; }
.faq-item.active .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
    padding: 0 22px; color: var(--text-secondary); font-size: 0.9rem; line-height: 1.8;
}
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 18px; }

/* --- 用户评论 --- */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.review-card {
    background: var(--card-bg); border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 24px; transition: var(--transition);
}
.review-card:hover { border-color: rgba(178, 74, 255, 0.3); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--gradient-secondary); display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #fff; font-weight: 700;
}
.review-name { font-weight: 600; font-size: 0.95rem; }
.review-date { font-size: 0.8rem; color: var(--text-secondary); }
.review-stars { color: #ffd700; font-size: 0.85rem; margin-bottom: 8px; letter-spacing: 2px; }
.review-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* --- 合作品牌 --- */
.partner-wall {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
    padding: 20px 0;
}
.partner-item {
    width: 120px; height: 60px; background: var(--card-bg);
    border-radius: 8px; border: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; color: var(--text-secondary); font-weight: 600;
    transition: var(--transition);
}
.partner-item:hover { border-color: var(--secondary); color: var(--secondary); }

/* --- 联系我们 --- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.contact-card {
    background: var(--card-bg); border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 28px; text-align: center;
}
.contact-card .icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.contact-card h4 { font-size: 1rem; margin-bottom: 8px; }
.contact-card p { font-size: 0.85rem; color: var(--text-secondary); }

/* --- 社交分享 --- */
.share-bar {
    display: flex; justify-content: center; gap: 16px; padding: 20px 0;
}
.share-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 18px; border-radius: 20px;
    background: var(--card-bg); border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-secondary); font-size: 0.85rem; cursor: pointer;
    transition: var(--transition);
}
.share-btn:hover { border-color: var(--secondary); color: var(--secondary); }

/* --- How-To指南 --- */
.howto-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px; counter-reset: step;
}
.howto-step {
    background: var(--card-bg); border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 24px; text-align: center; position: relative;
    counter-increment: step;
}
.howto-step::before {
    content: counter(step);
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--gradient-primary); color: #fff;
    font-size: 1.1rem; font-weight: 700; margin: 0 auto 14px;
}
.howto-step h4 { font-size: 0.95rem; margin-bottom: 8px; }
.howto-step p { font-size: 0.85rem; color: var(--text-secondary); }

/* --- 页脚 --- */
.site-footer {
    background: #080818; border-top: 1px solid rgba(0, 229, 255, 0.1);
    padding: 50px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px; margin-bottom: 30px;
}
.footer-col h4 {
    font-size: 1rem; margin-bottom: 16px; color: var(--text-primary);
    position: relative; padding-bottom: 10px;
}
.footer-col h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 30px; height: 2px; background: var(--gradient-primary); border-radius: 1px;
}
.footer-col p, .footer-col a { font-size: 0.85rem; color: var(--text-secondary); display: block; margin-bottom: 8px; }
.footer-col a:hover { color: var(--secondary); }
.footer-qr { display: flex; gap: 20px; margin-top: 10px; }
.footer-qr img { width: 100px; height: 100px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.08); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0; text-align: center;
    font-size: 0.8rem; color: var(--text-secondary);
}
.footer-bottom a { color: var(--secondary); }

/* --- 按钮 --- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 30px; font-size: 0.95rem;
    font-weight: 600; cursor: pointer; transition: var(--transition);
    border: none; text-align: center;
}
.btn-primary { background: var(--gradient-primary); color: #fff; }
.btn-primary:hover { opacity: 0.85; transform: translateY(-2px); box-shadow: var(--pink-shadow); color: #fff; }
.btn-outline {
    background: transparent; color: var(--secondary);
    border: 1px solid var(--secondary);
}
.btn-outline:hover { background: var(--secondary); color: var(--dark-bg); }

/* --- 视频播放页 --- */
.video-player-wrap {
    position: relative; padding-top: 56.25%;
    background: #000; border-radius: var(--radius); overflow: hidden;
    margin-bottom: 24px;
}
.video-player-wrap video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: contain;
}
.video-detail-info { margin-bottom: 30px; }
.video-detail-info h1 { font-size: 1.5rem; margin-bottom: 12px; }
.video-detail-meta {
    display: flex; flex-wrap: wrap; gap: 16px; font-size: 0.85rem;
    color: var(--text-secondary); margin-bottom: 16px;
}
.video-detail-desc {
    background: var(--card-bg); border-radius: var(--radius);
    padding: 20px; font-size: 0.9rem; color: var(--text-secondary);
    line-height: 1.8; border: 1px solid rgba(255,255,255,0.06);
}

/* --- 内页侧边栏 --- */
.page-layout { display: grid; grid-template-columns: 1fr 320px; gap: 30px; }
.sidebar-widget {
    background: var(--card-bg); border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 20px; margin-bottom: 20px;
}
.sidebar-widget h4 { font-size: 1rem; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sidebar-video-item { display: flex; gap: 12px; margin-bottom: 14px; cursor: pointer; }
.sidebar-video-item:hover h5 { color: var(--secondary); }
.sidebar-video-thumb { width: 120px; height: 68px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: #0d0d20; }
.sidebar-video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-video-info h5 { font-size: 0.85rem; font-weight: 600; margin-bottom: 4px; line-height: 1.3; transition: var(--transition); }
.sidebar-video-info span { font-size: 0.75rem; color: var(--text-secondary); }

/* --- 标签云 --- */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a {
    padding: 4px 12px; border-radius: 15px; font-size: 0.8rem;
    background: rgba(178, 74, 255, 0.1); color: var(--accent);
    border: 1px solid rgba(178, 74, 255, 0.15); transition: var(--transition);
}
.tag-cloud a:hover { background: rgba(178, 74, 255, 0.2); color: var(--primary-light); }

/* --- 图片展示区 --- */
.gallery-section { background: rgba(18, 18, 42, 0.5); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}
.gallery-item {
    border-radius: 8px; overflow: hidden; position: relative;
    aspect-ratio: 4/3; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }

/* --- 数据统计 --- */
.stats-bar {
    display: flex; justify-content: center; gap: 40px; padding: 30px 0;
    flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
    font-size: 2rem; font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label { font-size: 0.85rem; color: var(--text-secondary); margin-top: 4px; }

/* --- 懒加载 --- */
.lazy { opacity: 0; transition: opacity 0.5s ease; }
.lazy.loaded { opacity: 1; }

/* --- 隐私/条款页面 --- */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; margin: 30px 0 12px; color: var(--primary-light); }
.legal-content h3 { font-size: 1.1rem; margin: 20px 0 10px; color: var(--secondary); }
.legal-content p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; margin-bottom: 12px; }
.legal-content ul li { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; list-style: disc; margin-bottom: 4px; }

/* --- 响应式 --- */
@media (max-width: 1024px) {
    .page-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .main-nav { display: none; position: fixed; top: 68px; left: 0; right: 0; background: rgba(10,10,26,0.98); flex-direction: column; padding: 20px; gap: 4px; border-bottom: 1px solid rgba(0,229,255,0.15); z-index: 999; }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 12px 16px; width: 100%; }
    .nav-toggle { display: block; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-content .subtitle { font-size: 1rem; }
    .video-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
    .expert-grid { grid-template-columns: 1fr; }
    .review-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-bar { gap: 20px; }
    .stat-num { font-size: 1.5rem; }
    .share-bar { flex-wrap: wrap; }
    .section { padding: 35px 0; }
    .section-title { font-size: 1.3rem; }
}
@media (max-width: 480px) {
    .video-grid { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 1.5rem; }
    .header-inner { height: 56px; }
    .search-bar { margin-top: 56px; }
    .site-logo span { font-size: 1.1rem; }
}

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

/* --- 滚动条 --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: rgba(178, 74, 255, 0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(178, 74, 255, 0.5); }
