@charset "UTF-8";
/* ==========================================================================
   168历史查询 chiyanjingji.cn —— 主样式表
   视觉风格：电竞橙黑 · 斜切几何 · 硬朗高对比
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. Reset 重置
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), background-color var(--transition);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

svg {
  display: block;
  flex-shrink: 0;
}

::selection {
  background: var(--brand);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   02. 设计变量 :root
   -------------------------------------------------------------------------- */
:root {
  /* 品牌主色 */
  --brand: #F97316;
  --brand-2: #EA580C;
  --brand-dark: #C2410C;
  --brand-light: #FB923C;
  --brand-soft: rgba(249, 115, 22, 0.14);

  /* 深色与强调 */
  --dark: #111827;
  --dark-2: #0B1220;
  --dark-3: #1F2937;
  --accent: #FBBF24;
  --accent-soft: rgba(251, 191, 36, 0.16);

  /* 背景层级 */
  --bg: #0B1220;
  --bg-2: #0E1626;
  --card: #151D2E;
  --card-2: #1B2436;
  --card-hover: #212C42;

  /* 文字 */
  --text: #E9EEF7;
  --text-2: #9BA9C0;
  --text-3: #6B7A93;

  /* 边框与分割 */
  --border: #2A3446;
  --border-strong: #3A475F;
  --divider: rgba(255, 255, 255, 0.06);

  /* 圆角：斜切硬朗风，统一小圆角 + 斜切 */
  --radius: 3px;
  --radius-sm: 2px;
  --radius-lg: 6px;
  --skew: -12deg;

  /* 阴影 */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 22px 50px rgba(0, 0, 0, 0.55);
  --glow: 0 0 0 1px rgba(249, 115, 22, 0.35), 0 12px 32px rgba(249, 115, 22, 0.18);

  /* 尺寸 */
  --container: 1240px;
  --header-h: 72px;
  --topbar-h: 38px;

  /* 过渡 */
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);

  /* 字体栈 */
  --font-sans: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Helvetica Neue", Arial, sans-serif;
  --font-num: "Bahnschrift", "DIN Alternate", "Arial Narrow", Impact, var(--font-sans);
}

/* --------------------------------------------------------------------------
   03. 基础排版
   -------------------------------------------------------------------------- */
body {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(180deg, rgba(249, 115, 22, 0.05) 0%, transparent 320px),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.012) 0 2px, transparent 2px 12px);
  background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.2px;
  color: #ffffff;
}

h1 {
  font-size: 34px;
  font-weight: 900;
}

h2 {
  font-size: 26px;
  font-weight: 800;
}

h3 {
  font-size: 19px;
}

h4 {
  font-size: 16px;
}

p {
  color: var(--text-2);
}

strong {
  color: var(--text);
  font-weight: 700;
}

em {
  font-style: normal;
  color: var(--accent);
}

time {
  font-variant-numeric: tabular-nums;
}

address {
  font-style: normal;
}

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

.container-wide {
  max-width: 1440px;
}

/* 通用区块 */
.section {
  padding: 62px 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.section-head .ttl {
  position: relative;
  padding-left: 16px;
}

.section-head .ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 6px;
  background: linear-gradient(180deg, var(--brand), var(--accent));
  transform: skewX(var(--skew));
}

.section-head .ttl h2 {
  font-size: 26px;
}

.section-head .ttl p {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 4px;
}

.section-head .more {
  font-size: 13px;
  color: var(--brand-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border: 1px solid var(--border-strong);
  transform: skewX(var(--skew));
}

.section-head .more span {
  transform: skewX(calc(-1 * var(--skew)));
}

.section-head .more:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
}

/* 强调文字 */
.txt-brand {
  color: var(--brand);
}

.txt-accent {
  color: var(--accent);
}

.txt-dim {
  color: var(--text-3);
}

/* 装饰斜切分割线 */
.slash-divider {
  height: 3px;
  width: 64px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: skewX(var(--skew));
  border-radius: var(--radius-sm);
}

/* 徽标标签 */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 22px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-light);
  background: var(--brand-soft);
  border: 1px solid rgba(249, 115, 22, 0.35);
  transform: skewX(var(--skew));
}

.pill > span {
  transform: skewX(calc(-1 * var(--skew)));
}

.pill-accent {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: rgba(251, 191, 36, 0.35);
}

.pill-live {
  color: #ffffff;
  background: #DC2626;
  border-color: #DC2626;
}

.pill-live .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

/* --------------------------------------------------------------------------
   04. 顶部信息条 Topbar
   -------------------------------------------------------------------------- */
.topbar {
  height: var(--topbar-h);
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-2);
  position: relative;
  z-index: 60;
}

.topbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar-item svg {
  color: var(--brand);
}

.topbar-item b {
  color: var(--accent);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.topbar a:hover {
  color: var(--brand-light);
}

.topbar-cs {
  color: #ffffff !important;
  background: linear-gradient(120deg, var(--brand), var(--brand-dark));
  padding: 4px 14px;
  font-weight: 700;
  transform: skewX(var(--skew));
}

.topbar-cs span {
  display: inline-block;
  transform: skewX(calc(-1 * var(--skew)));
}

/* --------------------------------------------------------------------------
   05. Header 与主导航
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header.is-stuck {
  box-shadow: var(--shadow);
  border-bottom-color: rgba(249, 115, 22, 0.4);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 22px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
  color: #ffffff;
  box-shadow: var(--glow);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text b {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #ffffff;
}

.logo-text i {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 2.4px;
  color: var(--brand-light);
  text-transform: uppercase;
}

/* 主导航 */
.nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-list > li > a {
  display: block;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-2);
  position: relative;
  transform: skewX(var(--skew));
}

