/* =============================================
   羞羞视频 · 私密视界 — 设计系统
   "Soft Petal / Silk Whisper" 花瓣丝绸美学
   ============================================= */

:root {
  --cream: #FAF6F1;
  --blush: #FFF0EB;
  --blush-deep: #FFE3DC;
  --rose: #FF6B61;
  --rose-deep: #ED5A50;
  --rose-soft: #FFD9D4;
  --lavender: #F0E6F8;
  --lavender-deep: #7A5C9E;
  --lavender-soft: #DECBEE;
  --ink: #3B3735;
  --ink-soft: #8B8380;
  --white: #FFFFFF;
  
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 8px 32px rgba(255, 107, 97, 0.08);
  --shadow-hover: 0 16px 48px rgba(255, 107, 97, 0.14);
  --card-border: 1px solid rgba(255, 107, 97, 0.08);
}

/* ============ 基础重置 ============ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  overflow-x: hidden;
  background-color: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}

::selection {
  background: var(--rose);
  color: var(--white);
}

/* ============ 核心布局 — 居中 ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.section {
  padding: 88px 0;
  position: relative;
}

.section:nth-child(even) {
  background: linear-gradient(135deg, var(--blush) 0%, var(--lavender) 100%);
}

/* ============ 导航 — 固定顶部 ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 250, 247, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 214, 207, 0.4);
  transition: box-shadow 0.3s ease;
}

.site-header:hover {
  box-shadow: 0 4px 24px rgba(255, 107, 97, 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.28rem;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -0.02em;
  position: relative;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 60%, var(--lavender-deep) 100%);
  color: var(--white);
  font-size: 0.85rem;
  box-shadow: 0 4px 16px rgba(255, 107, 97, 0.3);
  position: relative;
  overflow: hidden;
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.25s ease;
  position: relative;
  padding: 6px 2px;
}

.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--rose), var(--lavender-deep));
  transition: width 0.3s ease;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--rose-deep);
}

.main-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 26px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(255, 107, 97, 0.25);
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 97, 0.35);
  color: #fff !important;
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 107, 97, 0.2);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  border-color: var(--rose);
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}

/* ============ 首页Hero ============ */
.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: 
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255, 107, 97, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(122, 92, 158, 0.08) 0%, transparent 70%),
    var(--cream);
}

/* 装饰漂浮圆球 */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 107, 97, 0.12), rgba(212, 184, 240, 0.12));
  animation: float 12s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 184, 240, 0.14), rgba(255, 233, 227, 0.18));
  animation: float 16s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-16px, 12px) scale(1.05); }
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--blush), var(--lavender));
  color: var(--rose-deep);
  border: 1px solid rgba(255, 107, 97, 0.15);
}

.hero-eyebrow::before {
  content: '●';
  font-size: 0.5rem;
  color: var(--rose);
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 22px;
  text-shadow: 0 2px 24px rgba(255, 107, 97, 0.06);
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--rose), var(--lavender-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.12rem;
  opacity: 0.72;
  max-width: 540px;
  margin-bottom: 34px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.hero-buttons {
  display: flex;
  gap: 14px;
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(255, 107, 97, 0.12);
  position: relative;
  transform: rotate(2deg);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============ 按钮 ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(255, 107, 97, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255, 107, 97, 0.4);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 107, 97, 0.4);
  color: var(--rose-deep);
}

.btn-outline:hover {
  border-color: var(--rose);
  background: rgba(255, 107, 97, 0.06);
  transform: translateY(-3px);
}

/* ============ 标签/标题 ============ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--rose-deep);
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--rose), var(--lavender-deep));
}

.section-title {
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ink);
  line-height: 1.3;
}

.section-desc {
  max-width: 600px;
  opacity: 0.72;
  margin-bottom: 44px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.text-accent {
  color: var(--rose-deep);
  background: linear-gradient(120deg, var(--rose), var(--lavender-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============ 卡片网格 ============ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.category-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  background: var(--white);
  border: var(--card-border);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--lavender-deep));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 107, 97, 0.15);
}

.category-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--blush), var(--lavender));
  position: relative;
}

.card-icon::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.6);
}

.category-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.category-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 14px;
}

.card-link {
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--rose-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.card-link:hover {
  gap: 10px;
  color: var(--rose);
}

/* ============ 特性块 ============ */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 48px rgba(122, 92, 158, 0.12);
  transform: rotate(-1.5deg);
}

