/* roulang page: index */
:root {
  --color-primary: #2563EB;
  --color-primary-dark: #1D4ED8;
  --color-accent: #F97316;
  --color-accent-hover: #FB923C;
  --color-page-bg: #F6F8FC;
  --color-card-bg: #FFFFFF;
  --color-deep-bg: #0B1F3F;
  --color-heading: #0B1F3F;
  --color-body: #46536D;
  --color-muted: #8A97B0;
  --color-line: #E3E9F2;
  --radius: 16px;
  --shadow-card: 0 2px 12px rgba(15, 42, 90, 0.06), 0 1px 3px rgba(15, 42, 90, 0.05);
  --shadow-card-hover: 0 8px 24px rgba(37, 99, 235, 0.12);
  --transition: 0.25s ease;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  background: var(--color-page-bg);
  color: var(--color-body);
  line-height: 1.75;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}
input, textarea {
  font-family: inherit;
  font-size: 14px;
}
ul, ol {
  list-style: none;
}
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}
.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.section-pad {
  padding: 88px 0;
}
.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.heading-bar {
  display: inline-block;
  width: 4px;
  height: 26px;
  background: var(--color-primary);
  border-radius: 99px;
}
.section-heading h2 {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: -0.01em;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-line);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 18px rgba(15, 42, 90, 0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #3B82F6 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.brand-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  display: inline-block;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-body);
  border-radius: 9999px;
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover {
  color: var(--color-primary);
  background: rgba(37, 99, 235, 0.08);
}
.nav-link.active {
  color: var(--color-primary);
  background: rgba(37, 99, 235, 0.1);
  font-weight: 600;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  width: 18px;
  height: 3px;
  border-radius: 99px;
  background: var(--color-primary);
}
.header-cta-area {
  display: flex;
  align-items: center;
  gap: 20px;
}
.countdown-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F0F4FA;
  border: 1px solid var(--color-line);
  border-radius: 9999px;
  padding: 5px 14px 5px 12px;
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 500;
}
.countdown-chip .chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse 1.6s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.countdown-chip .countdown-time {
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.03em;
  font-variant-numeric: tabular-nums;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 9999px;
  padding: 10px 26px;
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}
.btn-primary.btn-sm {
  padding: 7px 20px;
  font-size: 14px;
}
.btn-primary.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  background: #fff;
}
.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-heading);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-drawer {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--color-line);
  background: #fff;
}
.mobile-drawer.open {
  display: flex;
}
.drawer-link {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-body);
  transition: all var(--transition);
}
.drawer-link:hover,
.drawer-link.active {
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-primary);
}
.drawer-link.active {
  font-weight: 600;
}
.drawer-link.btn-primary {
  margin-top: 8px;
  color: #fff;
  background: var(--color-primary);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: flex;
  align-items: center;
  background-image: url('/assets/images/backpic/back-1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11, 31, 63, 0.82) 0%, rgba(11, 31, 63, 0.45) 55%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-top: 32px;
  padding-bottom: 32px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  border-radius: 9999px;
  padding: 5px 14px;
  backdrop-filter: blur(4px);
}
.hero-badge-live {
  border-color: rgba(249, 115, 22, 0.35);
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  display: inline-block;
  animation: pulse 1.4s ease infinite;
}
.hero h1 {
  font-size: 46px;
  line-height: 1.22;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 30px;
  max-width: 520px;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--color-heading);
  border-radius: 9999px;
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  background: #F6F8FC;
}
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  border-radius: 9999px;
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 500;
  transition: all var(--transition);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Match Horizontal Scroll */
.match-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.match-scroll::-webkit-scrollbar {
  display: none;
}
.match-card {
  flex: 0 0 272px;
  max-width: 272px;
  background: var(--color-card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-line);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.match-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.match-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e8eef6;
}
.match-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.match-card:hover .match-cover img {
  transform: scale(1.05);
}
.cover-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-block;
  background: rgba(11, 31, 63, 0.75);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 9999px;
  padding: 3px 10px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.02em;
}
.cover-time {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: inline-block;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 11px;
  border-radius: 6px;
  padding: 2px 8px;
  font-variant-numeric: tabular-nums;
}
.live-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(239, 68, 68, 0.9);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 9999px;
  padding: 3px 10px;
}
.live-badge .live-dot {
  background: #fff;
  width: 5px;
  height: 5px;
}
.match-info {
  padding: 14px 16px 16px;
}
.match-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-heading);
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}
.match-info p {
  font-size: 12.5px;
  color: var(--color-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
.match-info a {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-primary);
  transition: color var(--transition);
}
.match-info a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.slide-arrows {
  display: flex;
  gap: 8px;
}
.slide-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-heading);
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(15, 42, 90, 0.06);
}
.slide-arrow:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