.nav-list > li > a > span {
  display: block;
  transform: skewX(calc(-1 * var(--skew)));
}

.nav-list > li > a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-list > li > a:hover {
  color: #ffffff;
}

.nav-list > li > a:hover::after,
.nav-list > li > a.active::after {
  transform: scaleX(1);
}

.nav-list > li > a.active {
  color: #ffffff;
  background: var(--brand-soft);
}

/* 搜索框 */
.header-search {
  position: relative;
  width: 210px;
  flex-shrink: 0;
}

.header-search input {
  width: 100%;
  height: 38px;
  padding: 0 42px 0 14px;
  font-size: 13px;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
  transform: skewX(var(--skew));
}

.header-search input::placeholder {
  color: var(--text-3);
}

.header-search input:focus {
  border-color: var(--brand);
  background: var(--card-2);
}

.header-search button {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 34px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
}

.header-search button:hover {
  color: var(--brand);
}

/* Header CTA */
.header-cta {
  flex-shrink: 0;
}

/* 汉堡按钮 */
.menu-toggle {
  display: none;
  width: 44px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--border-strong);
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   06. 按钮 Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 26px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: var(--card-2);
  border: 1px solid var(--border-strong);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition), color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand), var(--brand-dark));
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(249, 115, 22, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(120deg, var(--brand-light), var(--brand));
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.42);
}

.btn-accent {
  color: var(--dark);
  background: linear-gradient(120deg, var(--accent), #F59E0B);
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(251, 191, 36, 0.26);
}

.btn-accent:hover {
  box-shadow: 0 12px 30px rgba(251, 191, 36, 0.4);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand-light);
  background: var(--brand-soft);
}

.btn-sm {
  height: 34px;
  padding: 0 16px;
  font-size: 13px;
  clip-path: polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
}

.btn-lg {
  height: 52px;
  padding: 0 38px;
  font-size: 17px;
}

.btn-block {
  width: 100%;
}

/* --------------------------------------------------------------------------
   07. Hero 首屏
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11, 18, 32, 0.96) 0%, rgba(11, 18, 32, 0.72) 46%, rgba(11, 18, 32, 0.35) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  padding: 74px 0 68px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  color: var(--accent);
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid rgba(251, 191, 36, 0.4);
  transform: skewX(var(--skew));
  margin-bottom: 22px;
}

.hero-tag span {
  transform: skewX(calc(-1 * var(--skew)));
}

.hero h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  text-shadow: 0 6px 26px rgba(0, 0, 0, 0.55);
}

.hero h1 .hl {
  color: var(--brand);
  position: relative;
  display: inline-block;
}

.hero h1 .hl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 10px;
  background: rgba(249, 115, 22, 0.28);
  z-index: -1;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.9;
  color: #C7D1E2;
  max-width: 620px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Hero 统计 */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 660px;
}

.hero-stat {
  background: rgba(17, 24, 39, 0.86);
  padding: 18px 16px;
  text-align: center;
  transition: background-color var(--transition);
}

.hero-stat:hover {
  background: rgba(249, 115, 22, 0.14);
}

.hero-stat b {
  display: block;
  font-family: var(--font-num);
  font-size: 30px;
  font-weight: 900;
  color: var(--brand);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.hero-stat span {
  font-size: 12px;
  color: var(--text-2);
  letter-spacing: 0.5px;
}

/* Hero 右侧卡片 */
.hero-aside {
  position: relative;
}

.hero-panel {
  background: rgba(21, 29, 46, 0.94);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  clip-path: polygon(0 18px, 18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}

.hero-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px dashed var(--border);
}

.hero-panel-head h3 {
  font-size: 17px;
}

.hero-panel-img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

.hero-panel-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  font-size: 13px;
  color: var(--text-2);
  border-bottom: 1px dashed var(--divider);
}

.hero-panel-list li:last-child {
  border-bottom: 0;
}

.hero-panel-list b {
  color: var(--accent);
  font-family: var(--font-num);
  font-size: 15px;
}

/* --------------------------------------------------------------------------
   08. 公告跑马灯 Marquee
   -------------------------------------------------------------------------- */
.notice-bar {
  background: linear-gradient(90deg, var(--brand-dark), var(--brand) 55%, var(--brand-dark));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

.notice-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 46px;
  overflow: hidden;
}

.notice-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--dark);
  background: var(--accent);
  transform: skewX(var(--skew));
}

.notice-label span {
  transform: skewX(calc(-1 * var(--skew)));
}

.notice-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 46px;
}

.notice-track ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  animation: marquee-up 14s linear infinite;
}

.notice-track li {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #FFF7ED;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notice-track li b {
  color: #FFFFFF;
  font-weight: 800;
}

.notice-bar:hover .notice-track ul {
  animation-play-state: paused;
}

@keyframes marquee-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

/* --------------------------------------------------------------------------
   09. 号码球 Number balls
   -------------------------------------------------------------------------- */
.balls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.ball {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-num);
  font-size: 19px;
  font-weight: 900;
  color: #ffffff;
  background: radial-gradient(circle at 32% 28%, #FF9A4D, var(--brand) 46%, var(--brand-dark));
  clip-path: polygon(50% 0, 100% 26%, 100% 74%, 50% 100%, 0 74%, 0 26%);
  box-shadow: inset 0 -4px 8px rgba(0, 0, 0, 0.35), 0 6px 14px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition);
}

.ball:hover {
  transform: translateY(-4px) scale(1.06);
}

