/* ============================================
   百人牛牛平台 · 新中式轻奢视觉系统
   主理人：Awwwards 获奖设计师
   风格：暖橙×翡翠 · 层叠卡片 · 东方现代
   ============================================ */

/* 基础重置 */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, sans-serif;
    overflow-x: hidden;
    background: #FFF9F2;
    color: #3D2C1A;
    line-height: 1.6;
}

/* 核心布局 — 居中 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section:nth-child(even) {
    background: #FFF5EB;
}

/* 装饰背景纹理 */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    max-width: 1200px;
    background-image: radial-gradient(circle at 20% 30%, rgba(232, 115, 26, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.section > .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   导航 — 固定顶部 | 暖橙渐变·毛玻璃
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 249, 242, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(232, 115, 26, 0.12);
    box-shadow: 0 2px 24px rgba(232, 115, 26, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.35rem;
    text-decoration: none;
    color: #3D2C1A;
    letter-spacing: 1px;
    position: relative;
}

.logo::after {
    content: '🐂';
    font-size: 1.2rem;
    margin-left: 2px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #E8731A, #F4A261);
    color: #fff;
    box-shadow: 0 4px 12px rgba(232, 115, 26, 0.25);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: #5A4030;
    transition: all 0.25s ease;
    position: relative;
    padding: 4px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #E8731A, #F4A261);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.main-nav a:hover {
    color: #E8731A;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px !important;
    border-radius: 50px !important;
    color: #fff !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #E8731A, #D4600A);
    box-shadow: 0 4px 16px rgba(232, 115, 26, 0.3);
    transition: all 0.3s ease !important;
    letter-spacing: 0.5px;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 115, 26, 0.4) !important;
    color: #fff !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.menu-toggle span {
    width: 26px;
    height: 2.5px;
    background: #3D2C1A;
    border-radius: 3px;
    transition: 0.3s;
}

/* ============================================
   Hero 区域 | 层叠·东方屏风感
   ============================================ */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 72px;
    background: linear-gradient(160deg, #FFF9F2 0%, #FFE8D6 50%, #FFF5EB 100%);
}

.hero::before {
    content: '';
    position: absolute;
    right: -5%;
    top: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 115, 26, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    left: -3%;
    bottom: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 640px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(232, 115, 26, 0.12), rgba(244, 162, 97, 0.12));
    color: #E8731A;
    text-transform: uppercase;
    border: 1px solid rgba(232, 115, 26, 0.15);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #2D1F12;
    letter-spacing: -0.5px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, #E8731A, #F4A261);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    color: #6B5543;
    max-width: 500px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(232, 115, 26, 0.15);
    position: relative;
    transform: perspective(1000px) rotateY(-2deg);
    transition: transform 0.4s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 115, 26, 0.1), transparent 50%);
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   按钮系统
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #E8731A, #D4600A);
    box-shadow: 0 6px 20px rgba(232, 115, 26, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(232, 115, 26, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid #E8731A;
    color: #E8731A;
}

.btn-outline:hover {
    background: rgba(232, 115, 26, 0.06);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 115, 26, 0.12);
}

/* ============================================
   标签 / 标题
   ============================================ */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 16px;
    color: #E8731A;
    text-transform: uppercase;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 2px;
    background: #E8731A;
    border-radius: 2px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #2D1F12;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.section-desc {
    max-width: 620px;
    color: #6B5543;
    margin-bottom: 44px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ============================================
   卡片网格 · 层叠纸牌
   ============================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.category-card {
    border-radius: 16px;
    padding: 32px 28px;
    background: #fff;
    border: 1px solid rgba(232, 115, 26, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #E8731A, #F4A261, #2A9D8F);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(232, 115, 26, 0.12);
    border-color: rgba(232, 115, 26, 0.15);
}

.category-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    background: linear-gradient(135deg, rgba(232, 115, 26, 0.1), rgba(244, 162, 97, 0.1));
    color: #E8731A;
}

.category-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2D1F12;
}

.category-card p {
    font-size: 0.9rem;
    color: #6B5543;
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-link {
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    color: #E8731A;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.card-link::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.card-link:hover {
    gap: 10px;
}

/* ============================================
   特性块 · 左右交错
   ============================================ */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.feature-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(232, 115, 26, 0.1);
    position: relative;
}

.feature-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 115, 26, 0.06), transparent 50%);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-text {
    padding: 20px 0;
}

.feature-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #2D1F12;
}

.feature-text p {
    color: #6B5543;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #4A3828;
}

.feature-list li::before {
    content: '✦';
    font-weight: 400;
    color: #E8731A;
    font-size: 1rem;
}

/* ============================================
   数据条 · 翡翠点缀
   ============================================ */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    padding: 32px 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(42, 157, 143, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #E8731A, #2A9D8F);
    border-radius: 3px 3px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(42, 157, 143, 0.1);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #E8731A, #D4600A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #6B5543;
    margin-top: 8px;
    font-weight: 500;
}