/* Recommendation Cards */
.bg-white-section {
  background: #fff;
}
.rec-card {
  background: var(--color-card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-line);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.rec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.rec-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8eef6;
}
.rec-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.rec-card:hover .rec-cover img {
  transform: scale(1.04);
}
.rec-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: inline-block;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 11px;
  border-radius: 6px;
  padding: 2px 8px;
}
.rec-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.rec-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-heading);
  line-height: 1.5;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rec-body p {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
  flex: 1;
}
.rec-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}
.chip {
  display: inline-flex;
  align-items: center;
  background: #EFF4FC;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 500;
  border-radius: 9999px;
  padding: 2px 10px;
  line-height: 1.6;
}
.rec-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-line);
  padding-top: 12px;
}
.ghost-link {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}
.ghost-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.rec-date {
  font-size: 12px;
  color: var(--color-muted);
}
.figures-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--color-line);
}
.figure-block {
  text-align: center;
}
.figure-block .num {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-heading);
  line-height: 1.2;
  display: block;
}
.figure-block .lbl {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 4px;
}

/* Browse Sport Section */
.browse-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
  padding: 24px;
}
.browse-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tab-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-body);
  transition: all var(--transition);
  text-align: left;
}
.tab-link:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-primary);
}
.tab-link.active {
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}
.tab-link .tab-icon {
  font-size: 16px;
  line-height: 1;
}
.browse-content {
  border-left: 1px solid var(--color-line);
  padding-left: 24px;
}
.browse-panel {
  display: none;
  flex-direction: column;
  gap: 12px;
}
.browse-panel.active {
  display: flex;
}
.browse-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 12px;
  background: var(--color-page-bg);
  border: 1px solid transparent;
  transition: all var(--transition);
}
.browse-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.1);
}
.browse-item img {
  width: 96px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--color-line);
}
.browse-item-info {
  flex: 1;
  min-width: 0;
}
.browse-item-info h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.browse-item-info p {
  font-size: 12.5px;
  color: var(--color-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video-count {
  display: inline-block;
  margin-top: 5px;
  font-size: 11px;
  color: var(--color-primary);
  background: #EFF4FC;
  border-radius: 9999px;
  padding: 1px 8px;
}
.browse-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 9999px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition);
}
.browse-btn:hover {
  background: var(--color-primary);
  color: #fff;
}
.browse-more {
  margin-top: 8px;
  text-align: right;
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 500;
}
.browse-more:hover {
  text-decoration: underline;
}

/* CTA Banner */
.cta-banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--color-deep-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(11, 31, 63, 0.16);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/backpic/back-2.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 31, 63, 0.6) 0%, rgba(11, 31, 63, 0.2) 100%);
}
.cta-banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 56px 32px;
  color: #fff;
}
.cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9999px;
  padding: 4px 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 18px;
}
.cta-banner h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto 24px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.cta-countdown {
  display: flex;
  gap: 10px;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px 12px;
  min-width: 54px;
}
.countdown-item .num {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-accent);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.countdown-item .unit {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}
.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 9999px;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}
.btn-accent:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.4);
}
.cta-note {
  display: block;
  margin-top: 14px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}

/* News List */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-row {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(15, 42, 90, 0.04);
  transition: all var(--transition);
}
.news-row:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-card-hover);
  background: #F0F4FA;
}
.news-row-link {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
}
.news-row-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #EFF4FC;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.news-row-main {
  flex: 1;
  min-width: 0;
}
.news-row-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 3px;
}
.news-tag {
  display: inline-block;
  background: #EFF4FC;
  color: var(--color-primary);
  font-size: 12px;
  border-radius: 9999px;
  padding: 1px 10px;
  font-weight: 500;
  line-height: 1.7;
}
.news-row-meta time {
  font-size: 12px;
  color: var(--color-muted);
}
.news-row-main h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.news-row-main p {
  font-size: 13px;
  color: var(--color-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-page-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 16px;
  transition: all var(--transition);
}
.news-row:hover .news-arrow {
  background: var(--color-primary);
  color: #fff;
}
.news-empty {
  border: 1.5px dashed var(--color-line);
  border-radius: var(--radius);
  padding: 48px 24px;
  text-align: center;
  background: #fff;
  color: var(--color-muted);
}
.news-empty .empty-icon {
  font-size: 38px;
  display: block;
  margin-bottom: 10px;
  color: var(--color-line);
}
.news-empty p {
  font-size: 14px;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  transition: all var(--transition);
  overflow: hidden;
}
.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-card-hover);
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-heading);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--color-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary {
  color: var(--color-primary);
}
.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}
.faq-item .faq-body {
  padding: 0 20px 18px;
  border-top: 1px solid var(--color-line);
  padding-top: 14px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-body);
}