.ball.ball-accent {
  background: radial-gradient(circle at 32% 28%, #FFE08A, var(--accent) 48%, #D97706);
  color: var(--dark);
}

.ball.ball-dark {
  background: radial-gradient(circle at 32% 28%, #4B5563, var(--dark) 52%, #030712);
}

.ball-sm {
  width: 34px;
  height: 34px;
  font-size: 14px;
}

.ball-lg {
  width: 58px;
  height: 58px;
  font-size: 24px;
}

.ball-sep {
  width: 14px;
  height: 2px;
  background: var(--border-strong);
  transform: skewX(var(--skew));
}

/* 开奖结果行 */
.draw-list {
  display: grid;
  gap: 12px;
}

.draw-row {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand);
  transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
}

.draw-row:hover {
  background: var(--card-2);
  border-left-color: var(--accent);
  transform: translateX(4px);
}

.draw-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.draw-meta b {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
}

.draw-meta span {
  font-size: 12px;
  color: var(--text-3);
}

.draw-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-light);
  white-space: nowrap;
}

.draw-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   10. 卡片与网格 Cards / Grids
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 22px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transition: width var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  background: var(--card-2);
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: var(--shadow);
}

.card:hover::before {
  width: 100%;
}

.card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.card p {
  font-size: 13.5px;
  line-height: 1.8;
}

/* 玩法分类卡 */
.play-card {
  text-align: left;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.play-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid rgba(249, 115, 22, 0.3);
  clip-path: polygon(22% 0, 100% 0, 78% 100%, 0 100%);
}

.play-card:hover .play-icon {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.play-card .link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-light);
}

.play-card .link-more:hover {
  gap: 11px;
}

/* 图片卡 */
.img-card {
  padding: 0;
  overflow: hidden;
}

.img-card figure {
  position: relative;
  overflow: hidden;
}

.img-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-card:hover img {
  transform: scale(1.08);
}

.img-card .img-badge {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 6px 18px 6px 14px;
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(120deg, var(--brand), var(--brand-dark));
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.img-card .body {
  padding: 18px 20px 22px;
}

.img-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  transition: color var(--transition);
}

.img-card:hover h3 {
  color: var(--brand-light);
}

.img-card .meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-3);
}

/* 优势卡 */
.feature-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: var(--accent-soft);
  clip-path: polygon(24% 0, 100% 0, 76% 100%, 0 100%);
}

.feature-card h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.feature-card p {
  font-size: 13px;
}

/* 口碑卡 */
.quote-card {
  position: relative;
  padding: 26px 24px;
}

.quote-card::after {
  content: "\201C";
  position: absolute;
  top: 4px;
  right: 20px;
  font-size: 78px;
  line-height: 1;
  font-weight: 900;
  color: rgba(249, 115, 22, 0.16);
}

.quote-card p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.quote-user {
  display: flex;
  align-items: center;
  gap: 11px;
}

.avatar {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  clip-path: polygon(50% 0, 100% 26%, 100% 74%, 50% 100%, 0 74%, 0 26%);
}

.quote-user b {
  display: block;
  font-size: 14px;
}

.quote-user span {
  font-size: 12px;
  color: var(--text-3);
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--accent);
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   11. 表格 Tables
   -------------------------------------------------------------------------- */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border);
  background: var(--card);
}

.table {
  min-width: 640px;
}

.table th {
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  color: var(--accent);
  background: rgba(249, 115, 22, 0.1);
  border-bottom: 1px solid var(--border-strong);
  white-space: nowrap;
}

.table td {
  padding: 13px 16px;
  font-size: 13.5px;
  color: var(--text-2);
  border-bottom: 1px solid var(--divider);
  font-variant-numeric: tabular-nums;
}

.table tbody tr {
  transition: background-color var(--transition);
}

.table tbody tr:hover {
  background: rgba(249, 115, 22, 0.07);
}

.table tbody tr:last-child td {
  border-bottom: 0;
}

.table .strong {
  color: #ffffff;
  font-weight: 700;
}

/* 数据条 */
.bar-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
}