.feature-image::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: calc(var(--radius-lg) - 16px);
  pointer-events: none;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text {
  position: relative;
}

.feature-text .section-label {
  margin-bottom: 14px;
}

.feature-text .section-title {
  margin-bottom: 18px;
}

.feature-text p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  margin-top: 12px;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ink);
}

.feature-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--lavender-deep));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============ 数据条 ============ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: var(--card-border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--rose), var(--lavender-deep));
}

.stat-item:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 60%, var(--lavender-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.68;
  color: var(--ink-soft);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* ============ 内容墙 ============ */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.content-wall-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: var(--card-border);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-wall-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 107, 97, 0.12);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.content-wall-item:hover img {
  transform: scale(1.04);
}

.content-wall-body {
  padding: 22px 22px 26px;
}

.content-wall-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.content-wall-body p {
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 12px;
}

.content-wall-item .card-link {
  font-size: 0.82rem;
}

/* 视频播放标签装饰 */
.content-wall-item::after {
  content: '▶';
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--rose-deep);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.content-wall-item:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: var(--card-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 107, 97, 0.25);
}

.faq-item.open {
  border-color: rgba(255, 107, 97, 0.3);
  box-shadow: var(--shadow-soft);
}

.faq-item .faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  transition: color 0.3s ease;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--rose);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  display: none;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.92rem;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ CTA横幅 ============ */
.cta-banner {
  padding: 64px 32px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 50%, var(--lavender-deep) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(255, 107, 97, 0.24);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  animation: float 10s ease-in-out infinite;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  animation: float 14s ease-in-out infinite reverse;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  line-height: 1.7;
  font-size: 0.95rem;
}

.cta-banner .btn-primary {
  background: var(--white);
  color: var(--rose-deep);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.cta-banner .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* ============ 页脚 ============ */
.site-footer {
  padding: 64px 0 28px;
  background: linear-gradient(180deg, var(--blush), var(--lavender));
  position: relative;
}

.site-footer .container {
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--ink);
  letter-spacing: 0.03em;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-col ul a:hover {
  color: var(--rose-deep);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 107, 97, 0.1);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ============ 工具类 ============ */
.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.72;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.95rem;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Hero 内页变体 */
.hero .text-center h1 {
  font-size: 2.6rem;
}

/* ============ 响应式 ============ */
@media (max-width: 768px) {
  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  
  .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, 250, 247, 0.98);
    backdrop-filter: blur(18px);
    padding: 24px 28px;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 107, 97, 0.15);
    box-shadow: 0 16px 32px rgba(0,0,0,0.06);
    border-radius: 0 0 24px 24px;
  }
  
  .hero {
    min-height: 60vh;
    padding-top: 88px;
  }
  
  .hero h1 {
    font-size: 2.1rem;
  }
  
  .cta-banner {
    padding: 48px 24px;
  }
  
  .cta-banner h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
}

/* ============ 附加装饰 ============ */

/* 给标题添加底部装饰线 */
.section-title:after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--rose), var(--lavender-deep));
  margin-top: 14px;
}

.text-center .section-title:after {
  margin-left: auto;
  margin-right: auto;
}

/* 主CTA区域的容器间距 */
.section .cta-banner {
  position: relative;
  z-index: 2;
}

/* 页脚 logo 图标 */
.site-footer .logo-icon {
  width: 32px;
  height: 32px;
  font-size: 0.75rem;
}

/* 卡片内链接箭头动画 */
.card-link::after {
  content: '→';
  transition: transform 0.25s ease;
}

.card-link:hover::after {
  transform: translateX(4px);
}

/* 在hero内容上创建轻微3D效果 */
.hero-content {
  animation: contentRise 0.8s ease both;
}

@keyframes contentRise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 自定义滚动条 —— 柔和质感 */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--rose-soft), var(--lavender-soft));
  border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--rose), var(--lavender-deep));
}