/* Footer */
.site-footer {
  background: var(--color-deep-bg);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 28px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand .brand-logo {
  margin-bottom: 4px;
}
.footer-brand .brand-text {
  color: #fff;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
  line-height: 1.6;
}
.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  padding: 5px 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}
.footer-social-tag:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .section-pad {
    padding: 64px 0;
  }
  .container-custom {
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .browse-layout {
    grid-template-columns: 1fr;
  }
  .browse-content {
    border-left: none;
    padding-left: 0;
  }
  .browse-tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero h1 {
    font-size: 38px;
  }
  .header-cta-area .countdown-chip {
    display: none;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .header-cta-area {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .section-pad {
    padding: 52px 0;
  }
  .hero {
    min-height: 80vh;
    background-position: 70% center;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero-sub {
    font-size: 15px;
  }
  .hero-actions .btn-white,
  .hero-actions .btn-outline-light {
    padding: 11px 24px;
  }
  .cta-banner h2 {
    font-size: 26px;
  }
  .cta-actions {
    flex-direction: column;
    gap: 18px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .figures-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .section-heading h2 {
    font-size: 23px;
  }
}
@media (max-width: 520px) {
  .container-custom {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero h1 {
    font-size: 27px;
  }
  .hero-sub {
    font-size: 14px;
  }
  .hero-badges {
    gap: 8px;
  }
  .match-card {
    flex: 0 0 240px;
    max-width: 240px;
  }
  .browse-layout {
    padding: 14px;
  }
  .browse-item {
    flex-wrap: wrap;
  }
  .browse-item img {
    width: 72px;
    height: 56px;
  }
  .news-row-link {
    gap: 12px;
    padding: 14px 14px;
  }
  .news-row-icon {
    display: none;
  }
  .news-row-main p {
    display: none;
  }
  .cta-banner-inner {
    padding: 40px 20px;
  }
  .countdown-item {
    min-width: 46px;
    padding: 6px 10px;
  }
  .countdown-item .num {
    font-size: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (hover: hover) {
  .match-card:hover {
    transform: translateY(-4px);
  }
  .rec-card:hover {
    transform: translateY(-4px);
  }
  .browse-item:hover {
    transform: translateX(3px);
  }
}

/* roulang page: article */
:root {
  --color-primary: #2563EB;
  --color-primary-dark: #1D4ED8;
  --color-accent: #F97316;
  --color-page-bg: #F6F8FC;
  --color-card-bg: #FFFFFF;
  --color-deep-bg: #0B1F3F;
  --color-heading: #0B1F3F;
  --color-body: #46536D;
  --color-muted: #8A97B0;
  --color-line: #E3E9F2;
  --radius: 16px;
  --shadow-card: 0 2px 12px rgba(15, 42, 90, 0.06), 0 1px 3px rgba(15, 42, 90, 0.05);
  --shadow-card-hover: 0 8px 24px rgba(37, 99, 235, 0.12);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  background: var(--color-page-bg);
  color: var(--color-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
}
.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 640px) {
  .container-custom {
    padding: 0 16px;
  }
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-line);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(15, 42, 90, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  background: linear-gradient(135deg, #3B82F6, #2563EB);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}
.brand-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: -0.01em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-body);
  padding: 8px 2px;
  position: relative;
  transition: color 0.2s ease;
  line-height: 1;
}
.nav-link:hover {
  color: var(--color-primary);
}
.nav-link.active {
  color: var(--color-primary);
  font-weight: 600;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
  width: 22px;
  height: 3px;
  border-radius: 9999px;
  background: var(--color-primary);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #B91C1C;
  background: #FEF2F2;
  border-radius: 9999px;
  padding: 4px 12px;
  white-space: nowrap;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EF4444;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  line-height: 1;
  text-decoration: none;
}
.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  padding: 10px 22px;
  font-size: 14px;
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transform: translateY(-1px);
}
.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}
.btn-accent {
  background: var(--color-accent);
  color: #fff;
  padding: 14px 36px;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.25);
}
.btn-accent:hover {
  background: #FB923C;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
  transform: translateY(-2px);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-heading);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}
.nav-toggle:hover {
  background: #F0F4FA;
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .live-badge {
    display: none;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 4px;
    padding: 12px 24px 20px;
    border-bottom: 1px solid var(--color-line);
    box-shadow: 0 12px 30px rgba(15, 42, 90, 0.08);
  }
  .main-nav.is-open {
    display: flex;
  }
  .nav-link {
    padding: 12px 4px;
    font-size: 16px;
    width: 100%;
    border-bottom: 1px solid #F0F4FA;
  }
  .nav-link:last-child {
    border-bottom: none;
  }
  .nav-link.active::after {
    left: 4px;
    transform: none;
    width: 3px;
    height: 18px;
    bottom: 8px;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

/* Breadcrumb */
.breadcrumb-bar {
  background: #F0F4FA;
  border-bottom: 1px solid var(--color-line);
  padding: 12px 0;
  font-size: 13px;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--color-muted);
}
.breadcrumb-inner a {
  color: var(--color-primary);
  transition: color 0.2s;
}
.breadcrumb-inner a:hover {
  color: var(--color-primary-dark);
}
.breadcrumb-inner .sep {
  color: rgba(138, 151, 176, 0.5);
}
.breadcrumb-inner .current {
  color: var(--color-muted);
  max-width: 320px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: bottom;
}

/* Article Main */
.article-page-main {
  padding: 48px 0 64px;
  background: var(--color-page-bg);
  min-height: 60vh;
}
.article-card {
  background: var(--color-card-bg);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  padding: 48px;
  max-width: 960px;
  margin: 0 auto 40px;
}
@media (max-width: 640px) {
  .article-card {
    padding: 24px;
    border-radius: 16px;
  }
}
.article-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .article-heading {
    font-size: 24px;
  }
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-line);
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--color-muted);
}
.article-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.article-meta .meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-line);
  display: inline-block;
}
.article-summary {
  background: #F0F4FA;
  border-left: 4px solid var(--color-primary);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-body);
}
.article-content {
  font-size: 16px;
  line-height: 1.9;
  color: var(--color-body);
}
.article-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-heading);
  margin: 36px 0 16px;
  letter-spacing: -0.01em;
}
.article-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-heading);
  margin: 28px 0 14px;
}
.article-content p {
  margin-bottom: 24px;
}
.article-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.article-content a:hover {
  color: var(--color-primary-dark);
}
.article-content img {
  border-radius: 12px;
  border: 1px solid var(--color-line);
  margin: 24px 0;
  width: 100%;
  height: auto;
}
.article-content blockquote {
  border-left: 4px solid var(--color-primary);
  background: #F0F4FA;
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 12px 12px 0;
  color: var(--color-heading);
  font-weight: 500;
}
.article-content ul,
.article-content ol {
  padding-left: 20px;
  margin: 16px 0 24px;
}
.article-content li {
  margin-bottom: 8px;
}
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.article-content table th,
.article-content table td {
  border: 1px solid var(--color-line);
  padding: 10px 12px;
  text-align: left;
}
.article-content table th {
  background: #F0F4FA;
  font-weight: 600;
  color: var(--color-heading);
}
.article-content hr {
  border: none;
  border-top: 1px solid var(--color-line);
  margin: 32px 0;
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-line);
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border-radius: 9999px;
  font-size: 12px;
  background: #EFF4FC;
  color: var(--color-primary);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s;
}
.tag:hover {
  background: var(--color-primary);
  color: #fff;
}
.article-not-found {
  text-align: center;
  padding: 80px 20px;
}
.article-not-found .not-found-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.article-not-found h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 12px;
}
.article-not-found p {
  color: var(--color-muted);
  margin-bottom: 24px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-weight: 500;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 10px 24px;
  font-size: 14px;
  transition: all 0.2s ease;
  background: transparent;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Related Section */
.related-section {
  max-width: 1200px;
  margin: 0 auto 48px;
}
.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.section-title-line {
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: var(--color-primary);
}
.section-title-wrap h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: -0.01em;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}
.related-card {
  background: var(--color-card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.related-card-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.related-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.related-card:hover .related-card-cover img {
  transform: scale(1.03);
}
.related-card-cover .cover-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11, 31, 63, 0.7);
  color: #fff;
  font-size: 12px;
  padding: 3px 12px;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  letter-spacing: 0.02em;
}
.related-card-body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.related-card-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}
.related-card-tags .tag {
  background: #EFF4FC;
  color: var(--color-primary);
  font-size: 11px;
  padding: 2px 10px;
}
.related-card-tags .tag-hot {
  background: #FFF7ED;
  color: #EA580C;
}
.related-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-heading);
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.related-card:hover h3 {
  color: var(--color-primary);
}
.related-card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.read-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  transition: color 0.2s;
}
.read-more:hover {
  color: var(--color-primary-dark);
}
.read-more svg {
  transition: transform 0.2s;
}
.read-more:hover svg {
  transform: translateX(4px);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(120deg, #0B1F3F 0%, #1E3A8A 100%);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
  opacity: 0.12;
  z-index: 0;
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 9999px;
  padding: 4px 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.cta-banner h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.8;
}
@media (max-width: 640px) {
  .cta-banner {
    border-radius: 16px;
    padding: 40px 20px;
  }
  .cta-banner h2 {
    font-size: 22px;
  }
}

/* Back Home */
.back-home-wrap {
  text-align: center;
  padding: 16px 0 8px;
}
.back-home-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 9999px;
  border: 1px solid var(--color-line);
  transition: all 0.2s ease;
  background: #fff;
}
.back-home-link:hover {
  border-color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.12);
}
.back-home-link svg {
  transition: transform 0.2s;
}
.back-home-link:hover svg {
  transform: translateY(2px);
}