.bar-track {
  flex: 1;
  height: 8px;
  background: var(--dark-3);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  width: 0;
  transition: width 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.bar-fill.is-hot {
  background: linear-gradient(90deg, #EF4444, var(--brand));
}

.bar-fill.is-cold {
  background: linear-gradient(90deg, #3B82F6, #60A5FA);
}

.bar-value {
  font-family: var(--font-num);
  font-size: 13px;
  color: #ffffff;
  min-width: 42px;
  text-align: right;
}

/* --------------------------------------------------------------------------
   12. 排行榜 Rankings
   -------------------------------------------------------------------------- */
.rank-list {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.rank-item {
  display: grid;
  grid-template-columns: 52px 1fr 120px 96px;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  background: var(--card);
  transition: background-color var(--transition);
}

.rank-item:hover {
  background: var(--card-2);
}

.rank-no {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-num);
  font-size: 15px;
  font-weight: 900;
  color: var(--text-2);
  background: var(--dark-3);
  transform: skewX(var(--skew));
}

.rank-item:nth-child(1) .rank-no {
  color: var(--dark);
  background: linear-gradient(135deg, var(--accent), #F59E0B);
}

.rank-item:nth-child(2) .rank-no {
  color: #ffffff;
  background: linear-gradient(135deg, #CBD5E1, #94A3B8);
}

.rank-item:nth-child(3) .rank-no {
  color: #ffffff;
  background: linear-gradient(135deg, #EA580C, #9A3412);
}

.rank-user {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.rank-user small {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-3);
}

.rank-score {
  font-family: var(--font-num);
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
  text-align: right;
}

.rank-rate {
  text-align: right;
  font-size: 13px;
  color: var(--brand-light);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   13. 标签 Tags
   -------------------------------------------------------------------------- */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tag {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 14px;
  font-size: 12.5px;
  color: var(--text-2);
  background: var(--card-2);
  border: 1px solid var(--border);
  transform: skewX(var(--skew));
  transition: all var(--transition);
}

.tag > span {
  transform: skewX(calc(-1 * var(--skew)));
}

.tag:hover {
  color: #ffffff;
  background: var(--brand);
  border-color: var(--brand);
}

.tag.tag-accent {
  color: var(--accent);
  border-color: rgba(251, 191, 36, 0.4);
}

/* --------------------------------------------------------------------------
   14. 分页 Pagination
   -------------------------------------------------------------------------- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.page-btn {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-2);
  background: var(--card);
  border: 1px solid var(--border);
  transform: skewX(var(--skew));
  transition: all var(--transition);
}

.page-btn > span {
  transform: skewX(calc(-1 * var(--skew)));
}

.page-btn:hover {
  color: #ffffff;
  border-color: var(--brand);
  background: var(--brand-soft);
}

.page-btn.active {
  color: #ffffff;
  background: linear-gradient(120deg, var(--brand), var(--brand-dark));
  border-color: transparent;
}

.page-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.page-info {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-3);
  margin-top: 14px;
}

/* --------------------------------------------------------------------------
   15. 面包屑 Breadcrumb
   -------------------------------------------------------------------------- */
.breadcrumb {
  padding: 16px 0;
  font-size: 13px;
  color: var(--text-3);
  border-bottom: 1px solid var(--divider);
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb li::after {
  content: "/";
  color: var(--border-strong);
}

.breadcrumb li:last-child::after {
  display: none;
}

.breadcrumb a {
  color: var(--text-2);
}

.breadcrumb a:hover {
  color: var(--brand-light);
}

.breadcrumb [aria-current="page"] {
  color: var(--brand);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   16. 栏目页头 Page hero
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 236px;
  display: flex;
  align-items: center;
  background: var(--dark-2);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11, 18, 32, 0.94), rgba(11, 18, 32, 0.6));
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
}

.page-hero h1 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 12px;
}

.page-hero p {
  max-width: 640px;
  font-size: 14.5px;
}

/* --------------------------------------------------------------------------
   17. 时间轴 Timeline
   -------------------------------------------------------------------------- */
.timeline {
  position: relative;
  padding-left: 34px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: linear-gradient(180deg, var(--brand), var(--accent), transparent);
  transform: skewX(var(--skew));
}

.tl-item {
  position: relative;
  padding: 0 0 30px 0;
}

.tl-item::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 6px;
  width: 15px;
  height: 15px;
  background: var(--brand);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--brand);
  transform: rotate(45deg);
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-year {
  font-family: var(--font-num);
  font-size: 22px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.2;
}

.tl-item h3 {
  font-size: 17px;
  margin: 6px 0 6px;
}

.tl-item p {
  font-size: 13.5px;
  max-width: 760px;
}

/* --------------------------------------------------------------------------
   18. FAQ 折叠面板
   -------------------------------------------------------------------------- */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color var(--transition), background-color var(--transition);
}

.faq-item:hover {
  border-color: var(--border-strong);
}

.faq-item.is-open {
  border-color: rgba(249, 115, 22, 0.5);
  background: var(--card-2);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  text-align: left;
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff;
}

.faq-q .qmark {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-num);
  font-size: 13px;
  font-weight: 900;
  color: var(--dark);
  background: var(--brand);
  transform: skewX(var(--skew));
}

.faq-q .arrow {
  margin-left: auto;
  color: var(--text-3);
  transition: transform var(--transition), color var(--transition);
}

.faq-item.is-open .faq-q .arrow {
  transform: rotate(180deg);
  color: var(--brand);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-a-inner {
  padding: 0 22px 20px 62px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-2);
}

.faq-a-inner a {
  color: var(--brand-light);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   19. 表单 Forms
   -------------------------------------------------------------------------- */
.form-grid {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
}

.field label .req {
  color: var(--brand);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  background: var(--dark-2);
  border: 1px solid var(--border);
  transition: border-color var(--transition), background-color var(--transition);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-3);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  background: var(--card);
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-2) 50%), linear-gradient(135deg, var(--text-2) 50%, transparent 50%);
  background-position: calc(100% - 20px) 21px, calc(100% - 15px) 21px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form-tip {
  font-size: 12.5px;
  color: var(--text-3);
  line-height: 1.8;
}

.form-msg {
  display: none;
  padding: 12px 16px;
  font-size: 13.5px;
  border-left: 3px solid var(--brand);
  background: var(--brand-soft);
  color: var(--brand-light);
}

.form-msg.show {
  display: block;
}

.form-msg.is-error {
  border-left-color: #EF4444;
  background: rgba(239, 68, 68, 0.14);
  color: #FCA5A5;
}

/* 订阅表单 */
.subscribe-box {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.subscribe-box input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  background: var(--dark-2);
  border: 1px solid var(--border);
}

.subscribe-box input:focus {
  border-color: var(--brand);
}

/* --------------------------------------------------------------------------
   20. 侧边栏 Sidebar
   -------------------------------------------------------------------------- */
.layout-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 336px;
  gap: 34px;
  align-items: start;
}

.sidebar {
  display: grid;
  gap: 22px;
  position: sticky;
  top: calc(var(--header-h) + 18px);
}

.widget {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 20px;
}