/* ============================================
   内容墙 · 新闻动态
   ============================================ */
.content-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.content-wall-item {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(232, 115, 26, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.content-wall-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(232, 115, 26, 0.1);
    border-color: rgba(232, 115, 26, 0.12);
}

.content-wall-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.content-wall-item:hover img {
    transform: scale(1.03);
}

.content-wall-body {
    padding: 24px 24px 28px;
}

.content-wall-body .tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(232, 115, 26, 0.08);
    color: #E8731A;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.content-wall-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2D1F12;
    margin-bottom: 8px;
    line-height: 1.4;
}

.content-wall-body p {
    font-size: 0.9rem;
    color: #6B5543;
    line-height: 1.6;
    margin-bottom: 12px;
}

.content-wall-body .date {
    font-size: 0.8rem;
    color: #9A8472;
    font-weight: 500;
}

/* ============================================
   FAQ · 手风琴
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(232, 115, 26, 0.08);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    transition: all 0.25s ease;
}

.faq-item:hover {
    border-color: rgba(232, 115, 26, 0.18);
}

.faq-item .faq-question {
    padding: 18px 24px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2D1F12;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.faq-item .faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: #E8731A;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-item .faq-answer {
    padding: 0 24px 20px;
    display: none;
    color: #6B5543;
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open {
    border-color: rgba(232, 115, 26, 0.2);
    box-shadow: 0 4px 16px rgba(232, 115, 26, 0.06);
}

/* ============================================
   CTA 横幅 · 暖橙渐变
   ============================================ */
.cta-banner {
    padding: 64px 40px;
    text-align: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #E8731A, #D4600A, #C04E00);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(232, 115, 26, 0.25);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.cta-banner h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
}

.cta-banner .btn-primary {
    background: #fff;
    color: #E8731A;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.cta-banner .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

/* ============================================
   页脚 · 深暖色
   ============================================ */
.site-footer {
    padding: 60px 0 28px;
    background: #2D1F12;
    color: rgba(255, 249, 242, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand h3 {
    color: #FFF9F2;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    color: #FFF9F2;
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 249, 242, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #F4A261;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 249, 242, 0.08);
    margin-top: 48px;
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 249, 242, 0.4);
}

/* ============================================
   工具类
   ============================================ */
.text-accent {
    color: #E8731A;
}

.text-center {
    text-align: center;
}

.seo-description {
    max-width: 620px;
    margin: 0 auto 48px;
    color: #6B5543;
    line-height: 1.7;
    font-size: 1rem;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

/* ============================================
   响应式设计
   ============================================ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero p {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .hero-image {
        max-width: 80%;
        margin: 0 auto;
        transform: none;
    }

    .feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(255, 249, 242, 0.98);
        backdrop-filter: blur(16px);
        padding: 24px 32px;
        gap: 20px;
        border-bottom: 1px solid rgba(232, 115, 26, 0.1);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    }

    .main-nav.open a {
        font-size: 1.05rem;
        padding: 8px 0;
    }

    .nav-cta {
        align-self: flex-start;
    }

    .hero-image {
        max-width: 100%;
    }

    .cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        justify-content: center;
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-item {
        padding: 20px 16px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .cards-grid,
    .content-wall {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-banner {
        padding: 40px 20px;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }

    .feature-block {
        gap: 24px;
    }

    .feature-text h3 {
        font-size: 1.4rem;
    }
}

/* ============================================
   装饰性角标 · 新中式细节
   ============================================ */
.hero-content::after {
    content: '囍';
    position: absolute;
    right: -40px;
    top: -20px;
    font-size: 8rem;
    color: rgba(232, 115, 26, 0.03);
    font-weight: 900;
    pointer-events: none;
    z-index: -1;
    transform: rotate(12deg);
}

@media (max-width: 768px) {
    .hero-content::after {
        display: none;
    }
}

/* 牛牛吉祥小标记 */
.logo::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #2A9D8F;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
}

/* 卡片网格 · 顶部装饰线 */
.cards-grid .category-card:nth-child(1)::before {
    background: linear-gradient(90deg, #E8731A, #F4A261);
}

.cards-grid .category-card:nth-child(2)::before {
    background: linear-gradient(90deg, #2A9D8F, #3DBCA8);
}

.cards-grid .category-card:nth-child(3)::before {
    background: linear-gradient(90deg, #F4A261, #E8731A);
}

.cards-grid .category-card:nth-child(4)::before {
    background: linear-gradient(90deg, #E8731A, #2A9D8F);
}

/* 选中状态高亮 */
::selection {
    background: rgba(232, 115, 26, 0.2);
    color: #2D1F12;
}

/* 滚动条美化 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #FFF9F2;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #E8731A, #F4A261);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #D4600A;
}