/* Footer */
.site-footer {
  background: var(--color-deep-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 24px;
  margin-top: 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.9fr 1.1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.footer-brand .brand-logo {
  margin-bottom: 16px;
}
.footer-brand .brand-text {
  color: #fff;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  max-width: 300px;
}
.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.footer-social-tag {
  display: inline-block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9999px;
  padding: 4px 14px;
  transition: all 0.2s;
}
.footer-social-tag:hover {
  border-color: var(--color-primary);
  color: #fff;
  background: rgba(37, 99, 235, 0.15);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* roulang page: category1 */
:root {
      --color-primary: #2563EB;
      --color-primary-dark: #1D4ED8;
      --color-accent: #F97316;
      --color-accent-light: #FB923C;
      --color-page-bg: #F6F8FC;
      --color-card-bg: #FFFFFF;
      --color-deep-bg: #0B1F3F;
      --color-heading: #0B1F3F;
      --color-body: #46536D;
      --color-muted: #8A97B0;
      --color-line: #E3E9F2;
      --radius: 16px;
      --shadow-card: 0 2px 12px rgba(15,42,90,0.06), 0 1px 3px rgba(15,42,90,0.05);
      --shadow-hover: 0 8px 24px rgba(37,99,235,0.12);
      --transition: 0.2s ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      background: var(--color-page-bg);
      color: var(--color-body);
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
    }

    a:focus-visible,
    button:focus-visible {
      outline: 2px solid var(--color-primary);
      outline-offset: 3px;
      border-radius: 8px;
    }

    .container-custom {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== Header / Nav ===== */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.92);
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(227, 233, 242, 0.8);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
      gap: 24px;
    }

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: linear-gradient(135deg, #3B82F6, #2563EB);
      color: #fff;
      font-weight: 700;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
    }

    .brand-text {
      font-size: 20px;
      font-weight: 700;
      color: var(--color-heading);
      letter-spacing: 0.01em;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 18px;
      border-radius: 9999px;
      font-size: 15px;
      font-weight: 500;
      color: var(--color-body);
      transition: all var(--transition);
    }

    .nav-link:hover {
      background: #EFF4FC;
      color: var(--color-primary);
    }

    .nav-link.active {
      background: var(--color-primary);
      color: #fff;
      font-weight: 600;
      box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
    }

    .nav-dot {
      width: 6px;
      height: 6px;
      background: #EF4444;
      border-radius: 50%;
      animation: pulse-dot 1.6s ease infinite;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.78); }
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
    }

    .countdown-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      color: var(--color-primary);
      background: #EFF4FC;
      padding: 6px 14px;
      border-radius: 9999px;
      white-space: nowrap;
    }

    .live-dot {
      width: 8px;
      height: 8px;
      background: #EF4444;
      border-radius: 50%;
      animation: pulse-dot 1.4s ease infinite;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 8px;
      border-radius: 8px;
    }

    .menu-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--color-heading);
      border-radius: 2px;
      transition: all var(--transition);
    }

    /* ===== Buttons ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 26px;
      border-radius: 9999px;
      font-size: 15px;
      font-weight: 600;
      transition: all var(--transition);
      cursor: pointer;
    }

    .btn-primary {
      background: var(--color-primary);
      color: #fff;
    }

    .btn-primary:hover {
      background: var(--color-primary-dark);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }

    .btn-light {
      background: #fff;
      color: var(--color-heading);
    }

    .btn-light:hover {
      background: #F0F4FA;
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(11, 31, 63, 0.12);
    }

    .btn-outline-white {
      border: 1.5px solid rgba(255, 255, 255, 0.6);
      color: #fff;
      background: transparent;
    }

    .btn-outline-white:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .btn-accent {
      background: var(--color-accent);
      color: #fff;
    }

    .btn-accent:hover {
      background: var(--color-accent-light);
      box-shadow: 0 4px 12px rgba(249, 115, 22, 0.38);
      transform: translateY(-1px);
    }

    .btn-sm {
      padding: 8px 18px;
      font-size: 14px;
    }

    .btn-lg {
      padding: 14px 36px;
      font-size: 16px;
    }

    /* ===== Hero ===== */
    .category-hero {
      position: relative;
      background: url('/assets/images/backpic/back-1.png') center / cover no-repeat;
      padding: 76px 0;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(100deg, rgba(11, 31, 63, 0.92) 0%, rgba(11, 31, 63, 0.62) 52%, rgba(11, 31, 63, 0.2) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 48px;
      align-items: center;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid rgba(255, 255, 255, 0.22);
      padding: 6px 18px;
      border-radius: 9999px;
      font-size: 13px;
      color: #fff;
      letter-spacing: 0.02em;
      margin-bottom: 22px;
    }

    .hero-left h1 {
      font-size: 44px;
      font-weight: 700;
      color: #fff;
      line-height: 1.25;
      letter-spacing: -0.01em;
      margin-bottom: 16px;
    }

    .hero-left p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.86);
      line-height: 1.8;
      max-width: 540px;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 30px;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 30px;
    }

    .hero-meta span {
      display: inline-block;
      background: rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.92);
      font-size: 13px;
      padding: 6px 14px;
      border-radius: 9999px;
    }

    .hero-card {
      background: #fff;
      border-radius: 18px;
      padding: 12px;
      box-shadow: 0 18px 40px rgba(11, 31, 63, 0.28);
    }

    .hero-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 12px;
    }

    .hero-card-info {
      padding: 14px 8px 6px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .hero-card-info strong {
      font-size: 17px;
      color: var(--color-heading);
    }

    .hero-card-info .hero-card-sub {
      font-size: 13px;
      color: var(--color-muted);
    }

    .tag {
      display: inline-flex;
      align-items: center;
      padding: 3px 10px;
      border-radius: 9999px;
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 6px;
      align-self: flex-start;
    }

    .tag-red {
      background: rgba(239, 68, 68, 0.12);
      color: #EF4444;
    }

    /* ===== Stats ===== */
    .stat-section {
      position: relative;
      z-index: 5;
      margin-top: -40px;
      padding-bottom: 20px;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      background: #fff;
      border-radius: 20px;
      padding: 30px 36px;
      box-shadow: var(--shadow-card);
    }

    .stat-item {
      text-align: center;
      position: relative;
    }

    .stat-item + .stat-item::before {
      content: '';
      position: absolute;
      left: -10px;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: 42px;
      background: var(--color-line);
    }

    .stat-item strong {
      display: block;
      font-size: 32px;
      font-weight: 700;
      color: var(--color-primary);
      line-height: 1.2;
    }

    .stat-item span {
      display: block;
      font-size: 14px;
      color: var(--color-muted);
      margin-top: 4px;
    }

    /* ===== Section Base ===== */
    .section-block {
      padding: 80px 0;
    }

    .section-alt {
      background: #F0F4FA;
    }

    .section-head {
      margin-bottom: 44px;
    }

    .section-head .section-bar {
      display: block;
      width: 26px;
      height: 4px;
      background: var(--color-primary);
      border-radius: 4px;
      margin-bottom: 14px;
    }

    .section-head h2 {
      font-size: 28px;
      font-weight: 700;
      color: var(--color-heading);
      letter-spacing: -0.01em;
      line-height: 1.3;
      margin-bottom: 10px;
    }

    .section-head p {
      font-size: 15px;
      color: var(--color-muted);
      max-width: 620px;
    }

    /* ===== Feature Cards ===== */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .feature-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 28px 24px;
      box-shadow: var(--shadow-card);
      transition: transform var(--transition), box-shadow var(--transition);
    }

    @media (hover: hover) {
      .feature-card:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-4px);
      }
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(37, 99, 235, 0.1);
      color: var(--color-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

    .feature-card h3 {
      font-size: 17px;
      font-weight: 600;
      color: var(--color-heading);
      margin-bottom: 8px;
    }

    .feature-card p {
      font-size: 14px;
      color: var(--color-body);
      line-height: 1.7;
    }

    /* ===== Scene Cards ===== */
    .scene-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .scene-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 30px 26px;
      border: 1px solid var(--color-line);
      transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    }

    @media (hover: hover) {
      .scene-card:hover {
        border-color: var(--color-primary);
        box-shadow: var(--shadow-hover);
        transform: translateY(-3px);
      }
    }

    .scene-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(249, 115, 22, 0.12);
      color: var(--color-accent);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

    .scene-card h3 {
      font-size: 18px;
      font-weight: 600;
      color: var(--color-heading);
      margin-bottom: 8px;
    }

    .scene-card p {
      font-size: 14px;
      color: var(--color-body);
      line-height: 1.7;
    }

    /* ===== Filter + Grid ===== */
    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 32px;
    }

    .filter-btn {
      padding: 8px 20px;
      border-radius: 9999px;
      border: 1px solid #D1DBE8;
      background: #fff;
      color: var(--color-body);
      font-size: 14px;
      font-weight: 500;
      transition: all var(--transition);
    }

    .filter-btn:hover {
      border-color: var(--color-primary);
      color: var(--color-primary);
    }

    .filter-btn.active {
      background: var(--color-primary);
      border-color: var(--color-primary);
      color: #fff;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.24);
    }

    .cat-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .cat-card {
      background: #fff;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: transform var(--transition), box-shadow var(--transition);
    }

    @media (hover: hover) {
      .cat-card:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-4px);
      }
    }

    .cat-media {
      position: relative;
      height: 168px;
      overflow: hidden;
    }

    .cat-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    @media (hover: hover) {
      .cat-card:hover .cat-media img {
        transform: scale(1.04);
      }
    }

    .cat-tag {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(11, 31, 63, 0.72);
      color: #fff;
      font-size: 12px;
      padding: 4px 12px;
      border-radius: 9999px;
    }

    .cat-card-body {
      padding: 20px;
    }

    .cat-card-body h3 {
      font-size: 17px;
      font-weight: 600;
      color: var(--color-heading);
      margin-bottom: 6px;
    }

    .cat-card-body p {
      font-size: 13px;
      color: var(--color-muted);
      margin-bottom: 14px;
      line-height: 1.6;
    }

    .cat-link {
      font-size: 14px;
      font-weight: 600;
      color: var(--color-primary);
      transition: color var(--transition);
    }

    .cat-link:hover {
      color: var(--color-primary-dark);
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    /* ===== Pagination ===== */
    .pagination {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 44px;
    }

    .page-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid #D1DBE8;
      background: #fff;
      color: var(--color-body);
      font-size: 14px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all var(--transition);
    }

    .page-btn:hover:not(:disabled) {
      border-color: var(--color-primary);
      color: var(--color-primary);
    }

    .page-btn.active {
      background: var(--color-primary);
      border-color: var(--color-primary);
      color: #fff;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.26);
    }

    .page-btn:disabled {
      opacity: 0.45;
      cursor: not-allowed;
    }

    /* ===== Steps ===== */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .step-item {
      background: #fff;
      border-radius: var(--radius);
      padding: 34px 28px;
      text-align: center;
      border: 1px solid var(--color-line);
      position: relative;
      transition: box-shadow var(--transition), transform var(--transition);
    }

    @media (hover: hover) {
      .step-item:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-3px);
      }
    }

    .step-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      border-radius: 16px;
      background: rgba(37, 99, 235, 0.1);
      color: var(--color-primary);
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .step-item h3 {
      font-size: 17px;
      font-weight: 600;
      color: var(--color-heading);
      margin-bottom: 8px;
    }

    .step-item p {
      font-size: 14px;
      color: var(--color-muted);
      line-height: 1.7;
    }

    /* ===== FAQ ===== */
    .faq-wrap {
      max-width: 860px;
    }

    .faq-list {
      margin-top: 32px;
    }

    .faq-item {
      background: #fff;
      border-radius: var(--radius);
      border: 1px solid var(--color-line);
      margin-bottom: 12px;
      overflow: hidden;
      transition: border-color var(--transition), box-shadow var(--transition);
    }

    .faq-item.open {
      border-color: rgba(37, 99, 235, 0.4);
      box-shadow: 0 4px 14px rgba(37, 99, 235, 0.08);
    }

    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 24px;
      font-size: 16px;
      font-weight: 600;
      color: var(--color-heading);
      text-align: left;
      transition: color var(--transition);
    }

    .faq-q:hover {
      color: var(--color-primary);
    }

    .faq-icon {
      width: 28px;
      height: 28px;
      flex-shrink: 0;
      border-radius: 50%;
      background: #EFF4FC;
      color: var(--color-primary);
      font-size: 18px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform var(--transition), background var(--transition);
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: var(--color-primary);
      color: #fff;
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.32s ease;
    }

    .faq-a p {
      padding: 0 24px 22px;
      font-size: 14px;
      color: var(--color-body);
      line-height: 1.8;
    }

    /* ===== CTA ===== */
    .cta-banner {
      background: linear-gradient(120deg, #0B1F3F 0%, #1D4ED8 100%);
      padding: 72px 0;
      text-align: center;
    }

    .cta-tag {
      display: inline-block;
      background: rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.9);
      font-size: 13px;
      padding: 6px 18px;
      border-radius: 9999px;
      letter-spacing: 0.04em;
      margin-bottom: 18px;
    }

    .cta-banner h2 {
      font-size: 32px;
      font-weight: 700;
      color: #fff;
      line-height: 1.3;
      margin-bottom: 12px;
    }

    .cta-banner p {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.75);
      max-width: 600px;
      margin: 0 auto 32px;
      line-height: 1.8;
    }

    /* ===== Footer ===== */
    .site-footer {
      background: var(--color-deep-bg);
      color: rgba(255, 255, 255, 0.68);
      padding: 60px 0 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 40px;
      margin-bottom: 44px;
    }

    .footer-brand .brand-logo {
      margin-bottom: 14px;
    }

    .footer-brand .brand-text {
      color: #fff;
    }

    .footer-desc {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.8;
      max-width: 300px;
    }

    .footer-col h4 {
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
      transition: color var(--transition);
    }

    .footer-links a:hover {
      color: #fff;
    }

    .footer-social {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .footer-social-tag {
      padding: 6px 14px;
      border-radius: 9999px;
      background: rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.78);
      font-size: 13px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.4);
    }

    /* ===== Responsive ===== */
    @media (max-width: 1024px) {
      .hero-content {
        grid-template-columns: 1fr 320px;
        gap: 32px;
      }

      .feature-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .cat-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: flex;
      }

      .main-nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--color-line);
        padding: 14px 24px 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        box-shadow: 0 12px 24px rgba(11, 31, 63, 0.06);
      }

      .main-nav.open {
        display: flex;
      }

      .nav-link {
        padding: 12px 16px;
      }

      .hero-content {
        grid-template-columns: 1fr;
      }

      .hero-right {
        display: none;
      }

      .hero-left h1 {
        font-size: 34px;
      }

      .stat-section {
        margin-top: -32px;
      }

      .stat-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px 24px;
        gap: 16px;
      }

      .stat-item + .stat-item::before {
        display: none;
      }

      .section-block {
        padding: 56px 0;
      }

      .scene-grid {
        grid-template-columns: 1fr;
      }

      .cat-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .steps-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
      }

      .cta-banner h2 {
        font-size: 26px;
      }
    }

    @media (max-width: 520px) {
      .container-custom {
        padding: 0 16px;
      }

      .countdown-badge {
        display: none;
      }

      .btn {
        padding: 10px 20px;
      }

      .hero-left h1 {
        font-size: 30px;
      }

      .hero-left p {
        font-size: 15px;
      }

      .hero-meta span {
        font-size: 12px;
      }

      .cat-grid {
        grid-template-columns: 1fr;
      }

      .feature-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .section-head h2 {
        font-size: 22px;
      }

      .stat-item strong {
        font-size: 26px;
      }
    }