.widget-head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 13px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.widget-head svg {
  color: var(--brand);
}

.widget-head h3 {
  font-size: 16px;
}

.hot-list {
  display: grid;
  gap: 12px;
}

.hot-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.65;
}

.hot-list li .no {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-num);
  font-size: 11px;
  font-weight: 900;
  color: var(--text-2);
  background: var(--dark-3);
}

.hot-list li:nth-child(1) .no {
  color: var(--dark);
  background: var(--brand);
}

.hot-list li:nth-child(2) .no {
  color: var(--dark);
  background: var(--accent);
}

.hot-list li:nth-child(3) .no {
  color: #ffffff;
  background: var(--brand-dark);
}

.hot-list a {
  color: var(--text-2);
}

.hot-list a:hover {
  color: var(--brand-light);
}

/* --------------------------------------------------------------------------
   21. 页脚 Footer
   -------------------------------------------------------------------------- */
.site-footer {
  margin-top: 60px;
  background: var(--dark-2);
  border-top: 2px solid var(--brand);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 36px;
  padding: 52px 0 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 18px;
  max-width: 340px;
}

.footer-contact {
  display: grid;
  gap: 9px;
  font-size: 13px;
  color: var(--text-2);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-contact svg {
  color: var(--brand);
}

.footer-col h3 {
  font-size: 15px;
  margin-bottom: 16px;
  padding-left: 12px;
  position: relative;
}

.footer-col h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: var(--brand);
  transform: skewX(var(--skew));
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col a {
  font-size: 13px;
  color: var(--text-2);
}

.footer-col a:hover {
  color: var(--brand-light);
  padding-left: 4px;
}

.footer-links {
  padding: 22px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  display: flex;
  gap: 14px;
  align-items: baseline;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--text-3);
}

.footer-links b {
  color: var(--text-2);
  flex-shrink: 0;
}

.footer-links a {
  color: var(--text-3);
}

.footer-links a:hover {
  color: var(--brand-light);
}

.footer-disclaimer {
  padding: 20px 0 0;
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--text-3);
}

.footer-disclaimer strong {
  color: var(--text-2);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 0 26px;
  font-size: 12.5px;
  color: var(--text-3);
}

.footer-bottom a {
  color: var(--text-3);
}

.footer-bottom a:hover {
  color: var(--brand-light);
}

/* --------------------------------------------------------------------------
   22. 浮动层 Floating
   -------------------------------------------------------------------------- */
.back-top {
  position: fixed;
  right: 26px;
  bottom: 92px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  clip-path: polygon(50% 0, 100% 26%, 100% 74%, 50% 100%, 0 74%, 0 26%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all var(--transition);
  z-index: 90;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  box-shadow: var(--glow);
}

.float-cs {
  position: fixed;
  right: 26px;
  bottom: 32px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  background: linear-gradient(135deg, var(--accent), #F59E0B);
  clip-path: polygon(50% 0, 100% 26%, 100% 74%, 50% 100%, 0 74%, 0 26%);
  cursor: pointer;
  z-index: 90;
  transition: all var(--transition);
}

.float-cs:hover {
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.5), 0 12px 30px rgba(251, 191, 36, 0.3);
}

.float-cs-panel {
  position: fixed;
  right: 26px;
  bottom: 90px;
  width: 268px;
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 91;
}

.float-cs-panel.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-cs-panel h4 {
  margin-bottom: 8px;
}

.float-cs-panel p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   23. 滚动入场动画 Scroll reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   24. 竞猜列表页 jclist
   -------------------------------------------------------------------------- */
.filter-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 14px;
  align-items: end;
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand);
}

.filter-bar .field {
  gap: 6px;
}

.filter-actions {
  display: flex;
  gap: 10px;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 26px;
}

.overview-item {
  background: var(--card);
  padding: 20px;
  text-align: center;
}

.overview-item .ico {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
  color: var(--brand);
}

.overview-item b {
  display: block;
  font-family: var(--font-num);
  font-size: 27px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
}

.overview-item span {
  font-size: 12.5px;
  color: var(--text-3);
}

/* 竞猜卡片列表 */
.jc-list {
  display: grid;
  gap: 16px;
}

.jc-item {
  display: grid;
  grid-template-columns: 118px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 22px;
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}

.jc-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--brand);
  transform: scaleY(0);
  transition: transform var(--transition);
}

.jc-item:hover {
  background: var(--card-2);
  border-color: rgba(249, 115, 22, 0.4);
  transform: translateX(5px);
}

.jc-item:hover::after {
  transform: scaleY(1);
}

.jc-no {
  text-align: center;
  padding-right: 18px;
  border-right: 1px dashed var(--border);
}

.jc-no b {
  display: block;
  font-family: var(--font-num);
  font-size: 19px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.jc-no span {
  font-size: 12px;
  color: var(--text-3);
}

.jc-body h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.jc-body h3 a:hover {
  color: var(--brand-light);
}

.jc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.jc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12.5px;
  color: var(--text-3);
}

.jc-meta b {
  color: var(--text);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.jc-side {
  text-align: right;
  display: grid;
  gap: 10px;
  justify-items: end;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  transform: skewX(var(--skew));
}

.status > span {
  transform: skewX(calc(-1 * var(--skew)));
}

.status-open {
  color: #6EE7B7;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.status-live {
  color: #FCA5A5;
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.status-done {
  color: var(--text-2);
  background: var(--dark-3);
  border: 1px solid var(--border);
}

/* CSS 柱状图 */
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 220px;
  padding: 18px 18px 0;
  background: var(--dark-2);
  border: 1px solid var(--border);
}

.chart-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  gap: 8px;
}

