.cred-numbers-row { display: flex; justify-content: center; align-items: center; gap: 2rem; }
.letter-space-md { letter-spacing: 2px; }
@media (max-width: 768px) { h1.primary-headline { font-size: 3rem; } }
.intro-para-text { font-size: 1.25rem; max-width:700px;line-height:1.6;color: #5A5D63; max-width: 780px; margin: 0 auto 3rem auto; line-height: 1.6; }
.top-intro-area { position: relative; padding: 70px 0 100px; overflow: hidden; }
.number-block-col { display: flex; flex-direction: column; }

.section-container { padding: 80px 0; }
.section-title { font-size: 2rem; margin-bottom: 0.5rem; }
.section-desc { color: var(--text-muted); font-size: 1.1rem; }

.brand-grid-layout { width: 100%; display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
.brand-logo-item img { display: block; max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; opacity: 0.8; margin: 0 auto; transition: opacity 0.3s ease; }
.brand-logo-item:hover { z-index: 2; border-color: rgba(0,0,0,0.06); box-shadow: 0 12px 30px -6px rgba(0,0,0,0.08); transform: translateY(-4px); }
.brand-logo-item { display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; width: 100%; height: 100px; padding: 16px; box-sizing: border-box; border-radius: 16px; background: #f9efe4; border: 1px solid rgba(0,0,0,0.03); box-shadow: 0 4px 20px -4px rgba(0,0,0,0.02); cursor: pointer; overflow: hidden; transition: all .4s cubic-bezier(.16,1,.3,1); }
.brand-logo-item:hover img { opacity: 1; filter: none; }

#category-coupon li a:hover { border-color: var(--primary-color); background-color: #EFF6FF; color: var(--primary-color); }
#category-coupon ul { margin: 0; padding: 0; list-style-type: none; display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.section-header a { white-space: nowrap; display: inline-flex; align-items: center; text-decoration: none; }
.section-header { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 15px; border-bottom: 1px solid #eee; margin-bottom: 30px; padding-bottom: 15px; }
@media (max-width: 768px) { .section-header { align-items: flex-start; flex-direction: column; gap: 10px; } }
.section-header a:hover { text-decoration: underline; color: #ff0000 !important; }
#category-coupon h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 20px; margin-top: 0; }
#category-coupon li a { display: block; background-color: #fff; color: var(--text-main); font-size: 0.9rem; padding: 10px 16px; border-radius: 6px; border: 1px solid var(--border-color); transition: all 0.2s ease-in-out; }


.faq-hover-card {transition: transform 0.3s ease, box-shadow 0.3s ease;}
.faq-hover-card:hover {transform: translateY(-5px);box-shadow: 0 1rem 3rem rgba(0,0,0,.08) !important;}
.border-dashed {border-top-style: dashed !important;}


/* 热门分类按钮高级感样式 */
.premium-cat-nav {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px dashed rgba(0,0,0,0.08); /* 极弱的虚线分割线，增加精致感 */
}
.cat-label-mini {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #8f959e;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.2rem;
}
.cat-pill-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 22px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4b5563;
    background-color: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap; /* 保证文字不换行 */
}
/* 悬浮时的高级互动效果 */
.cat-pill-btn:hover {
    color: #111827;
    border-color: #111827; /* 边框变深 */
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04); /* 非常克制的阴影 */
}
.cat-pill-btn i {
    margin-right: 6px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* 移动端横向滚动优化 */
@media (max-width: 768px) {
    .cat-scroll-wrapper {
        display: flex;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox 隐藏滚动条 */
    }
    .cat-scroll-wrapper::-webkit-scrollbar {
        display: none; /* Chrome/Safari 隐藏滚动条 */
    }
}