.chart-col .bar {
  width: 100%;
  max-width: 40px;
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  height: 0;
  transition: height 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.chart-col .bar.hi {
  background: linear-gradient(180deg, var(--accent), #D97706);
}

.chart-col .bar::after {
  content: attr(data-v);
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
}

.chart-col span {
  font-size: 12px;
  color: var(--text-3);
  padding-bottom: 8px;
}

/* 环形图 */
.donut-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  flex-wrap: wrap;
}

.donut {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  flex-shrink: 0;
  background: conic-gradient(var(--brand) 0 42%, var(--accent) 42% 68%, #F59E0B 68% 84%, #3B82F6 84% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  background: var(--dark-2);
}

.donut b {
  position: relative;
  z-index: 2;
  font-family: var(--font-num);
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
}

.donut-legend {
  display: grid;
  gap: 11px;
  font-size: 13px;
  color: var(--text-2);
}

.donut-legend li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.donut-legend i {
  width: 12px;
  height: 12px;
  transform: skewX(var(--skew));
}

/* 步骤流程 */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 24px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  counter-increment: step;
}

.step::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-num);
  font-size: 30px;
  font-weight: 900;
  color: rgba(249, 115, 22, 0.32);
  line-height: 1;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 16px;
  margin-bottom: 7px;
}

.step p {
  font-size: 13px;
}

/* --------------------------------------------------------------------------
   25. 资讯列表页 news
   -------------------------------------------------------------------------- */
.cat-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
}

.cat-tab {
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-2);
  background: var(--dark-2);
  border: 1px solid var(--border);
  transform: skewX(var(--skew));
  transition: all var(--transition);
}

.cat-tab > span {
  display: block;
  transform: skewX(calc(-1 * var(--skew)));
}

.cat-tab:hover {
  color: #ffffff;
  border-color: var(--brand);
}

.cat-tab.active {
  color: #ffffff;
  background: linear-gradient(120deg, var(--brand), var(--brand-dark));
  border-color: transparent;
}

/* 头条 */
.headline {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.headline figure {
  position: relative;
  min-height: 300px;
}

.headline img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.headline .body {
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.headline h2 {
  font-size: 25px;
  line-height: 1.4;
  margin: 14px 0 12px;
}

.headline h2 a:hover {
  color: var(--brand-light);
}

.headline p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 18px;
}

.news-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: var(--text-3);
}

.news-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* 列表网格 */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-card {
  display: flex;
  flex-direction: column;
}

.news-card img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card figure {
  overflow: hidden;
  position: relative;
}

.news-card:hover img {
  transform: scale(1.07);
}

.news-card .body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 20px 20px;
}

.news-card h3 {
  font-size: 16.5px;
  line-height: 1.55;
  margin-bottom: 10px;
}

.news-card h3 a:hover {
  color: var(--brand-light);
}

.news-card .excerpt {
  font-size: 13px;
  line-height: 1.85;
  flex: 1;
  margin-bottom: 14px;
}

.news-card .foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 13px;
  border-top: 1px dashed var(--border);
  font-size: 12px;
  color: var(--text-3);
}

/* 数据速览小卡 */
.mini-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mini-stat {
  padding: 18px;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--brand);
}

.mini-stat b {
  display: block;
  font-family: var(--font-num);
  font-size: 24px;
  font-weight: 900;
  color: var(--accent);
}

.mini-stat span {
  font-size: 12.5px;
  color: var(--text-3);
}

/* 关注引导 */
.follow-box {
  padding: 22px;
  text-align: center;
  background: linear-gradient(160deg, rgba(249, 115, 22, 0.16), var(--card));
  border: 1px solid rgba(249, 115, 22, 0.35);
}

.follow-box h3 {
  margin-bottom: 8px;
}

.follow-box p {
  font-size: 13px;
  margin-bottom: 14px;
}

/* --------------------------------------------------------------------------
   26. 文章详情页 Article
   -------------------------------------------------------------------------- */
.article-head {
  padding: 32px 0 24px;
}

.article-head h1 {
  font-size: 33px;
  font-weight: 900;
  line-height: 1.42;
  margin: 16px 0 18px;
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  font-size: 13px;
  color: var(--text-3);
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-meta b {
  color: var(--text-2);
  font-weight: 700;
}

.article-figure {
  margin-bottom: 28px;
}

.article-figure img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.article-figure figcaption {
  padding: 10px 14px;
  font-size: 12.5px;
  color: var(--text-3);
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 0;
}

.article {
  font-size: 15.5px;
  line-height: 2;
  color: var(--text-2);
}

.article > p {
  margin-bottom: 20px;
  font-size: 15.5px;
  line-height: 2;
  color: var(--text-2);
}

.article h2 {
  position: relative;
  font-size: 23px;
  margin: 40px 0 18px;
  padding-left: 16px;
}

.article h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 6px;
  background: linear-gradient(180deg, var(--brand), var(--accent));
  transform: skewX(var(--skew));
}

.article h3 {
  font-size: 18px;
  margin: 26px 0 12px;
  color: var(--brand-light);
}

.article ul,
.article ol {
  margin: 0 0 20px 0;
  padding-left: 4px;
  display: grid;
  gap: 9px;
}

.article ul li,
.article ol li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.95;
}

.article ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 12px;
  width: 7px;
  height: 7px;
  background: var(--brand);
  transform: rotate(45deg);
}

.article ol {
  counter-reset: ol;
}

.article ol li {
  counter-increment: ol;
}

.article ol li::before {
  content: counter(ol) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-num);
  font-weight: 900;
  color: var(--accent);
}

.article blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.95;
  color: var(--text);
  background: var(--card);
  border-left: 4px solid var(--accent);
  position: relative;
}

.article blockquote::before {
  content: "\201C";
  position: absolute;
  right: 18px;
  top: 6px;
  font-size: 56px;
  line-height: 1;
  color: rgba(251, 191, 36, 0.2);
  font-weight: 900;
}

.article blockquote footer {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--text-3);
}

.article img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 1px solid var(--border);
  margin: 8px 0 22px;
}

.article .table-wrap {
  margin: 0 0 24px;
}

.article .table {
  min-width: 520px;
}

/* 文内小结论卡 */
.key-box {
  margin: 26px 0;
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.14), var(--card));
  border: 1px solid rgba(249, 115, 22, 0.4);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.key-box h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--accent);
}

.key-box p {
  font-size: 14px;
  line-height: 1.95;
  margin: 0;
  color: var(--text);
}

/* 文章尾部：标签与分享 */
.article-foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin: 34px 0 8px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.share-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.share-group b {
  font-size: 13px;
  color: var(--text-2);
}

.share-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  background: var(--card);
  border: 1px solid var(--border);
  transform: skewX(var(--skew));
  transition: all var(--transition);
}

.share-btn > span {
  display: flex;
  transform: skewX(calc(-1 * var(--skew)));
}

.share-btn:hover {
  color: #ffffff;
  background: var(--brand);
  border-color: var(--brand);
}

/* 上一篇 / 下一篇 */
.prev-next {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 26px 0;
}

.pn-item {
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.pn-item:hover {
  border-color: rgba(249, 115, 22, 0.5);
  background: var(--card-2);
}

.pn-item span {
  display: block;
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 7px;
}

.pn-item b {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.6;
}

.pn-item:hover b {
  color: var(--brand-light);
}

.pn-item.next {
  text-align: right;
}

/* 评论区 */
.comment-list {
  display: grid;
  gap: 16px;
  margin-bottom: 26px;
}

.comment {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--border);
}

.comment .body {
  flex: 1;
}

.comment-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.comment-head b {
  font-size: 14px;
}

.comment-head time {
  font-size: 12px;
  color: var(--text-3);
}

.comment p {
  font-size: 13.5px;
  line-height: 1.9;
}

.comment-form {
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand);
}

/* --------------------------------------------------------------------------
   27. 关于我们 About
   -------------------------------------------------------------------------- */
.about-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.about-intro .txt h2 {
  margin-bottom: 16px;
}

.about-intro .txt p {
  font-size: 14.5px;
  line-height: 2;
  margin-bottom: 14px;
}

.about-intro figure img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border: 1px solid var(--border);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%);
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.7;
}

.about-points svg {
  color: var(--brand);
  margin-top: 3px;
}

/* 关键数据 */
.stat-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.stat-band .item {
  padding: 26px 16px;
  text-align: center;
  background: var(--card);
  transition: background-color var(--transition);
}

.stat-band .item:hover {
  background: var(--card-hover);
}

.stat-band b {
  display: block;
  font-family: var(--font-num);
  font-size: 32px;
  font-weight: 900;
  color: var(--brand);
  line-height: 1.2;
}

.stat-band span {
  font-size: 12.5px;
  color: var(--text-3);
}

/* 价值观 */
.value-card {
  padding: 26px 24px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}

.value-card .vicon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  background: var(--brand-soft);
  clip-path: polygon(50% 0, 100% 26%, 100% 74%, 50% 100%, 0 74%, 0 26%);
}

.value-card:hover .vicon {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.value-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 13px;
}

/* 团队 */
.team-card {
  padding: 0;
  overflow: hidden;
  text-align: center;
}

.team-card .photo {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.team-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .photo img {
  transform: scale(1.08);
}

.team-card .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11, 18, 32, 0.88));
}

.team-card .name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 12px;
  text-align: center;
}

.team-card .name b {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
}

.team-card .name span {
  font-size: 12.5px;
  color: var(--brand-light);
}

.team-card .desc {
  padding: 16px 20px 22px;
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-2);
}

/* 荣誉徽章 */
.badge-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
}

.badge-card .bicon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: var(--accent-soft);
  clip-path: polygon(50% 0, 100% 26%, 100% 74%, 50% 100%, 0 74%, 0 26%);
}

.badge-card b {
  display: block;
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 4px;
}

.badge-card span {
  font-size: 12.5px;
  color: var(--text-3);
}

/* 服务承诺 */
.promise-card {
  border-left: 4px solid var(--brand);
  padding: 24px 22px;
}

.promise-card .no {
  font-family: var(--font-num);
  font-size: 26px;
  font-weight: 900;
  color: rgba(249, 115, 22, 0.4);
  line-height: 1;
  margin-bottom: 10px;
}

/* 联系我们 */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 18px;
}

.contact-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

.contact-item:hover {
  border-color: rgba(249, 115, 22, 0.4);
}

.contact-item .cico {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  background: var(--brand-soft);
  clip-path: polygon(22% 0, 100% 0, 78% 100%, 0 100%);
}

.contact-item h3 {
  font-size: 15px;
  margin-bottom: 5px;
}

.contact-item p,
.contact-item address {
  font-size: 13.5px;
  line-height: 1.8;
}

/* 地图占位 */
.map-placeholder {
  position: relative;
  height: 262px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(249, 115, 22, 0.08) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(rgba(249, 115, 22, 0.08) 1px, transparent 1px) 0 0 / 40px 40px,
    var(--dark-2);
  border: 1px solid var(--border);
  overflow: hidden;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 2px dashed rgba(249, 115, 22, 0.4);
  border-radius: 50%;
  animation: pulse-ring 3.2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

.map-placeholder svg {
  color: var(--brand);
  position: relative;
  z-index: 2;
}

.map-placeholder b {
  position: relative;
  z-index: 2;
  font-size: 15px;
  color: #ffffff;
}

.map-placeholder span {
  position: relative;
  z-index: 2;
  font-size: 12.5px;
  color: var(--text-3);
}

/* 通用工具类 */
.mt-0 {
  margin-top: 0;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   28. 响应式 —— 1200 / 992 / 768 / 480
   -------------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
  :root {
    --container: 1080px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .layout-main {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 26px;
  }

  .grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 28px;
  }

  .filter-bar {
    grid-template-columns: repeat(2, 1fr) auto;
  }
}

@media screen and (max-width: 992px) {
  .topbar-left .topbar-hide,
  .topbar-right .topbar-hide {
    display: none;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: var(--dark-2);
    border-bottom: 2px solid var(--brand);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    max-height: calc(100vh - var(--header-h) - var(--topbar-h));
    overflow-y: auto;
  }

  .nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 16px;
  }

  .nav-list > li > a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--divider);
    transform: none;
  }

  .nav-list > li > a > span {
    transform: none;
  }

  .nav-list > li > a::after {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-search {
    width: 170px;
  }

  .header-cta {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 50px 0 46px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-aside {
    max-width: 520px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .layout-main {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .headline {
    grid-template-columns: 1fr;
  }

  .headline figure {
    min-height: 240px;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .stat-band {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    padding: 40px 0 30px;
  }

  .article-head h1 {
    font-size: 28px;
  }

  .article-figure img {
    height: 300px;
  }

  .filter-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-actions {
    grid-column: 1 / -1;
  }

  .jc-item {
    grid-template-columns: 96px 1fr;
  }

  .jc-side {
    grid-column: 1 / -1;
    grid-template-columns: auto auto;
    justify-items: start;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px dashed var(--border);
  }

  .mini-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: 44px 0;
  }

  h1 {
    font-size: 27px;
  }

  h2 {
    font-size: 22px;
  }

  .header-inner {
    gap: 12px;
  }

  .logo-text b {
    font-size: 18px;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
  }

  .header-search {
    display: none;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-sub {
    font-size: 14.5px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stat b {
    font-size: 25px;
  }

  .hero-actions .btn {
    flex: 1;
    min-width: 150px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-6 {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .draw-row {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .draw-row .draw-meta {
    grid-column: 1 / -1;
  }

  .rank-item {
    grid-template-columns: 42px 1fr 88px;
    gap: 10px;
    padding: 12px 14px;
  }

  .rank-rate {
    display: none;
  }

  .prev-next {
    grid-template-columns: 1fr;
  }

  .pn-item.next {
    text-align: left;
  }

  .article-head h1 {
    font-size: 24px;
  }

  .article-figure img {
    height: 230px;
  }

  .article img {
    height: 200px;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .stat-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-bar {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .filter-actions .btn {
    flex: 1;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }

  .mini-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .jc-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .jc-no {
    display: flex;
    align-items: baseline;
    gap: 10px;
    text-align: left;
    padding: 0 0 10px;
    border-right: 0;
    border-bottom: 1px dashed var(--border);
  }

  .chart-bars {
    gap: 8px;
    height: 180px;
    padding: 14px 10px 0;
  }

  .chart-col .bar::after {
    font-size: 10px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .back-top {
    right: 16px;
    bottom: 84px;
    width: 42px;
    height: 42px;
  }

  .float-cs {
    right: 16px;
    bottom: 26px;
    width: 42px;
    height: 42px;
  }

  .float-cs-panel {
    right: 16px;
    bottom: 78px;
    width: calc(100vw - 32px);
    max-width: 300px;
  }

  .headline .body {
    padding: 22px 20px;
  }

  .article blockquote {
    padding: 16px 18px;
  }

  .donut-wrap {
    gap: 18px;
    padding: 18px;
  }
}

@media screen and (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .container {
    padding: 0 14px;
  }

  .section {
    padding: 34px 0;
  }

  .topbar {
    font-size: 12px;
  }

  .topbar-right .topbar-item b {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 25px;
  }

  .hero-tag {
    font-size: 11px;
    padding: 5px 12px;
  }

  .hero-stat {
    padding: 14px 10px;
  }

  .hero-stat b {
    font-size: 21px;
  }

  .hero-stat span {
    font-size: 11px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    flex: none;
  }

  .btn {
    height: 42px;
    padding: 0 18px;
    font-size: 14px;
  }

  .ball {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .ball-lg {
    width: 46px;
    height: 46px;
    font-size: 19px;
  }

  .section-head .ttl h2 {
    font-size: 20px;
  }

  .page-hero h1 {
    font-size: 24px;
  }

  .article-head h1 {
    font-size: 21px;
  }

  .rank-item {
    grid-template-columns: 36px 1fr 74px;
  }

  .rank-user {
    font-size: 13px;
  }

  .rank-score {
    font-size: 13px;
  }

  .card {
    padding: 18px;
  }

  .widget {
    padding: 16px;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

  .table th,
  .table td {
    padding: 11px 12px;
    font-size: 12.5px;
  }

  .pagination {
    gap: 6px;
  }

  .page-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 13px;
  }

  .quote-card::after {
    font-size: 58px;
  }

  .donut {
    width: 118px;
    height: 118px;
  }

  .donut::after {
    inset: 19px;
  }
}