/* roulang page: index */
:root {
  --green: #00B47F;
  --green-light: #00D78F;
  --lime: #C6FF3D;
  --red: #FF5A3C;
  --bg: #0D1117;
  --bg-2: #151B20;
  --bg-3: #1C2329;
  --text: #F2F5F7;
  --text-2: #AAB2BA;
  --text-3: #70777E;
  --border: rgba(255,255,255,.08);
  --border-soft: rgba(255,255,255,.06);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-btn: 8px;
  --shadow: 0 2px 4px rgba(0,0,0,.3);
  --shadow-lg: 0 12px 24px rgba(0,0,0,.45);
  --font-mono: "DIN Alternate", "Barlow Condensed", "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --font-cn: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, -apple-system, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-cn);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
body.nav-open {
  overflow: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  border: none;
  cursor: pointer;
}
input {
  font-family: inherit;
}
ul,
ol,
p,
h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.section {
  padding: 88px 0;
}
.section.tight {
  padding-top: 48px;
}
.section-head {
  max-width: 720px;
  margin-bottom: 32px;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--green-light);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-kicker::before {
  content: "";
  width: 14px;
  height: 2px;
  background: var(--lime);
  border-radius: 999px;
}
.section-head h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section-head p {
  margin-top: 14px;
  color: var(--text-2);
  font-size: 16px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,17,23,.88);
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--green);
  color: #0B1A15;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 0 0 4px rgba(0,180,127,.16);
}
.brand-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: .01em;
}
.brand-text small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--text-3);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 72px;
  padding: 0 12px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 18px;
  height: 2px;
  background: var(--green);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--text);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
.nav-link.active {
  color: var(--lime);
}
.header-cta {
  flex-shrink: 0;
}
.mega-holder {
  position: relative;
}
.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 12px;
  border-radius: var(--radius-btn);
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  color: #DDE4E6;
  font-size: 13px;
  transition: border-color .2s ease, background .2s ease;
}
.mega-trigger:hover {
  border-color: rgba(198,255,61,.7);
  background: rgba(255,255,255,.04);
}
.mega-trigger svg {
  transition: transform .2s ease;
}
.mega-holder.is-open .mega-trigger svg {
  transform: rotate(180deg);
}
.mega-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(880px, calc(100vw - 36px));
  background: #151B20;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  overflow: hidden;
  z-index: 120;
}
.mega-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lime);
}
.mega-holder:hover .mega-panel,
.mega-holder.is-open .mega-panel,
.mega-holder:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1fr;
  gap: 0;
}
.mega-col {
  padding: 20px 18px;
}
.mega-col + .mega-col {
  border-left: 1px solid var(--border-soft);
}
.mega-label {
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--text-3);
  margin-bottom: 12px;
  font-weight: 600;
}
.mega-link-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text-2);
  font-size: 14px;
  transition: background .2s ease, color .2s ease;
}
.mega-link-list a:hover {
  background: rgba(255,255,255,.06);
  color: var(--text);
}
.mega-link-list .mega-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
  flex-shrink: 0;
}
.mega-top-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mega-top-list a {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.5;
}
.mega-top-list a:hover {
  color: var(--green-light);
}
.mega-feature {
  background: linear-gradient(145deg, #1C2329, #10151B);
  padding: 16px;
}
.mega-feature-card {
  border-radius: 12px;
  background-image: linear-gradient(180deg, rgba(0,0,0,.05), rgba(13,17,23,.5)), url('/assets/images/coverpic/cover-4.png');
  background-size: cover;
  background-position: center;
  padding: 20px 16px;
  color: #fff;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.mega-feature-card span {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  background: rgba(0,0,0,.34);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-size: 12px;
  color: #fff;
  margin-bottom: 12px;
}
.mega-feature-card strong {
  font-size: 16px;
  line-height: 1.4;
}
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.14);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #F2F5F7;
  border-radius: 99px;
  box-shadow: 0 -5px 0 #F2F5F7, 0 5px 0 #F2F5F7;
}
.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(13,17,23,.98);
  opacity: 0;
  visibility: hidden;
  transform: translateX(18px);
  transition: opacity .24s ease, transform .24s ease, visibility .24s;
  padding: 96px 24px 36px;
  overflow-y: auto;
}
body.nav-open .mobile-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.mobile-panel-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #1C2329;
  color: #fff;
  font-size: 24px;
}
.mobile-panel a {
  display: block;
  font-size: 20px;
  font-weight: 700;
  padding: 15px 4px;
  color: #F2F5F7;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-panel .mobile-login {
  margin-top: 20px;
  display: inline-flex;
}

/* Button system */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .12s ease;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: var(--green);
  color: #10140F;
}
.btn-primary:hover {
  background: #00D98E;
  box-shadow: 0 0 22px rgba(0,180,127,.35);
}
.btn-primary:active {
  background: #079869;
}
.btn-lime {
  background: var(--lime);
  color: #10150B;
}
.btn-lime:hover {
  background: #D8FF74;
  box-shadow: 0 0 22px rgba(198,255,61,.28);
}
.btn-lime:active {
  background: #B5E633;
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.28);
  color: #EAF0F0;
}
.btn-outline:hover {
  border-color: var(--green);
  background: rgba(255,255,255,.05);
  color: #fff;
}
.btn-sm {
  height: 38px;
  padding: 0 16px;
  font-size: 13px;
}

/* Hero Live */
.hero-live {
  position: relative;
  background-color: #0D1117;
  background-image: linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), radial-gradient(ellipse at 68% 26%, rgba(0,180,127,.26), transparent 46%), linear-gradient(180deg, rgba(13,17,23,.4) 0%, rgba(13,17,23,.96) 96%), url('/assets/images/backpic/back-1.png');
  background-size: 56px 56px, 56px 56px, 100% 100%, auto, cover;
  background-position: left top, left top, center, center, center;
  padding: 64px 0 44px;
  overflow: hidden;
}
.hero-live::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(198,255,61,.10) 0%, transparent 68%);
  pointer-events: none;
}
.hero-top {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 42px;
  align-items: center;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0,180,127,.14);
  border: 1px solid rgba(0,180,127,.35);
  color: var(--green-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.hero-kicker i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(198,255,61,.18);
}
.hero-copy h1 {
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
}
.hero-lead {
  margin-top: 18px;
  font-size: clamp(17px, 2vw, 22px);
  color: #E5F0EA;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-text {
  margin-top: 14px;
  max-width: 520px;
  color: var(--text-2);
  font-size: 15px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.hero-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 22px;
  color: var(--text-2);
  font-size: 13px;
}
.hero-usps li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-usps li::before {
  content: "";
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background: rgba(0,180,127,.18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath fill='%2300D78F' d='M3.3 8 0 4.9l1.5-1.7L3.2 4.7 8.5 0 10 1.7 3.3 8Z'/%3E%3C/svg%3E") center no-repeat;
}

/* Feature broadcast card */
.hero-feature {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #151B20;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-lg);
  min-width: 0;
}
.feature-cover {
  width: 100%;
  aspect-ratio: 3 / 2.4;
  object-fit: cover;
}
.hero-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,17,23,.24) 0%, rgba(13,17,23,.12) 30%, rgba(13,17,23,.94) 100%);
}
.hero-feature-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  z-index: 2;
}
.feature-labels {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.feature-labels span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(13,17,23,.55);
  border: 1px solid rgba(255,255,255,.2);
  font-size: 12px;
  color: #fff;
}
.feature-labels .live-pill {
  color: var(--lime);
  border-color: rgba(198,255,61,.55);
  background: rgba(13,17,23,.35);
}
.match-league {
  font-size: 13px;
  color: rgba(255,255,255,.78);
}
.match-title {
  margin-top: 4px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}
.match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding: 14px 14px;
  background: rgba(13,17,23,.46);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
}
.team-name {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  min-width: 84px;
}
.team-name small {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
}
.match-vs {
  flex: 1;
  text-align: center;
  color: var(--lime);
  font-weight: 900;
  letter-spacing: .12em;
  font-size: 14px;
  font-family: var(--font-mono);
}
.match-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
}
.match-foot a {
  color: var(--lime);
  font-weight: 600;
}
.match-foot a:hover {
  text-decoration: underline;
}

/* Countdown block */
.countdown-shell {
  position: relative;
  margin-top: 44px;
  z-index: 3;
}
.countdown-bar {
  background: #151B20;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  position: relative;
  box-shadow: var(--shadow);
}
.countdown-bar::before,
.countdown-bar::after {
  content: "";
  width: 12px;
  height: 1px;
  background: var(--lime);
  opacity: .85;
}
.countdown-title {
  display: block;
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 2px;
  letter-spacing: .08em;
}
.countdown-name {
  font-size: 16px;
  color: #fff;
  font-weight: 800;
  line-height: 1.3;
}
.count-clock {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.count-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 68px;
  background: #0D1117;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 10px 6px 8px;
}
.count-num {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  min-width: 44px;
  text-align: center;
}
.count-label {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 6px;
}
.countdown-action {
  margin-left: auto;
}

/* Watch block */
.watch-block {
  margin-top: 48px;
  position: relative;
  z-index: 3;
}
.watch-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}
.watch-head h2 {
  font-size: 22px;
  font-weight: 800;
  color: #F2F5F7;
}
.watch-head a {
  color: var(--green-light);
  font-size: 14px;
  font-weight: 600;
}
.watch-list {
  border-radius: var(--radius-lg);
  background: rgba(21,27,32,.72);
  border: 1px solid var(--border-soft);
  overflow: hidden;
}
.watch-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border-soft);
  transition: background .2s ease, transform .2s ease;
}
.watch-item:last-child {
  border-bottom: none;
}
.watch-item:hover {
  background: rgba(255,255,255,.035);
}
.watch-number {
  font-family: var(--font-mono);
  color: var(--lime);
  font-size: 15px;
  opacity: .9;
}
.watch-content {
  color: #E3E9EA;
  font-size: 15px;
  line-height: 1.55;
}
.watch-content strong {
  color: #fff;
  font-weight: 700;
  margin-right: 6px;
}
.watch-link {
  color: var(--green-light);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.watch-link:hover {
  color: var(--lime);
}

/* Subscription module */
.subscribe-zone {
  margin-top: 46px;
  border-radius: var(--radius-lg);
  background: linear-gradient(115deg, rgba(0,180,127,.12), rgba(21,27,32,.9) 60%), #151B20;
  border: 1px solid rgba(0,180,127,.24);
  padding: 24px;
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 3;
}
.sub-text h3 {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
}
.sub-text p {
  color: var(--text-2);
  font-size: 14px;
  margin-top: 6px;
}
.remind-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.form-input {
  min-height: 44px;
  background: #0D1117;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-btn);
  padding: 0 14px;
  color: var(--text);
  font-size: 14px;
  flex: 1;
  min-width: 220px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-input::placeholder {
  color: var(--text-3);
}
.form-input:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(0,180,127,.18);
}
.form-state {
  grid-column: 1 / -1;
  color: var(--lime);
  font-size: 14px;
  font-weight: 600;
  min-height: 0;
}
.form-state.error {
  color: var(--red);
}

/* Replay zone */
.replay-zone {
  margin-top: 46px;
  position: relative;
  z-index: 3;
}
.replay-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}
.replay-head h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}
.replay-head a {
  color: var(--text-2);
  font-size: 13px;
}
.replay-head a:hover {
  color: var(--green-light);
}
.replay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.replay-card {
  background: #1C2329;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}
.replay-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,180,127,.5);
}
.replay-media {
  position: relative;
  overflow: hidden;
}
.replay-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .35s ease;
}
.replay-card:hover .replay-media img {
  transform: scale(1.03);
}
.replay-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(13,17,23,.72);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 12px;
  border-radius: 999px;
}
.replay-badge.live {
  color: var(--red);
  border-color: rgba(255,90,60,.5);
  font-weight: 700;
}
.replay-info {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.replay-cat {
  font-size: 12px;
  color: var(--green-light);
  font-weight: 600;
  letter-spacing: .06em;
}
.replay-info h4 {
  margin: 6px 0 8px;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 800;
  color: #F2F5F7;
}
.replay-meta {
  color: var(--text-3);
  font-size: 13px;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.replay-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: var(--green-light);
  font-size: 14px;
  font-weight: 600;
}
.replay-link:hover {
  color: var(--lime);
}

/* News area */
.news-area {
  padding: 88px 0 20px;
  position: relative;
}
.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.news-head .section-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.news-item {
  background: #151B20;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.news-item:hover {
  background: #1C2329;
  border-color: rgba(0,180,127,.4);
  box-shadow: var(--shadow-lg);
}
.news-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}
.news-meta span {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(0,180,127,.16);
  color: #00D78F;
  font-size: 12px;
  font-weight: 600;
}
.news-meta time {
  color: var(--text-3);
  font-size: 13px;
}
.news-item h3 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  color: #fff;
}
.news-item h3 a {
  position: relative;
}
.news-item h3 a:hover {
  color: var(--green-light);
}
.news-item p {
  margin-top: 6px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
  max-width: 900px;
}
.news-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--green-light);
  font-size: 14px;
  font-weight: 600;
}
.news-more:hover {
  color: var(--lime);
}
.news-item .news-more svg {
  transition: transform .2s ease;
}
.news-item:hover .news-more svg {
  transform: translateX(4px);
}
.empty-state {
  border: 1px dashed rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 44px 20px;
  text-align: center;
  color: var(--text-2);
  font-size: 15px;
  background: rgba(21,27,32,.4);
}
.empty-state i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(0,180,127,.14);
  margin-bottom: 12px;
  font-style: normal;
  font-size: 20px;
}
.empty-state p {
  margin-top: 4px;
}

/* Featured / channel */
.mid-feature {
  padding: 72px 0 20px;
}
.mid-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.focus-card {
  grid-column: span 7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: #151B20;
  border: 1px solid var(--border-soft);
  min-height: 360px;
  display: flex;
  align-items: flex-end;
}
.focus-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.focus-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,17,23,0), rgba(13,17,23,.9));
  z-index: 1;
}
.focus-card-body {
  position: relative;
  z-index: 2;
  padding: 28px;
  flex: 1;
}
.focus-card-body span {
  font-size: 13px;
  color: var(--lime);
  font-weight: 600;
}
.focus-card-body h3 {
  font-size: 26px;
  font-weight: 800;
  margin: 8px 0 10px;
  color: #fff;
  line-height: 1.3;
}
.focus-card-body p {
  color: rgba(255,255,255,.78);
  font-size: 15px;
  max-width: 520px;
}
.channel-stack {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.channel-panel {
  flex: 1;
  border-radius: var(--radius);
  background: #151B20;
  border: 1px solid var(--border-soft);
  padding: 20px;
  transition: background .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.channel-panel:hover {
  background: #1C2329;
  border-color: rgba(0,180,127,.4);
}
.channel-panel h4 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}
.channel-panel p {
  color: var(--text-2);
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.6;
}
.channel-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-size: 13px;
}
.channel-meta span {
  color: var(--text-3);
}
.channel-meta a {
  color: var(--green-light);
  font-weight: 600;
}

/* Directory */
.directory {
  padding: 72px 0 0;
}
.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.directory-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1C2329;
  border: 1px solid var(--border-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.directory-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.directory-thumb {
  overflow: hidden;
  position: relative;
}
.directory-thumb img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .35s ease;
}
.directory-card:hover .directory-thumb img {
  transform: scale(1.04);
}
.directory-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(13,17,23,.8);
  border: 1px solid rgba(198,255,61,.4);
  color: var(--lime);
  font-size: 12px;
}
.directory-card-body {
  padding: 18px 20px 20px;
}
.directory-card-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
}
.directory-card-body p {
  color: var(--text-2);
  font-size: 14px;
  margin-top: 8px;
}
.directory-go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--green-light);
  font-size: 14px;
  font-weight: 700;
}
.directory-go:hover {
  color: var(--lime);
}

/* FAQ */
.faq-section {
  padding: 88px 0 20px;
}
.faq-wrap {
  max-width: 880px;
}
.faq-item {
  background: #151B20;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item.open {
  border-color: rgba(0,180,127,.45);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 19px 22px;
  background: transparent;
  color: #F2F5F7;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}
.faq-q:hover {
  background: rgba(255,255,255,.03);
}
.faq-q .arrow {
  display: inline-flex;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--green-light);
  transition: transform .25s ease;
}
.faq-item.open .faq-q .arrow {
  transform: rotate(180deg);
}
.faq-a {
  display: none;
  padding: 0 22px 18px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.8;
}
.faq-item.open .faq-a {
  display: block;
}

/* Closing CTA */
.cta-section {
  padding: 88px 0;
}
.cta-card {
  position: relative;
  border-radius: 20px;
  background: linear-gradient(112deg, rgba(0,180,127,.18), transparent 70%), #151B20;
  border: 1px solid rgba(0,180,127,.32);
  padding: 54px 48px;
  text-align: center;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
}
.cta-card h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
}
.cta-card p {
  margin: 14px auto 28px;
  max-width: 600px;
  color: #B9C1C8;
  font-size: 16px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5,7,10,.72);
  padding: 22px;
}
.modal-backdrop.is-open {
  display: flex;
}
.modal-box {
  width: min(440px, 100%);
  background: #151B20;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: var(--text-2);
  font-size: 18px;
  transition: background .2s ease, color .2s ease;
}
.modal-close:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.modal-box h2 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}
.modal-box > p {
  color: var(--text-2);
  font-size: 14px;
  margin: 8px 0 20px;
}
.login-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.login-form .form-input {
  width: 100%;
  height: 48px;
  background: #0D1117;
}
.login-form .btn {
  width: 100%;
  height: 48px;
}
.login-tip {
  margin-top: 14px;
  color: var(--text-3);
  font-size: 13px;
  text-align: center;
}
.login-pass {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-3);
  font-size: 13px;
}
.login-pass a {
  color: var(--green-light);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-soft);
  background: #080B0E;
  padding: 64px 0 20px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr .8fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-brand {
  max-width: 280px;
}
.footer-brand .brand-text {
  font-size: 22px;
}
.footer-brand p {
  margin-top: 14px;
  color: var(--text-3);
  font-size: 13px;
  line-height: 1.8;
}
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  margin-bottom: 9px;
  color: var(--text-2);
  font-size: 14px;
}
.footer-col a:hover {
  color: var(--green-light);
}
.footer-col .footer-login-btn {
  display: inline-flex;
  margin-top: 6px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  color: var(--text-3);
  font-size: 13px;
}
.footer-bottom a {
  color: var(--text-3);
}
.footer-bottom a:hover {
  color: var(--green-light);
}

/* Responsive */
@media (max-width: 1100px) {
  .main-nav,
  .mega-holder {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .header-cta {
    display: none;
  }
}
@media (max-width: 980px) {
  .hero-top {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .hero-copy {
    max-width: 720px;
  }
  .hero-lead {
    font-size: 18px;
  }
  .hero-feature {
    max-width: 680px;
  }
  .subscribe-zone {
    grid-template-columns: 1fr;
  }
  .form-state {
    grid-column: auto;
  }
  .mid-grid {
    grid-template-columns: 1fr;
  }
  .focus-card {
    grid-column: auto;
  }
  .channel-stack {
    grid-column: auto;
  }
  .directory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (max-width: 767px) {
  .section {
    padding: 56px 0;
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .header-inner {
    height: 56px;
  }
  .brand-mark {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }
  .brand-text {
    font-size: 17px;
  }
  .hero-live {
    padding-top: 32px;
    background-size: 38px 38px, 38px 38px, 100% 100%, auto, cover;
  }
  .hero-copy h1 {
    font-size: 44px;
  }
  .hero-lead {
    font-size: 16px;
    flex-wrap: wrap;
  }
  .hero-usps {
    gap: 8px;
  }
  .countdown-bar {
    padding: 14px;
    gap: 16px;
  }
  .countdown-action {
    margin-left: 0;
    width: 100%;
  }
  .countdown-action .btn {
    width: 100%;
  }
  .count-clock {
    gap: 8px;
  }
  .count-cell {
    min-width: 60px;
  }
  .count-num {
    font-size: 36px;
  }
  .watch-item {
    grid-template-columns: 28px 1fr;
    gap: 10px;
    padding: 14px;
  }
  .watch-number {
    font-size: 13px;
  }
  .watch-link {
    grid-column: 2;
    margin-top: -4px;
  }
  .subscribe-zone {
    padding: 20px;
  }
  .remind-form .btn {
    width: 100%;
  }
  .form-input {
    min-height: 46px;
    min-width: 100%;
  }
  .replay-grid {
    grid-template-columns: 1fr;
  }
  .news-area {
    padding: 56px 0 0;
  }
  .news-item {
    padding: 18px 16px;
  }
  .news-meta time {
    margin-left: auto;
  }
  .news-item h3 {
    font-size: 17px;
  }
  .news-item p {
    font-size: 14px;
  }
  .directory-grid {
    grid-template-columns: 1fr;
  }
  .focus-card-body h3 {
    font-size: 22px;
  }
  .faq-q {
    padding: 17px 16px;
    font-size: 15px;
  }
  .faq-a {
    padding: 0 16px 16px;
    font-size: 14px;
  }
  .cta-card {
    padding: 40px 20px;
  }
  .cta-actions .btn {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
  .mega-panel {
    display: none;
  }
}
@media (max-width: 420px) {
  .count-cell {
    min-width: 54px;
    padding: 8px 4px;
  }
  .count-num {
    font-size: 34px;
  }
  .count-label {
    font-size: 11px;
  }
  .hero-copy h1 {
    font-size: 38px;
  }
}

/* roulang page: article */
:root {
    --green: #00B47F;
    --green-dark: #008F63;
    --green-light: #00D78F;
    --lime: #C6FF3D;
    --live: #FF5A3C;
    --bg: #0D1117;
    --bg-2: #151B20;
    --bg-card: #1C2329;
    --text: #F2F5F7;
    --text-2: #AAB2BA;
    --text-weak: #70777E;
    --line: rgba(255,255,255,.08);
    --line-dark: rgba(13,17,23,.08);
    --radius: 12px;
    --radius-lg: 16px;
    --shadow-card: 0 2px 4px rgba(0,0,0,.3);
    --shadow-hover: 0 12px 24px rgba(0,0,0,.45);
    --font-body: "PingFang SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
    --font-num: "DIN Alternate","Barlow Condensed","Roboto Mono",ui-monospace,monospace;
    --container: 1200px;
    --spacer-xl: 104px;
    --spacer-lg: 88px;
    --spacer-md: 56px;
    --spacer-sm: 32px;
  }

  *,
  *::before,
  *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background-color: var(--bg);
    background-image:
      linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 44px 44px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.75;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
  }

  body.menu-locked { overflow: hidden; }

  img,
  svg,
  video { display: block; max-width: 100%; }

  a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
  }

  button {
    font-family: inherit;
    border: 0;
    cursor: pointer;
    background: none;
    color: inherit;
  }

  input {
    font-family: inherit;
    border: 0;
    outline: none;
  }

  ul,
  ol { list-style: none; }

  .container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    padding: 0 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    transition: all .22s ease;
    user-select: none;
  }

  .btn svg,
  .btn .ico { width: 16px; height: 16px; flex: 0 0 auto; }

  .btn-primary {
    background: var(--green);
    color: #fff;
  }

  .btn-primary:hover { background: #00c48e; box-shadow: 0 0 18px rgba(0,180,127,.35); }
  .btn-primary:active { background: #009768; }

  .btn-lime {
    background: var(--lime);
    color: #101418;
  }

  .btn-lime:hover { background: #d2ff74; box-shadow: 0 0 18px rgba(198,255,61,.35); }
  .btn-lime:active { background: #a8da20; }

  .btn-ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,.22);
    color: var(--text);
  }

  .btn-ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.46); }
  .btn-ghost:active { background: rgba(255,255,255,.12); }

  .btn-sm { height: 38px; padding: 0 14px; font-size: 14px; }

  .btn:focus-visible,
  .nav-link:focus-visible,
  a:focus-visible,
  input:focus-visible,
  button:focus-visible {
    outline: 2px solid var(--lime);
    outline-offset: 2px;
  }

  /* ---------- Header ---------- */
  .site-header {
    position: relative;
    z-index: 100;
    background: rgba(13,17,23,.84);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
  }

  .header-inner {
    height: 72px;
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
  }

  .brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--green);
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -.5px;
    box-shadow: 0 0 0 4px rgba(0,180,127,.16);
  }

  .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -.2px;
    color: var(--text);
  }

  .brand-text small {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-weak);
    letter-spacing: 1.2px;
    margin-top: 3px;
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 18px;
  }

  .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    color: var(--text-2);
    font-size: 14.5px;
    font-weight: 600;
    border-radius: 8px;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 3px;
    height: 2px;
    border-radius: 2px;
    background: var(--green);
    opacity: 0;
    transform: translateY(3px);
    transition: .2s ease;
  }

  .nav-link:hover { color: #fff; background: rgba(255,255,255,.04); }
  .nav-link:hover::after { opacity: 1; transform: translateY(0); }

  .nav-link.active {
    color: var(--text);
    background: rgba(0,180,127,.1);
  }

  .nav-link.active::after {
    opacity: 1;
    transform: translateY(0);
    background: var(--lime);
  }

  .header-tools {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
  }

  .mega-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.14);
    color: var(--text-2);
    font-size: 13.5px;
    font-weight: 600;
    transition: all .2s ease;
  }

  .mega-btn:hover {
    color: var(--lime);
    border-color: rgba(198,255,61,.48);
  }

  .sign-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--live);
    box-shadow: 0 0 0 3px rgba(255,90,60,.16);
    animation: sign-blink 2.2s infinite;
  }

  @keyframes sign-blink {
    50% { opacity: .4; }
  }

  .hamburger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--line);
    align-items: center;
    justify-content: center;
  }

  .hamburger span {
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    position: relative;
  }

  .hamburger span::before,
  .hamburger span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--text);
  }

  .hamburger span::before { top: -5px; }
  .hamburger span::after { top: 5px; }

  /* Mega layer */
  .mega-layer {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    background: rgba(8,11,15,.62);
    visibility: hidden;
    opacity: 0;
    transition: all .22s ease;
  }

  .mega-layer.open { visibility: visible; opacity: 1; }

  .mega-panel {
    position: relative;
    width: calc(100% - 40px);
    max-width: 920px;
    margin: 20px auto 0;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-top: 3px solid var(--lime);
    border-radius: 16px;
    box-shadow: 0 24px 50px rgba(0,0,0,.5);
    opacity: 0;
    transform: translateY(-6px);
    transition: all .24s ease .04s;
  }

  .mega-layer.open .mega-panel { opacity: 1; transform: translateY(0); }

  .mega-grid {
    display: grid;
    grid-template-columns: 1.15fr .9fr 1fr;
    gap: 0;
    padding: 26px 28px 20px;
  }

  .mega-col {
    padding: 0 22px;
    border-right: 1px solid var(--line);
  }

  .mega-col:first-child { padding-left: 0; }
  .mega-col:last-child { border-right: 0; padding-right: 0; }

  .mega-col h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--lime);
    letter-spacing: .4px;
    text-transform: uppercase;
    margin-bottom: 14px;
  }

  .mega-col h3::before { content: ""; display: inline-block; width: 4px; height: 12px; background: var(--green); border-radius: 4px; vertical-align: -2px; margin-right: 8px; }

  .mega-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 8px;
    border-radius: 10px;
    color: var(--text-2);
    font-size: 14px;
    transition: all .16s ease;
  }

  .mega-list a:hover { color: var(--text); background: rgba(255,255,255,.06); }
  .mega-list a i { font-style: normal; color: var(--green); }

  .mega-list small {
    display: block;
    font-size: 12px;
    color: var(--text-weak);
    margin-top: 2px;
  }

  .mega-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 14px 28px;
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.02);
    border-radius: 0 0 16px 16px;
    flex-wrap: wrap;
  }

  .mega-bottom p {
    font-size: 13px;
    color: var(--text-weak);
  }

  .mega-bottom p strong { color: var(--lime); font-family: var(--font-num); }

  .mega-entry {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .mega-entry .cover {
    width: 110px;
    height: 62px;
    background: var(--bg-card);
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }

  .mega-entry .cover span {
    position: absolute;
    left: 6px;
    top: 5px;
    background: rgba(255,90,60,.9);
    font-size: 10px;
    color: #fff;
    padding: 2px 6px;
    border-radius: 999px;
    letter-spacing: .4px;
  }

  .mega-entry b {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
  }

  .mega-entry small { color: var(--text-weak); font-size: 12px; }

  /* ---------- Mobile drawer ---------- */
  .mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(86vw, 420px);
    height: 100vh;
    z-index: 120;
    background: var(--bg-2);
    border-left: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    padding: 26px 22px 40px;
    transition: right .28s ease;
  }

  .mobile-nav.open { right: 0; }

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
  }

  .close-cross {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    position: relative;
    transition: .2s;
  }

  .close-cross:hover { transform: rotate(90deg); }
  .close-cross::before,
  .close-cross::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
  }
  .close-cross::before { transform: translate(-50%,-50%) rotate(45deg); }
  .close-cross::after { transform: translate(-50%,-50%) rotate(-45deg); }

  .mobile-nav a.m-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
  }

  .mobile-nav a.m-nav .slug-dot { color: var(--text-weak); font-size: 12px; }
  .mobile-nav a.m-nav:active { color: var(--green); }

  .mobile-nav .m-login {
    margin-top: auto;
    background: var(--green);
    color: #fff;
    text-align: center;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
  }

  /* ---------- Article hero ---------- */
  .article-hero {
    position: relative;
    padding: 64px 0 50px;
    border-bottom: 1px solid var(--line);
    background-size: cover;
    background-position: center;
  }

  .article-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(174deg, rgba(13,17,23,.94) 20%, rgba(13,17,23,.66) 80%), rgba(13,17,23,.82);
  }

  .article-hero-inner { position: relative; z-index: 2; max-width: 1000px; }

  .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-weak);
    margin-bottom: 22px;
  }

  .breadcrumb a { color: var(--text-2); }
  .breadcrumb a:hover { color: var(--green); }
  .breadcrumb .sep { color: rgba(255,255,255,.2); }
  .breadcrumb .cur { color: var(--text); }

  .live-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    background: rgba(255,90,60,.1);
    border: 1px solid rgba(255,90,60,.24);
    color: var(--live);
    padding: 3px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
  }
  .live-tag .tube {
    width: 8px; height: 8px; border-radius: 2px; background: var(--live);
  }

  .article-hero h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -.4px;
    margin-bottom: 16px;
    max-width: 820px;
  }

  .meta-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    color: var(--text-weak);
    font-size: 13.5px;
    margin-top: 16px;
  }

  .meta-line span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }

  .meta-line .cat-link {
    padding: 3px 12px;
    border-radius: 999px;
    background: rgba(0,180,127,.14);
    color: var(--green-light);
    font-weight: 700;
  }

  .data-num { font-family: var(--font-num); }

  /* ---------- Article layout ---------- */
  .article-section {
    padding: 64px 0 88px;
    position: relative;
  }

  .article-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 48px;
    align-items: start;
  }

  .article-main {
    min-width: 0;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(20px, 4vw, 48px);
    box-shadow: var(--shadow-card);
  }

  .article-main-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }

  .article-main-top .art-cat {
    background: rgba(0,180,127,.16);
    color: var(--green-light);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 700;
  }

  .article-main-top .read-time {
    color: var(--text-weak);
    font-size: 13px;
    font-family: var(--font-num);
  }

  .article-body {
    color: #E6EAED;
    font-size: 17px;
    line-height: 1.9;
    word-break: break-word;
  }

  .article-body > * + * { margin-top: 18px; }
  .article-body h2 {
    font-size: 23px;
    font-weight: 800;
    color: #fff;
    margin-top: 44px;
    margin-bottom: 14px;
    padding-left: 14px;
    border-left: 4px solid var(--green);
    line-height: 1.5;
  }
  .article-body h3 {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin-top: 34px;
    margin-bottom: 12px;
  }
  .article-body p { letter-spacing: .2px; }

  .article-body a {
    color: var(--green-light);
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .article-body a:hover { color: var(--lime); }

  .article-body ul,
  .article-body ol {
    padding-left: 22px;
    display: grid;
    gap: 6px;
  }
  .article-body ul { list-style: disc; }
  .article-body ol { list-style: decimal; }
  .article-body li::marker { color: var(--green); }

  .article-body blockquote {
    margin: 28px 0;
    padding: 18px 20px;
    background: rgba(255,255,255,.035);
    border-left: 4px solid var(--green);
    color: var(--text-2);
    border-radius: 0 12px 12px 0;
  }

  .article-body img {
    max-width: 100%;
    border-radius: 8px;
    margin: 24px 0 6px;
    border: 1px solid var(--line);
  }
  .article-body figure img { margin: 0; }
  .article-body figcaption {
    font-size: 13px;
    color: var(--text-weak);
    text-align: center;
    margin-top: 8px;
  }

  .article-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }

  .article-tag-row .tag {
    padding: 6px 14px;
    background: rgba(255,255,255,.05);
    border-radius: 999px;
    color: var(--text-2);
    font-size: 13px;
    transition: .18s;
  }
  .article-tag-row .tag:hover { background: var(--green); color: #fff; }

  .article-nav-pager {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
  }

  .pager-item {
    flex: 1;
    padding: 15px 16px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text-2);
    font-size: 14.5px;
    transition: .2s;
  }
  .pager-item:hover { border-color: var(--green); color: var(--text); background: rgba(0,180,127,.06); }
  .pager-item small { display: block; color: var(--text-weak); font-size: 12px; margin-bottom: 3px; }
  .pager-item span { display: block; white-space: nowrap; overflow: hidden; max-width: 260px; text-overflow: ellipsis; }
  .pager-item.pager-next { text-align: right; }

  /* ---------- Article sidebar ---------- */
  .article-aside {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: sticky;
    top: 104px;
  }

  .aside-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-card);
  }

  .aside-card h4 {
    font-size: 14px;
    color: var(--lime);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
  }

  .side-live {
    border-radius: 12px;
    overflow: hidden;
  }

  .side-live .cover {
    position: relative;
    height: 160px;
    background-size: cover;
    background-position: center;
  }

  .side-live .cover .badge-live {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--live);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: .4px;
    box-shadow: 0 2px 10px rgba(255,90,60,.45);
  }

  .side-live-body { padding: 14px; background: var(--bg-2); border: 1px solid var(--line); border-top: 0; border-radius: 0 0 12px 12px; }

  .side-live-body b { color: var(--text); font-size: 15px; display: block; margin-bottom: 3px; }
  .side-live-body .time { color: var(--text-weak); font-size: 13px; font-family: var(--font-num); }

  .side-team {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    align-items: center;
    margin: 12px 0;
  }
  .side-team .tname { font-size: 13px; font-weight: 700; }
  .side-team .tname:first-child { text-align: left; }
  .side-team .tname:last-child { text-align: right; }
  .side-team .tvs {
    color: var(--lime);
    font-family: var(--font-num);
    font-size: 17px;
    font-weight: 800;
  }

  .side-link { display: block; margin-top: 12px; text-align: center; }

  .side-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-2);
    font-size: 14.5px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
    transition: .16s;
  }
  .side-links a:last-child { border-bottom: 0; }
  .side-links a:hover { color: var(--green); padding-left: 4px; }
  .side-links a i { color: var(--text-weak); }
  .side-links a em { font-style: normal; font-size: 12px; color: var(--green); font-family: var(--font-num); }

  /* ---------- Related ---------- */
  .related-section {
    padding: 84px 0 64px;
  }

  .related-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
  }

  .related-top h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    letter-spacing: -.3px;
    line-height: 1.3;
  }

  .related-top h2 .text-stripe {
    display: inline-block;
    width: 9px;
    height: 9px;
    background: var(--green);
    margin-right: 12px;
    border-radius: 2px;
    vertical-align: middle;
  }

  .link-all {
    color: var(--green-light);
    padding: 8px 12px;
    font-size: 14px;
  }
  .link-all:hover { color: var(--lime); }
  .link-all .arrow { transition: transform .2s; display: inline-block; }
  .link-all:hover .arrow { transform: translateX(4px); }

  .related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .rel-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .22s ease;
  }
  .rel-card:hover { transform: translateY(-4px); border-color: rgba(0,180,127,.6); box-shadow: var(--shadow-hover); }

  .rel-card .pic {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform .25s ease;
  }
  .rel-card:hover .pic { transform: scale(1.03); }
  .rel-pic { overflow: hidden; background: var(--bg-card); }

  .rel-info { padding: 14px 14px 18px; }
  .rel-meta { display: flex; justify-content: space-between; align-items: center; gap: 8px; color: var(--text-weak); font-size: 12px; margin-bottom: 9px; }
  .rel-meta .rel-cat { color: var(--green-light); background: rgba(0,180,127,.14); border-radius: 999px; padding: 2px 9px; }
  .rel-info h3 { font-size: 15.5px; line-height: 1.55; font-weight: 700; color: var(--text); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 44px; }
  .rel-card:hover .rel-info h3 { color: var(--green-light); }
  .rel-info .rel-sum { font-size: 13px; color: var(--text-2); margin-top: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.6; }

  /* ---------- CTA ---------- */
  .article-cta {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    padding: 68px 0 76px;
    margin-top: 60px;
  }

  .cta-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }

  .cta-copy { flex: 1 1 300px; max-width: 680px; }
  .cta-copy h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin-bottom: 12px; }
  .cta-copy h2 .dot { color: var(--lime); }
  .cta-copy p { color: var(--text-2); font-size: 15.5px; max-width: 560px; }

  .cta-btn-wrap { display: flex; gap: 14px; flex-wrap: wrap; }
  .cta-btn-wrap .btn { min-width: 156px; }

  .cta-tip {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-weak);
    font-size: 13px;
    margin-top: 18px;
    flex-wrap: wrap;
  }
  .cta-tip i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0,180,127,.15);
    color: var(--green-light);
    font-style: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
  }

  /* ---------- FAQ ---------- */
  .faq-compact {
    max-width: 860px;
    margin: 0 auto;
    padding: 80px 0 40px;
  }

  .faq-compact h2 {
    text-align: center;
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 38px;
  }

  .faq-item {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: .2s;
  }
  .faq-item:hover { border-color: rgba(0,180,127,.35); }

  .faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    list-style: none;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 16.5px;
    font-weight: 700;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item .plus { position: relative; width: 30px; height: 30px; flex: 0 0 auto; border-radius: 50%; background: rgba(255,255,255,.05); }
  .faq-item .plus::after,
  .faq-item .plus::before {
    content: "";
    position: absolute;
    left: 50%; top: 50%;
    width: 12px; height: 2px;
    background: var(--text-2);
    transform: translate(-50%,-50%);
    transition: .2s;
  }
  .faq-item .plus::before { transform: translate(-50%,-50%) rotate(90deg); }
  .faq-item[open] .plus { background: rgba(0,180,127,.16); }
  .faq-item[open] .plus::after,
  .faq-item[open] .plus::before { background: var(--green-light); }
  .faq-item[open] .plus::before { transform: translate(-50%,-50%) rotate(0deg); }

  .faq-item .faq-answer { padding: 0 24px 20px; color: var(--text-2); font-size: 15px; line-height: 1.85; max-width: 690px; }

  /* ---------- Not found ---------- */
  .blank-message {
    min-height: 46vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 70px 20px;
  }

  .blank-message .box {
    max-width: 480px;
    padding: 46px 40px;
    border: 1px dashed rgba(255,255,255,.14);
    background: var(--bg-2);
    border-radius: 20px;
  }
  .blank-message .ico-cal { width: 48px; height: 48px; margin: 0 auto 18px; border-radius: 14px; background: rgba(0,180,127,.16); position: relative; }
  .blank-message .ico-cal::after { content: "!"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--green-light); font-size: 24px; font-weight: 800; }
  .blank-message h1 { font-size: 22px; margin-bottom: 8px; font-weight: 800; }
  .blank-message p { color: var(--text-2); font-size: 15px; margin-bottom: 22px; }

  /* ---------- Login modal ---------- */
  .modal-layer {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(6,8,12,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: .25s;
  }
  .modal-layer.open { visibility: visible; opacity: 1; }

  .modal-box {
    width: min(420px, 100%);
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-top: 3px solid var(--lime);
    border-radius: 18px;
    padding: 32px 30px;
    transform: translateY(16px);
    transition: .25s ease;
    box-shadow: 0 28px 60px rgba(0,0,0,.6);
  }
  .modal-layer.open .modal-box { transform: translateY(0); }

  .modal-close {
    width: 32px;
    height: 32px;
    float: right;
    position: relative;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
  }
  .modal-close::before,
  .modal-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: var(--text-2);
  }
  .modal-close::before { transform: translate(-50%,-50%) rotate(45deg); }
  .modal-close::after { transform: translate(-50%,-50%) rotate(-45deg); }

  .modal-box h3 { font-size: 22px; clear: both; margin-bottom: 6px; }
  .modal-box .sub { color: var(--text-weak); font-size: 13.5px; margin-bottom: 24px; }

  .form-row { margin-bottom: 14px; }
  .form-row label { display: block; margin-bottom: 7px; font-size: 13px; color: var(--text-2); }
  .form-input {
    width: 100%;
    background: var(--bg);
    border: 1px solid rgba(255,255,255,.13);
    height: 48px;
    padding: 0 16px;
    border-radius: 9px;
    color: var(--text);
    font-size: 15px;
    transition: border-color .2s;
  }
  .form-input::placeholder { color: var(--text-weak); }
  .form-input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,180,127,.2); }

  .form-row-inline { display: grid; grid-template-columns: 1fr 110px; gap: 10px; }
  .form-row-inline .btn { height: 48px; }

  .form-note { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 16px; color: var(--text-weak); font-size: 12px; line-height: 1.55; text-align: center; }
  .form-note .dotline { color: var(--green-light); }

  /* ---------- Footer ---------- */
  .footer {
    background: #0B0F14;
    border-top: 1px solid var(--line);
    padding: 78px 0 30px;
    margin-top: auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 340px 1fr 1fr 1fr;
    gap: 42px;
    padding-bottom: 54px;
    border-bottom: 1px solid var(--line);
  }

  .footer-brand .brand { margin-bottom: 18px; }
  .footer-brand p {
    color: var(--text-2);
    font-size: 14px;
    max-width: 320px;
    line-height: 1.8;
  }

  .footer-col h4 {
    color: var(--text);
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: 700;
  }
  .footer-col a {
    display: block;
    color: var(--text-2);
    font-size: 14px;
    padding: 7px 0;
    transition: color .16s;
  }
  .footer-col a:hover { color: var(--green-light); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 24px;
    flex-wrap: wrap;
    color: var(--text-weak);
    font-size: 13px;
  }
  .footer-bottom a { color: var(--text-2); }
  .footer-bottom a:hover { color: var(--green-light); }

  /* ---------- Responsive ---------- */
  @media (max-width: 1180px) {
    .main-nav { gap: 2px; }
    .nav-link { padding: 7px 9px; font-size: 14px; }
    .article-grid { grid-template-columns: minmax(0, 1fr) 310px; gap: 30px; }
    .related-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  }

  @media (max-width: 1060px) {
    .main-nav, .mega-btn { display: none; }
    .hamburger { display: flex; }
    .header-inner { gap: 12px; }
    .article-grid { grid-template-columns: 1fr; }
    .article-aside {
      position: static;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
    .footer-brand { grid-column: 1 / -1; }
  }

  @media (max-width: 760px) {
    .container { padding: 0 16px; }
    .header-inner { height: 60px; }
    .brand-mark { width: 36px; height: 36px; font-size: 16px; }
    .brand-text { font-size: 16px; }
    .header-tools .btn { padding: 0 14px; height: 38px; }
    .mega-layer { top: 60px; }
    .article-hero { padding: 40px 0 30px; }
    .article-hero h1 { font-size: 24px; }
    .meta-line { gap: 10px; }
    .meta-line span { font-size: 12px; }
    .article-section { padding: 40px 0 60px; }
    .article-main { padding: 20px 18px 26px; border-radius: 12px; }
    .article-body { font-size: 16.5px; }
    .article-body h2 { font-size: 20px; }
    .article-aside { grid-template-columns: 1fr; }
    .related-section { padding: 54px 0 40px; }
    .related-grid { grid-template-columns: 1fr; }
    .rel-card { display: grid; grid-template-columns: 116px 1fr; align-items: stretch; }
    .rel-pic { min-height: 112px; }
    .rel-card .pic { aspect-ratio: auto; height: 100%; }
    .rel-info { padding: 12px; }
    .rel-info h3 { -webkit-line-clamp: 2; }
    .article-cta { padding: 44px 0 52px; }
    .cta-btn-wrap .btn { width: 100%; }
    .section-head h2 { font-size: 24px; }
    .footer { padding-top: 56px; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-brand p { max-width: 100%; }
    .faq-compact { padding: 60px 0 20px; }
    .faq-item summary { padding: 16px 16px; font-size: 15.5px; }
    .article-nav-pager { flex-direction: column; }
    .blank-message .box { padding: 36px 22px; }
    .footer-bottom { flex-direction: column; justify-content: center; text-align: center; }
  }

  @media (max-width: 500px) {
    .header-tools .btn { width: 40px; padding: 0; font-size: 0; }
    .header-tools .btn::first-letter { font-size: 14px; }
    .mega-grid { grid-template-columns: 1fr; padding: 22px 20px; }
    .mega-col { border-right: 0; border-bottom: 1px solid var(--line); padding: 10px 0 18px; }
    .mega-bottom { padding: 14px 20px; }
    .meta-line span:nth-child(2) { display: none; }
    .rel-card { grid-template-columns: 1fr; }
    .rel-pic .pic { height: auto; aspect-ratio: 16/10; }
    .rel-truncate { min-height: auto; }
  }

/* roulang page: category1 */
:root{
  --bg:#0D1117;
  --bg-2:#151B20;
  --bg-3:#1C2329;
  --green:#00B47F;
  --green-bright:#00D78F;
  --lime:#C6FF3D;
  --live:#FF5A3C;
  --text:#F2F5F7;
  --text-2:#AAB2BA;
  --text-weak:#70777E;
  --dark-text:#101418;
  --border:rgba(255,255,255,.08);
  --border-soft:rgba(255,255,255,.06);
  --radius-card:12px;
  --radius-box:16px;
  --radius-btn:8px;
  --shadow:0 2px 4px rgba(0,0,0,.3);
  --shadow-hover:0 12px 24px rgba(0,0,0,.45);
  --maxw:1200px;
  --side:24px;
  --speed:.25s;
  --font-cn:"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
  --font-num:"DIN Alternate","Barlow Condensed","Roboto Mono",ui-monospace,"SF Mono",monospace;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-cn);
  font-size:16px;
  line-height:1.7;
  min-height:100vh;
  -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button,input{font-family:inherit;font-size:inherit}
button{cursor:pointer;border:none;background:none;color:inherit}
ul,ol{list-style:none}
.container{width:100%;max-width:var(--maxw);margin:0 auto;padding-left:var(--side);padding-right:var(--side)}
.zone{padding:remove if use}
/* background texture */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:52px 52px;
  opacity:.35;
}
.site-header,.container,.page-hero,.zone,.footer,.login-modal{position:relative;z-index:1}
a:focus-visible,button:focus-visible,input:focus-visible{
  outline:2px solid var(--lime);
  outline-offset:3px;
  border-radius:6px;
}
::selection{background:rgba(0,180,127,.35);color:#fff}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-weight:700;
  border-radius:var(--radius-btn);
  padding:0 20px;
  height:44px;
  transition:all var(--speed) ease;
  white-space:nowrap;
  border:1px solid transparent;
}
.btn-primary{
  background:var(--green);
  color:#fff;
}
.btn-primary:hover{
  background:var(--green-bright);
  box-shadow:0 0 18px rgba(0,180,127,.3);
  color:#fff;
}
.btn-primary:active{
  transform:translateY(1px);
  background:#009c6d;
}
.btn-cta{
  background:var(--lime);
  color:var(--dark-text);
}
.btn-cta:hover{
  background:#d7ff67;
  box-shadow:0 0 18px rgba(198,255,61,.25);
  color:var(--dark-text);
}
.btn-cta:active{
  background:#b0e62a;
  transform:translateY(1px);
}
.btn-outline{
  background:rgba(255,255,255,.02);
  border-color:rgba(255,255,255,.2);
  color:var(--text);
}
.btn-outline:hover{
  border-color:rgba(255,255,255,.42);
  background:rgba(255,255,255,.05);
  color:#fff;
}
.btn-outline:active{
  transform:translateY(1px);
}
.btn-sm{height:38px;padding:0 16px;font-size:14px}
.btn-block{width:100%}

.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  height:26px;
  padding:0 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  background:rgba(255,255,255,.07);
  color:var(--text-2);
}
.badge-green{
  background:rgba(0,180,127,.16);
  color:var(--green-bright);
}
.badge-live{
  background:rgba(255,90,60,.15);
  color:var(--live);
}
.badge-lime{
  background:rgba(198,255,61,.14);
  color:var(--lime);
}

/* header */
.site-header{
  position:sticky;
  top:0;
  height:72px;
  background:rgba(13,17,23,.78);
  -webkit-backdrop-filter:blur(14px);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border-soft);
  transition:background var(--speed),box-shadow var(--speed);
  z-index:100;
}
.site-header.is-scrolled{
  background:rgba(13,17,23,.94);
  box-shadow:0 8px 30px rgba(0,0,0,.3);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  height:72px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}
.brand-mark{
  width:40px;
  height:40px;
  border-radius:10px;
  background:var(--green);
  color:var(--dark-text);
  font-weight:900;
  font-size:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  letter-spacing:1px;
}
.brand-name{
  font-size:21px;
  font-weight:900;
  letter-spacing:.5px;
  color:#fff;
  line-height:1.1;
}
.brand-tag{
  font-size:12px;
  color:var(--text-weak);
  display:block;
  margin-top:2px;
}
.main-nav{
  display:flex;
  align-items:center;
  gap:6px;
}
.nav-link{
  position:relative;
  display:inline-flex;
  align-items:center;
  height:44px;
  padding:0 15px;
  font-weight:600;
  font-size:15px;
  color:var(--text-2);
  border-radius:8px;
  transition:color var(--speed),background var(--speed);
}
.nav-link::after{
  content:"";
  position:absolute;
  left:15px;
  right:15px;
  bottom:2px;
  height:2px;
  border-radius:2px;
  background:var(--green);
  opacity:0;
  transform:scaleX(.3);
  transition:transform var(--speed),opacity var(--speed);
}
.nav-link:hover{
  color:#fff;
  background:rgba(255,255,255,.04);
}
.nav-link:hover::after{
  opacity:1;
  transform:scaleX(1);
}
.nav-link.active{
  color:#fff;
}
.nav-link.active::after{
  opacity:1;
  transform:scaleX(1);
  background:var(--lime);
}
.header-tools{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}
.mega-wrap{
  position:relative;
}
.mega-toggle{
  display:inline-flex;
  align-items:center;
  gap:8px;
  height:40px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--border);
  color:var(--text-2);
  font-size:14px;
  font-weight:600;
  transition:all var(--speed);
}
.mega-toggle:hover{
  color:var(--lime);
  border-color:rgba(198,255,61,.45);
}
.mega-toggle .mega-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--green-bright);
  box-shadow:0 0 0 4px rgba(0,180,127,.15);
}
.mega-toggle svg{
  width:14px;
  height:14px;
  transition:transform var(--speed);
}
.mega-toggle[aria-expanded="true"] svg{
  transform:rotate(180deg);
}
.mega-panel{
  position:absolute;
  right:0;
  top:calc(100% + 12px);
  width:840px;
  max-width:calc(100vw - 32px);
  background:var(--bg-2);
  border:1px solid var(--border);
  border-radius:var(--radius-box);
  display:grid;
  grid-template-columns:1.1fr 1.2fr 1fr;
  gap:20px;
  padding:24px;
  opacity:0;
  visibility:hidden;
  transform:translateY(-8px);
  transition:all .28s ease;
  box-shadow:var(--shadow-hover);
  z-index:120;
}
.mega-panel::before{
  content:"";
  position:absolute;
  top:-1px;
  left:24px;
  right:24px;
  height:3px;
  background:var(--lime);
  border-radius:3px;
}
.mega-panel.open{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.mega-label{
  display:block;
  font-size:13px;
  color:var(--text-weak);
  letter-spacing:1px;
  margin-bottom:12px;
  font-weight:600;
}
.mega-list{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.mega-list a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:9px 10px;
  border-radius:8px;
  color:var(--text-2);
  font-size:14px;
  transition:background var(--speed),color var(--speed);
}
.mega-list a:hover{
  color:var(--lime);
  background:rgba(255,255,255,.06);
}
.mega-feed{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.feed-link{
  display:flex;
  gap:12px;
  align-items:center;
  padding:9px;
  border-radius:10px;
  transition:background var(--speed);
}
.feed-link:hover{
  background:rgba(255,255,255,.05);
}
.feed-icon{
  width:36px;
  height:36px;
  flex-shrink:0;
  border-radius:9px;
  background:rgba(0,180,127,.16);
  color:var(--green-bright);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
}
.feed-title{
  font-size:14px;
  font-weight:600;
  color:var(--text);
  line-height:1.4;
}
.feed-meta{
  font-size:12px;
  color:var(--text-weak);
}
.mega-card{
  position:relative;
  border-radius:12px;
  overflow:hidden;
  min-height:150px;
  display:flex;
  align-items:flex-end;
}
.mega-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s;
}
.mega-card:hover img{
  transform:scale(1.04);
}
.mega-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(13,17,23,.9),rgba(13,17,23,.05));
}
.mega-card-content{
  position:relative;
  z-index:2;
  padding:16px;
  width:100%;
}
.mega-card-content strong{
  display:block;
  font-size:14px;
  color:#fff;
}
.mega-card-content span{
  font-size:12px;
  color:rgba(255,255,255,.7);
}
.nav-login{
  height:40px;
}
.burger{
  display:none;
  width:42px;
  height:42px;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--border);
}
.burger span{
  width:18px;
  height:2px;
  background:#fff;
  border-radius:2px;
  position:relative;
  display:block;
  transition:all var(--speed);
}
.burger span::before,
.burger span::after{
  content:"";
  position:absolute;
  width:18px;
  height:2px;
  background:#fff;
  border-radius:2px;
  left:0;
  transition:all var(--speed);
}
.burger span::before{top:-6px}
.burger span::after{top:6px}
body.nav-open .burger span{
  background:transparent;
}
body.nav-open .burger span::before{
  top:0;
  transform:rotate(45deg);
  background:var(--lime);
}
body.nav-open .burger span::after{
  top:0;
  transform:rotate(-45deg);
  background:var(--lime);
}
.mobile-nav{
  display:none;
  position:fixed;
  inset:72px 0 0;
  background:rgba(13,17,23,.98);
  -webkit-backdrop-filter:blur(20px);
  backdrop-filter:blur(20px);
  padding:28px var(--side) 40px;
  overflow-y:auto;
  z-index:90;
  opacity:0;
  visibility:hidden;
  transform:translateX(30px);
  transition:opacity .25s,transform .25s,visibility .25s;
}
.mobile-nav.open{
  opacity:1;
  visibility:visible;
  transform:translateX(0);
}
.mobile-nav a.m-nav-link{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 0;
  border-bottom:1px solid var(--border-soft);
  font-size:18px;
  font-weight:700;
  color:var(--text);
}
.mobile-nav a.m-nav-link:hover{
  color:var(--lime);
}
.m-check{
  font-size:13px;
  color:var(--text-weak);
  padding:14px 0 4px;
}

/* page hero */
.page-hero{
  position:relative;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  padding:76px 0 64px;
  overflow:hidden;
}
.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(13,17,23,.96) 20%,rgba(13,17,23,.62) 62%,rgba(13,17,23,.35));
  z-index:1;
}
.page-hero::after{
  content:"";
  position:absolute;
  left:-120px;
  bottom:-180px;
  width:420px;
  height:420px;
  border-radius:50%;
  border:1px solid rgba(0,180,127,.2);
  box-shadow:0 0 0 44px rgba(0,180,127,.05),0 0 0 90px rgba(0,180,127,.02);
  z-index:1;
  pointer-events:none;
}
.hero-inner{
  position:relative;
  z-index:2;
}
.crumb-line{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  font-size:13px;
  color:var(--text-weak);
  margin-bottom:16px;
}
.crumb-line a{
  color:var(--text-2);
  transition:color var(--speed);
}
.crumb-line a:hover{
  color:var(--green-bright);
}
.crumb-line i{
  font-style:normal;
  opacity:.5;
}
.crumb-current{
  color:var(--lime);
  font-weight:600;
}
.cat-hero-layout{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:48px;
  align-items:center;
}
.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  height:30px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(198,255,61,.12);
  border:1px solid rgba(198,255,61,.2);
  color:var(--lime);
  font-size:13px;
  font-weight:600;
  margin-bottom:18px;
}
.hero-kicker::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--lime);
  box-shadow:0 0 10px var(--lime);
}
.page-hero h1{
  font-size:42px;
  line-height:1.15;
  font-weight:900;
  color:#fff;
  margin-bottom:18px;
  letter-spacing:1px;
}
.page-hero h1 em{
  font-style:normal;
  color:var(--green-bright);
}
.hero-excerpt{
  color:var(--text-2);
  font-size:16px;
  max-width:560px;
  margin-bottom:26px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:28px;
}
.scoreboard-mini{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.score-mini-item{
  background:rgba(255,255,255,.04);
  border:1px solid var(--border-soft);
  border-radius:12px;
  padding:12px 16px;
  min-width:130px;
}
.score-mini-item span{
  display:block;
  font-size:12px;
  color:var(--text-weak);
  margin-bottom:3px;
}
.score-mini-item strong{
  font-family:var(--font-num);
  font-size:24px;
  color:var(--lime);
  line-height:1.2;
}
.score-mini-item strong.red{
  color:var(--live);
}
.hero-note-card{
  position:relative;
  background:var(--bg-2);
  border:1px solid var(--border);
  border-radius:16px;
  padding:26px;
  margin-top:16px;
}
.hero-note-card::before{
  content:"";
  position:absolute;
  top:0;
  left:26px;
  right:26px;
  height:2px;
  background:linear-gradient(90deg,var(--green),transparent);
}
.hero-note-card h3{
  font-size:18px;
  color:#fff;
  margin-bottom:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.hero-note-card h3 span{
  color:var(--lime);
  font-family:var(--font-num);
  font-size:13px;
}
.hero-note-card p{
  color:var(--text-2);
  font-size:14px;
}
.remind-form{
  display:flex;
  gap:10px;
  margin-top:18px;
}
.remind-form input{
  flex:1;
  height:42px;
  border-radius:8px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
  padding:0 14px;
  color:#fff;
  transition:border var(--speed),background var(--speed);
}
.remind-form input::placeholder{
  color:var(--text-weak);
}
.remind-form input:focus{
  outline:none;
  border-color:var(--green);
  background:rgba(0,180,127,.06);
}
.remind-success{
  display:none;
  color:var(--lime);
  font-size:14px;
  margin-top:12px;
}
.remind-success.show{
  display:block;
}

/* signal strip */
.signal-strip{
  background:var(--bg-2);
  border-bottom:1px solid var(--border-soft);
  padding:20px 0;
}
.signal-row{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:16px 32px;
}
.signal-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--text-2);
  font-size:14px;
}
.signal-tag .signal-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--live);
  box-shadow:0 0 0 5px rgba(255,90,60,.15);
}
.signal-tag .signal-dot.green{
  background:var(--green);
  box-shadow:0 0 0 5px rgba(0,180,127,.14);
}
.signal-tag b{
  color:var(--text);
  font-weight:700;
}
.signal-tag small{
  color:var(--text-weak);
  font-weight:400;
}

/* section common */
.section{
  padding:84px 0;
}
.section-tight{
  padding:70px 0;
}
.section-head{
  margin-bottom:38px;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--green-bright);
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:10px;
}
.kicker::before{
  content:"";
  width:20px;
  height:2px;
  background:var(--green);
  border-radius:2px;
}
.section-head h2{
  font-size:32px;
  color:#fff;
  font-weight:900;
  letter-spacing:.5px;
  margin-bottom:10px;
}
.section-head p{
  max-width:680px;
  color:var(--text-2);
  font-size:15px;
}
.sec-head-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

/* axis schedule */
.schedule-axis-wrap{
  position:relative;
  padding-left:26px;
}
.schedule-axis-wrap::before{
  content:"";
  position:absolute;
  left:8px;
  top:8px;
  bottom:8px;
  width:2px;
  background:linear-gradient(to bottom,rgba(0,180,127,.5),rgba(198,255,61,.1));
  border-radius:2px;
}
.axis-item{
  position:relative;
  display:grid;
  grid-template-columns:190px 1fr;
  gap:28px;
  margin-bottom:28px;
}
.axis-item:last-child{
  margin-bottom:0;
}
.axis-dot{
  position:absolute;
  left:-26px;
  top:22px;
  width:18px;
  height:18px;
  border-radius:50%;
  background:var(--bg);
  border:2px solid var(--green);
  box-shadow:0 0 0 5px rgba(0,180,127,.2);
}
.axis-dot.lime{
  border-color:var(--lime);
  box-shadow:0 0 0 5px rgba(198,255,61,.16);
}
.date-panel{
  background:var(--bg-2);
  border:1px solid var(--border-soft);
  border-radius:12px;
  padding:16px 18px;
  text-align:center;
  align-self:start;
}
.date-panel .day{
  display:block;
  font-size:18px;
  font-weight:900;
  color:#fff;
}
.date-panel .date{
  display:block;
  font-family:var(--font-num);
  color:var(--text-weak);
  font-size:14px;
  letter-spacing:1px;
  margin-top:2px;
}
.date-panel .date b{
  color:var(--green-bright);
  font-weight:600;
}
.match-panel{
  background:var(--bg-2);
  border:1px solid var(--border-soft);
  border-radius:12px;
  overflow:hidden;
  transition:border-color var(--speed),transform var(--speed),box-shadow var(--speed);
}
.match-panel:hover{
  border-color:rgba(0,180,127,.35);
  transform:translateY(-2px);
  box-shadow:var(--shadow-hover);
}
.match-panel-main{
  display:grid;
  grid-template-columns:92px 1fr auto;
  gap:18px;
  align-items:center;
  padding:18px;
}
.thumb-block{
  border-radius:11px;
  overflow:hidden;
  aspect-ratio:3/2;
  background:var(--bg-3);
}
.thumb-block img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s;
}
.match-panel:hover .thumb-block img{
  transform:scale(1.04);
}
.match-info-top{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:10px;
}
.match-title{
  font-size:17px;
  font-weight:800;
  color:#fff;
  line-height:1.4;
  margin-bottom:4px;
}
.match-sub{
  display:flex;
  flex-wrap:wrap;
  gap:6px 16px;
  color:var(--text-weak);
  font-size:13px;
  margin-top:8px;
}
.match-panel__action{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:flex-end;
  justify-content:center;
}
.match-score-box{
  font-family:var(--font-num);
  font-size:14px;
  color:var(--lime);
  letter-spacing:1px;
  background:rgba(198,255,61,.1);
  padding:6px 10px;
  border-radius:8px;
}
.btn-center-nav{
  display:flex;
  justify-content:center;
  margin-top:44px;
}

/* cover deck */
.cover-deck{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.cover-card{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  min-height:248px;
  background:var(--bg-3);
  display:flex;
  align-items:flex-end;
  transition:transform var(--speed),box-shadow var(--speed);
  cursor:pointer;
  border:1px solid var(--border-soft);
}
.cover-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-hover);
}
.cover-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s;
}
.cover-card:hover img{
  transform:scale(1.05);
}
.cover-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(13,17,23,.96) 16%,rgba(13,17,23,.3) 55%,rgba(13,17,23,.08));
}
.cover-card-body{
  position:relative;
  z-index:2;
  padding:20px;
  width:100%;
}
.cover-card-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:12px;
}
.cover-card-title{
  font-size:18px;
  font-weight:900;
  color:#fff;
  line-height:1.4;
  overflow:hidden;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}
.cover-card-desc{
  color:var(--text-2);
  font-size:14px;
  margin-top:6px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.cover-card-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:14px;
  font-weight:700;
  color:var(--lime);
  margin-top:14px;
  transition:gap var(--speed);
}
.cover-card-link:hover{
  gap:10px;
}

/* how steps */
.steps-layout{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.step-card{
  background:var(--bg-2);
  border:1px solid var(--border-soft);
  border-radius:14px;
  padding:24px;
  position:relative;
  overflow:hidden;
}
.step-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:3px;
  height:100%;
  background:var(--green);
}
.step-num{
  font-family:var(--font-num);
  font-size:36px;
  font-weight:800;
  color:rgba(0,180,127,.26);
  display:block;
  line-height:1;
  margin-bottom:14px;
}
.step-card h3{
  font-size:17px;
  color:#fff;
  font-weight:800;
  margin-bottom:8px;
}
.step-card p{
  color:var(--text-2);
  font-size:14px;
  line-height:1.75;
}

/* portal split */
.portal-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.portal-tile{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  padding:32px;
  min-height:230px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  border:1px solid var(--border-soft);
  transition:background var(--speed);
}
.portal-tile::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(13,17,23,.93) 10%,rgba(13,17,23,.15));
  z-index:1;
}
.portal-tile img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s;
  z-index:0;
}
.portal-tile:hover img{
  transform:scale(1.05);
}
.portal-content{
  position:relative;
  z-index:2;
}
.portal-content h3{
  font-size:20px;
  color:#fff;
  font-weight:900;
  margin-bottom:6px;
}
.portal-content p{
  color:var(--text-2);
  font-size:14px;
  margin-bottom:14px;
}

/* FAQ */
.faq-list{
  max-width:860px;
  margin:0 auto;
}
.faq-item{
  border-bottom:1px solid var(--border-soft);
}
.faq-item:first-child{
  border-top:1px solid var(--border-soft);
}
.faq-q{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:22px 4px;
  text-align:left;
  color:var(--text);
  font-size:16px;
  font-weight:700;
  transition:color var(--speed),padding var(--speed);
}
.faq-q:hover{
  color:var(--green-bright);
}
.faq-icon{
  width:28px;
  height:28px;
  border-radius:50%;
  border:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  color:var(--text-2);
  transition:all var(--speed);
  flex-shrink:0;
}
.faq-item.active .faq-q{
  color:var(--lime);
}
.faq-item.active .faq-icon{
  transform:rotate(180deg);
  background:var(--lime);
  border-color:var(--lime);
  color:var(--dark-text);
}
.faq-a{
  overflow:hidden;
  max-height:0;
  transition:max-height .35s ease;
}
.faq-a-inner{
  padding:0 44px 24px 4px;
  color:var(--text-2);
  font-size:15px;
  line-height:1.9;
}

/* CTA block */
.cta-box{
  position:relative;
  border-radius:var(--radius-box);
  background:var(--bg-2);
  padding:52px;
  border:1px solid var(--border-soft);
  overflow:hidden;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;
}
.cta-box::before{
  content:"";
  position:absolute;
  right:-90px;
  top:-90px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(0,180,127,.25),transparent 70%);
}
.cta-box::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:3px;
  background:linear-gradient(90deg,var(--green) 0%,var(--lime) 100%);
}
.cta-title{
  font-size:30px;
  color:#fff;
  font-weight:900;
  line-height:1.3;
  margin-bottom:12px;
}
.cta-title em{
  font-style:normal;
  color:var(--lime);
}
.cta-desc{
  color:var(--text-2);
  margin-bottom:20px;
}
.cta-right{
  position:relative;
  z-index:2;
}
.cta-sub{
  font-size:14px;
  color:var(--text-weak);
  margin-top:12px;
  line-height:1.7;
}

/* footer */
.footer{
  background:#0A0E12;
  border-top:1px solid var(--border-soft);
  padding:66px 0 30px;
  margin-top:40px;
}
.footer-top{
  display:grid;
  grid-template-columns:1.4fr .8fr .8fr .8fr;
  gap:40px;
  padding-bottom:42px;
  border-bottom:1px solid var(--border-soft);
}
.footer-brand p{
  color:var(--text-weak);
  font-size:14px;
  line-height:1.8;
  max-width:340px;
  margin-top:8px;
}
.footer-brand .brand{
  margin-bottom:6px;
}
.brand small{
  font-size:12px;
  color:var(--text-weak);
}
.footer-col h4{
  color:#fff;
  font-size:15px;
  font-weight:700;
  margin-bottom:18px;
}
.footer-col a{
  display:block;
  color:var(--text-weak);
  font-size:14px;
  margin-bottom:11px;
  transition:color var(--speed);
}
.footer-col a:hover{
  color:var(--green-bright);
}
.footer-col button{
  color:var(--text-2);
  margin-top:6px;
}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  padding-top:24px;
  color:var(--text-weak);
  font-size:13px;
}
.footer-bottom a{
  color:var(--text-weak);
}
.footer-bottom a:hover{
  color:var(--lime);
}

/* modal */
.modal-mask{
  position:fixed;
  inset:0;
  background:rgba(5,8,11,.76);
  -webkit-backdrop-filter:blur(6px);
  backdrop-filter:blur(6px);
  z-index:300;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  opacity:0;
  visibility:hidden;
  transition:all .25s;
}
.modal-mask.open{
  opacity:1;
  visibility:visible;
}
.modal-box{
  width:100%;
  max-width:420px;
  background:var(--bg-2);
  border:1px solid var(--border);
  border-radius:16px;
  padding:34px;
  position:relative;
  transform:translateY(18px);
  transition:transform .25s;
}
.modal-mask.open .modal-box{
  transform:translateY(0);
}
.modal-box h3{
  font-size:20px;
  color:#fff;
  margin-bottom:8px;
  font-weight:900;
}
.modal-box .modal-sub{
  color:var(--text-weak);
  font-size:14px;
  margin-bottom:20px;
}
.modal-close{
  position:absolute;
  right:16px;
  top:16px;
  width:30px;
  height:30px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--text-weak);
  font-size:18px;
  line-height:1;
  transition:background var(--speed),color var(--speed);
}
.modal-close:hover{
  background:rgba(255,255,255,.08);
  color:#fff;
}
.login-field{
  margin-bottom:14px;
}
.login-field label{
  display:block;
  font-size:13px;
  color:var(--text-2);
  margin-bottom:7px;
  font-weight:600;
}
.login-field input{
  width:100%;
  height:44px;
  border-radius:9px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--border);
  padding:0 14px;
  color:#fff;
}
.login-field input:focus{
  outline:none;
  border-color:var(--green);
}
.modal-tip{
  display:flex;
  gap:8px;
  align-items:flex-start;
  background:rgba(0,180,127,.12);
  border-radius:8px;
  padding:11px 12px;
  color:var(--green-bright);
  font-size:13px;
  line-height:1.6;
  margin-bottom:16px;
}
.modal-tip svg{
  flex-shrink:0;
  margin-top:3px;
}

@media (max-width:1023px){
  .root-nav,.main-nav,.mega-wrap{
    display:none;
  }
  .burger{
    display:inline-flex;
  }
  .mobile-nav{
    display:block;
  }
  .nav-login{
    display:inline-flex;
  }
  .cat-hero-layout{
    grid-template-columns:1fr;
    gap:26px;
  }
  .scoreboard-mini{
    gap:10px;
  }
  .cover-deck{
    grid-template-columns:1fr 1fr;
  }
  .steps-layout{
    grid-template-columns:1fr 1fr;
  }
  .footer-top{
    grid-template-columns:1fr 1fr;
  }
  .portal-split{
    grid-template-columns:1fr;
  }
  .axis-item{
    grid-template-columns:130px 1fr;
    gap:20px;
  }
  .cta-box{
    grid-template-columns:1fr;
    gap:12px;
    padding:40px 28px;
  }
}
@media (max-width:767px){
  :root{
    --side:16px;
  }
  .site-header,.header-inner{
    height:56px;
  }
  .mobile-nav{
    inset:56px 0 0;
    padding:20px var(--side) 30px;
  }
  .brand-mark{
    width:34px;
    height:34px;
    font-size:14px;
    border-radius:9px;
  }
  .brand-name{
    font-size:18px;
  }
  .brand-tag{
    display:none;
  }
  .nav-login{
    width:70px;
    height:38px;
    padding:0 10px;
    font-size:13px;
  }
  .btn{
    height:42px;
    font-size:14px;
  }
  .page-hero{
    padding:46px 0 44px;
  }
  .page-hero h1{
    font-size:30px;
  }
  .hero-excerpt{
    font-size:15px;
  }
  .hero-actions .btn{
    width:100%;
  }
  .score-mini-item{
    flex:1 1 42%;
    min-width:0;
  }
  .section{
    padding:56px 0;
  }
  .section-head h2{
    font-size:26px;
  }
  .signals-hide{
    display:none;
  }
  .remind-form{
    flex-direction:column;
  }
  .axis-item{
    display:block;
    padding-left:30px;
  }
  .schedule-axis-wrap{
    padding-left:0;
  }
  .schedule-axis-wrap::before{
    left:5px;
  }
  .axis-dot{
    left:-9px;
  }
  .date-panel{
    text-align:left;
    display:flex;
    gap:10px;
    align-items:center;
    margin-bottom:14px;
    padding:10px 14px;
  }
  .match-panel-main{
    grid-template-columns:76px 1fr;
    padding:12px;
  }
  .match-panel__action{
    grid-column:1 / -1;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    padding:0 12px 12px;
  }
  .cover-deck{
    grid-template-columns:1fr;
  }
  .steps-layout{
    grid-template-columns:1fr;
  }
  .footer-top{
    grid-template-columns:1fr;
    gap:28px;
  }
  .portal-tile{
    padding:24px;
  }
  .cta-title{
    font-size:24px;
  }
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
  .faq-a-inner{
    padding:0 4px 20px 0;
    font-size:14px;
  }
  .faq-q{
    font-size:15px;
    padding:16px 2px;
  }
  .mega-panel{
    left:0;
    right:0;
    grid-template-columns:1fr;
    max-height:calc(100vh - 80px);
    overflow-y:auto;
  }
}

@media (min-width:1024px){
  .main-nav{
    display:flex;
  }
  .burger{
    display:none;
  }
}

/* roulang page: category2 */
:root {
      --bg: #0D1117;
      --surface: #151B20;
      --card: #1C2329;
      --card-2: #20282F;
      --brand: #00B47F;
      --brand-bright: #00D78F;
      --lime: #C6FF3D;
      --live-red: #FF5A3C;
      --text: #F2F5F7;
      --text-sub: #AAB2BA;
      --text-mut: #70777E;
      --line: rgba(255, 255, 255, 0.08);
      --line-soft: rgba(255, 255, 255, 0.05);
      --radius-s: 8px;
      --radius: 12px;
      --radius-lg: 16px;
      --shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.45);
      --header-h: 72px;
      --container: 1200px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "HarmonyOS Sans SC", "Source Han Sans SC", sans-serif;
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    a:hover {
      color: var(--brand-bright);
    }

    img {
      display: block;
      max-width: 100%;
    }

    button,
    input {
      font: inherit;
      border: none;
      background: none;
      color: inherit;
    }

    button {
      cursor: pointer;
    }

    :focus-visible {
      outline: 2px solid var(--lime);
      outline-offset: 3px;
      border-radius: 6px;
    }

    .skip-link {
      position: fixed;
      left: -999px;
      top: 8px;
      z-index: 9999;
      background: var(--lime);
      color: #101418;
      padding: 10px 18px;
      border-radius: 8px;
      font-weight: 700;
    }

    .skip-link:focus {
      left: 8px;
    }

    .container {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding-left: 24px;
      padding-right: 24px;
    }

    .section {
      padding: 80px 0;
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 38px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--brand-bright);
      margin-bottom: 8px;
    }

    .section-kicker::before {
      content: "";
      width: 18px;
      height: 2px;
      background: var(--lime);
      border-radius: 999px;
    }

    .section-title {
      font-size: clamp(24px, 3vw, 34px);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--text);
    }

    .section-sub {
      color: var(--text-sub);
      max-width: 560px;
      margin-top: 8px;
    }

    .section-link {
      color: var(--text-sub);
      font-weight: 600;
      white-space: nowrap;
      transition: color .2s ease;
    }

    .section-link:hover {
      color: var(--lime);
    }

    .section-link span {
      transition: transform .2s ease;
      display: inline-block;
    }

    .section-link:hover span {
      transform: translateX(4px);
    }

    h1,
    h2,
    h3,
    h4 {
      line-height: 1.25;
      font-weight: 800;
      color: var(--text);
    }

    h1 {
      font-size: clamp(34px, 5vw, 52px);
      letter-spacing: -0.03em;
    }

    h2 {
      letter-spacing: -0.02em;
    }

    h3 {
      font-size: 20px;
      letter-spacing: -0.01em;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1px solid transparent;
      border-radius: var(--radius-s);
      padding: 12px 20px;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.2;
      white-space: nowrap;
      cursor: pointer;
      transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }

    .btn:active {
      transform: translateY(1px);
    }

    .btn-primary {
      background: var(--brand);
      color: #FFFFFF;
    }

    .btn-primary:hover {
      background: var(--brand-bright);
      color: #FFFFFF;
      box-shadow: 0 0 0 4px rgba(0, 180, 127, 0.18), 0 8px 20px rgba(0, 180, 127, 0.28);
      transform: translateY(-2px);
    }

    .btn-ghost {
      background: transparent;
      border-color: rgba(255, 255, 255, 0.2);
      color: var(--text);
    }

    .btn-ghost:hover {
      border-color: rgba(255, 255, 255, 0.65);
      background: rgba(255, 255, 255, 0.06);
      color: #fff;
    }

    .btn-lime {
      background: var(--lime);
      color: #101418;
      box-shadow: 0 0 0 0 rgba(198, 255, 61, 0);
    }

    .btn-lime:hover {
      background: #d7ff72;
      color: #101418;
      box-shadow: 0 0 0 4px rgba(198, 255, 61, 0.18), 0 8px 22px rgba(198, 255, 61, 0.18);
      transform: translateY(-2px);
    }

    .btn-sm {
      padding: 9px 15px;
      font-size: 14px;
    }

    .btn-block {
      display: flex;
      width: 100%;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--brand-bright);
      font-weight: 700;
      font-size: 15px;
      transition: color .2s ease, gap .2s ease;
    }

    .text-link:hover {
      color: var(--lime);
      gap: 12px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 300;
      background: rgba(13, 17, 23, 0.82);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--line-soft);
    }

    .header-inner {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      min-height: var(--header-h);
      height: var(--header-h);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
      position: relative;
      z-index: 260;
    }

    .brand-mark {
      display: grid;
      place-items: center;
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: linear-gradient(145deg, #00c484, #00a36f);
      color: #fff;
      font-weight: 800;
      font-size: 17px;
      letter-spacing: -0.05em;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15), 0 6px 14px rgba(0, 180, 127, 0.28);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
      font-weight: 800;
      font-size: 20px;
      color: var(--text);
      letter-spacing: -0.02em;
    }

    .brand-text small {
      font-size: 10px;
      font-weight: 500;
      color: var(--text-mut);
      letter-spacing: 2px;
      margin-top: 2px;
    }

    .nav-toggle {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 2px;
      margin-left: 6px;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: relative;
      padding: 10px 12px;
      color: var(--text-sub);
      font-size: 15px;
      font-weight: 600;
      white-space: nowrap;
      transition: color .2s ease;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 12px;
      right: 12px;
      bottom: 3px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--brand-bright), var(--lime));
      transform: scaleX(0);
      transform-origin: center;
      transition: transform .24s ease;
    }

    .nav-link:hover {
      color: #fff;
    }

    .nav-link:hover::after {
      transform: scaleX(1);
    }

    .nav-link.active {
      color: #fff;
    }

    .nav-link.active::after {
      transform: scaleX(1);
    }

    .nav-close-row {
      display: none;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      position: relative;
    }

    .mega-trigger {
      width: 40px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.06);
      color: var(--text);
      transition: background .2s ease, transform .2s ease;
    }

    .mega-trigger:hover {
      background: rgba(255, 255, 255, 0.12);
      color: var(--lime);
    }

    .mega-trigger svg {
      width: 18px;
      height: 18px;
    }

    .menu-toggle {
      display: none;
    }

    .mega-panel {
      position: absolute;
      top: calc(var(--header-h) - 4px);
      right: 0;
      width: min(960px, calc(100vw - 48px));
      background: #151B20;
      border: 1px solid var(--line);
      border-top: 3px solid var(--lime);
      border-radius: 0 0 16px 16px;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
      visibility: hidden;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
      z-index: 400;
    }

    .site-header.mega-open .mega-panel {
      visibility: visible;
      opacity: 1;
      transform: translateY(0);
    }

    .mega-grid {
      display: grid;
      grid-template-columns: 1.1fr 1.1fr 0.9fr;
      gap: 16px;
      padding: 24px;
    }

    .mega-col-title {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--text-sub);
      padding-bottom: 10px;
      margin-bottom: 8px;
      border-bottom: 1px solid var(--line-soft);
    }

    .mega-col-title::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: var(--brand-bright);
    }

    .mega-links {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .mega-link {
      padding: 8px 12px;
      border-radius: 8px;
      color: var(--text-sub);
      font-size: 14px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
    }

    .mega-link:hover {
      background: rgba(255, 255, 255, 0.07);
      color: #fff;
      transform: translateX(3px);
    }

    .mega-news-list {
      list-style: none;
      padding: 4px 0 0;
    }

    .mega-news-list li {
      font-size: 14px;
      color: var(--text-sub);
      padding: 8px 12px;
      border-left: 2px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 6px;
      transition: border-color .2s ease, background .2s ease;
    }

    .mega-news-list li:hover {
      background: rgba(255, 255, 255, 0.06);
      border-left-color: var(--brand-bright);
    }

    .mega-feature {
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--line-soft);
      background: var(--card);
      display: flex;
      flex-direction: column;
    }

    .mega-feature img {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
    }

    .mega-feature-body {
      padding: 12px 14px 14px;
    }

    .mega-feature-body strong {
      font-size: 15px;
      line-height: 1.4;
      display: block;
    }

    .mega-feature-body span {
      display: block;
      margin-top: 6px;
      color: var(--brand-bright);
      font-size: 13px;
      font-weight: 700;
    }

    .page-hero {
      position: relative;
      padding: 84px 0 72px;
      background: url("/assets/images/backpic/back-2.webp") center center / cover no-repeat;
      background-color: #0e141a;
      overflow: hidden;
      border-bottom: 1px solid var(--line-soft);
    }

    .page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-color: rgba(13, 17, 23, 0.6);
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 42px 42px;
    }

    .page-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(13, 17, 23, 0.2) 0%, rgba(13, 17, 23, 0.72) 74%, #0D1117 100%);
    }

    .page-hero .container {
      position: relative;
      z-index: 2;
    }

    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      list-style: none;
      font-size: 13px;
      color: var(--text-sub);
      margin-bottom: 28px;
    }

    .breadcrumb li+li::before {
      content: "/";
      margin-right: 8px;
      color: var(--text-mut);
    }

    .breadcrumb a:hover {
      color: var(--lime);
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(198, 255, 61, 0.08);
      border: 1px solid rgba(198, 255, 61, 0.22);
      color: var(--lime);
      padding: 5px 12px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
    }

    .hero-kicker .dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: var(--lime);
      box-shadow: 0 0 0 4px rgba(198, 255, 61, 0.14);
    }

    .page-hero h1 {
      max-width: 640px;
      margin: 18px 0 12px;
      color: #fff;
    }

    .hero-lead {
      max-width: 720px;
      font-size: 18px;
      color: #c5cbd0;
      line-height: 1.8;
    }

    .hero-lead strong {
      color: #fff;
      font-weight: 700;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      list-style: none;
      margin: 24px 0 28px;
    }

    .hero-meta li {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(13, 17, 23, 0.72);
      border: 1px solid var(--line-soft);
      border-radius: 999px;
      padding: 6px 13px;
      color: var(--text-sub);
      font-size: 13px;
    }

    .hero-meta li::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 99px;
      background: var(--brand-bright);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 4px;
    }

    .recap-rail {
      padding: 24px 0 32px;
    }

    .rail-card {
      background: var(--surface);
      border: 1px solid var(--line-soft);
      border-radius: var(--radius-lg);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      position: relative;
      overflow: hidden;
    }

    .rail-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 220px;
      height: 3px;
      background: var(--lime);
      border-radius: 0 0 999px 999px;
      opacity: 0.8;
    }

    .rail-step {
      position: relative;
      padding: 34px 32px 36px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .rail-step+.rail-step {
      border-left: 1px solid var(--line-soft);
    }

    .rail-step-num {
      display: inline-block;
      font-family: "DIN Alternate", "Barlow Condensed", "Roboto Mono", ui-monospace, monospace;
      font-size: 15px;
      font-weight: 800;
      color: var(--lime);
      letter-spacing: 1px;
    }

    .rail-step h3 {
      font-size: 18px;
    }

    .rail-step p {
      color: var(--text-sub);
      font-size: 14px;
      line-height: 1.7;
    }

    .replay-section {
      padding-top: 32px;
    }

    .replay-card {
      display: grid;
      grid-template-columns: 360px 1fr;
      background: var(--surface);
      border: 1px solid var(--line-soft);
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 24px;
      box-shadow: var(--shadow);
      transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
    }

    .replay-card:hover {
      border-color: rgba(0, 180, 127, 0.4);
      box-shadow: var(--shadow-lg);
      transform: translateY(-2px);
    }

    .replay-thumb {
      position: relative;
      min-height: 232px;
      overflow: hidden;
    }

    .replay-thumb img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s ease;
    }

    .replay-card:hover .replay-thumb img {
      transform: scale(1.04);
    }

    .replay-thumb::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.45) 100%);
    }

    .replay-flag {
      position: absolute;
      left: 12px;
      top: 12px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(13, 17, 23, 0.75);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #fff;
      border-radius: 999px;
      padding: 5px 11px;
      font-size: 12px;
      font-weight: 700;
      backdrop-filter: blur(8px);
    }

    .replay-flag::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: var(--brand-bright);
    }

    .replay-flag.live::before {
      background: var(--live-red);
    }

    .replay-duration {
      position: absolute;
      right: 12px;
      bottom: 12px;
      z-index: 2;
      color: #fff;
      background: rgba(13, 17, 23, 0.8);
      border-radius: 6px;
      padding: 3px 8px;
      font-family: "DIN Alternate", "Roboto Mono", monospace;
      font-size: 12px;
      letter-spacing: 0.5px;
    }

    .replay-body {
      padding: 28px 30px 26px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 14px;
    }

    .replay-card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: var(--text-mut);
      font-size: 13px;
    }

    .replay-category {
      color: var(--brand-bright);
      font-weight: 700;
      letter-spacing: 1px;
    }

    .replay-match-title {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .score-group {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .team-name {
      font-size: 18px;
      font-weight: 800;
      color: #fff;
    }

    .score-main {
      font-family: "DIN Alternate", "Barlow Condensed", "Roboto Mono", monospace;
      font-size: 34px;
      font-weight: 800;
      letter-spacing: 2px;
      background: #0d1117;
      color: var(--lime);
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 2px 13px;
      line-height: 1.2;
    }

    .replay-result {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 90, 60, 0.1);
      border: 1px solid rgba(255, 90, 60, 0.22);
      color: #ff836d;
      font-size: 12px;
      font-weight: 700;
      border-radius: 999px;
      padding: 4px 10px;
      white-space: nowrap;
    }

    .replay-desc {
      color: var(--text-sub);
      font-size: 14px;
      line-height: 1.8;
      max-width: 640px;
    }

    .replay-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag {
      background: rgba(0, 180, 127, 0.13);
      border: 1px solid rgba(0, 180, 127, 0.22);
      color: var(--brand-bright);
      border-radius: 999px;
      padding: 4px 11px;
      font-size: 12px;
      font-weight: 600;
    }

    .tag-tab {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.08);
      color: var(--text-sub);
    }

    .replay-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      padding-top: 4px;
    }

    .report-section {
      background: #111820;
      border-top: 1px solid var(--line-soft);
      border-bottom: 1px solid var(--line-soft);
      position: relative;
      overflow: hidden;
    }

    .report-section::before {
      content: "";
      position: absolute;
      width: 420px;
      height: 420px;
      right: -240px;
      top: -240px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 180, 127, 0.13), transparent 68%);
    }

    .report-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 32px;
      align-items: start;
    }

    .report-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .report-item {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      background: #161d23;
      border: 1px solid var(--line-soft);
      border-left: 3px solid var(--brand);
      border-radius: 12px;
      padding: 19px 20px;
      transition: background .2s ease, transform .2s ease, border-color .2s ease;
    }

    .report-item:hover {
      background: #1a2228;
      transform: translateX(3px);
      border-left-color: var(--lime);
    }

    .report-date {
      flex: 0 0 64px;
      font-family: "Roboto Mono", "DIN Alternate", monospace;
      font-size: 13px;
      color: var(--text-mut);
      letter-spacing: 0.5px;
    }

    .report-main {
      flex: 1;
    }

    .report-headline {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
      font-size: 17px;
      font-weight: 800;
      color: #fff;
    }

    .report-score {
      color: var(--lime);
      font-family: "DIN Alternate", "Roboto Mono", monospace;
      font-size: 18px;
    }

    .report-excerpt {
      color: var(--text-sub);
      font-size: 14px;
      margin-top: 6px;
    }

    .report-link {
      color: var(--brand-bright);
      font-size: 13px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 8px;
    }

    .report-link:hover {
      color: var(--lime);
    }

    .report-aside {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 24px 26px;
      position: sticky;
      top: 104px;
    }

    .report-aside h3 {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 18px;
    }

    .report-aside h3::before {
      content: "";
      width: 8px;
      height: 8px;
      background: var(--lime);
      border-radius: 999px;
      box-shadow: 0 0 0 5px rgba(198, 255, 61, 0.12);
    }

    .watch-list {
      margin-top: 18px;
      list-style: none;
    }

    .watch-list li {
      display: grid;
      grid-template-columns: 30px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 14px 0;
      border-bottom: 1px solid var(--line-soft);
    }

    .watch-list li:last-child {
      border-bottom: none;
    }

    .watch-num {
      font-family: "DIN Alternate", "Roboto Mono", monospace;
      font-size: 13px;
      font-weight: 800;
      color: var(--text-mut);
      text-align: center;
    }

    .watch-text {
      font-size: 14px;
      color: var(--text-sub);
      line-height: 1.6;
    }

    .watch-text strong {
      color: #fff;
      font-weight: 700;
    }

    .watch-view {
      font-size: 12px;
      color: var(--brand-bright);
      font-weight: 700;
      white-space: nowrap;
    }

    .account-section {
      padding: 70px 0;
    }

    .account-banner {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 20px;
      display: grid;
      grid-template-columns: 1fr 0.9fr;
      overflow: hidden;
    }

    .account-content {
      padding: 40px 44px 42px;
      position: relative;
    }

    .account-content::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--brand-bright), var(--lime));
      opacity: 0.8;
    }

    .account-content h2 {
      margin: 12px 0 12px;
      font-size: 25px;
    }

    .account-content p {
      color: var(--text-sub);
      max-width: 440px;
      font-size: 15px;
    }

    .account-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 26px;
    }

    .account-feature-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      padding: 36px 40px 40px;
      align-content: center;
    }

    .account-feature {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: var(--text-sub);
      font-size: 14px;
    }

    .check-icon {
      width: 26px;
      height: 26px;
      flex-shrink: 0;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(0, 180, 127, 0.14);
      color: var(--brand-bright);
      border: 1px solid rgba(0, 180, 127, 0.18);
    }

    .check-icon svg {
      width: 13px;
      height: 13px;
    }

    .faq-section {
      padding-bottom: 80px;
    }

    .faq-wrap {
      max-width: 860px;
      margin: 0 auto;
    }

    .faq-list {
      list-style: none;
      border-top: 1px solid var(--line);
    }

    .faq-list details {
      border-bottom: 1px solid var(--line);
    }

    .faq-list summary {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 22px 4px;
      cursor: pointer;
      font-weight: 700;
      color: var(--text);
      transition: color .2s ease, padding-left .2s ease;
    }

    .faq-list summary::-webkit-details-marker {
      display: none;
    }

    .faq-list summary:hover {
      color: var(--lime);
    }

    .faq-arrow {
      color: var(--brand-bright);
      font-size: 20px;
      font-weight: 400;
      transform: rotate(0deg);
      transition: transform .24s ease;
      line-height: 1;
      flex-shrink: 0;
    }

    .faq-list details[open] summary {
      color: #fff;
    }

    .faq-list details[open] .faq-arrow {
      transform: rotate(180deg);
      color: var(--lime);
    }

    .faq-answer {
      padding: 0 36px 22px 4px;
      color: var(--text-sub);
      font-size: 15px;
      line-height: 1.8;
    }

    .cta-section {
      padding: 0 0 84px;
    }

    .cta-banner {
      position: relative;
      border-radius: 20px;
      padding: 46px 50px;
      overflow: hidden;
      background:
        url("/assets/images/backpic/back-3.png") right center / cover no-repeat,
        var(--surface);
    }

    .cta-banner::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(100deg, rgba(13, 17, 23, 0.98) 18%, rgba(13, 17, 23, 0.76) 65%, rgba(13, 17, 23, 0.35));
      z-index: 1;
    }

    .cta-banner .container {
      position: relative;
      z-index: 2;
      padding: 0;
    }

    .cta-shell {
      max-width: 640px;
    }

    .cta-shell h2 {
      font-size: clamp(25px, 3vw, 35px);
      margin-bottom: 12px;
    }

    .cta-shell p {
      color: var(--text-sub);
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 24px;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer {
      background: #0A0F14;
      border-top: 1px solid var(--line-soft);
      padding: 64px 0 0;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
      gap: 32px;
      padding-bottom: 44px;
    }

    .footer-brand p {
      color: var(--text-mut);
      font-size: 14px;
      max-width: 300px;
      margin-top: 16px;
      line-height: 1.8;
    }

    .footer-col {
      display: flex;
      flex-direction: column;
      gap: 11px;
    }

    .footer-col h4 {
      color: #fff;
      font-size: 15px;
      margin-bottom: 8px;
      letter-spacing: 1px;
    }

    .footer-col a {
      color: var(--text-sub);
      font-size: 14px;
      line-height: 1.6;
      transition: color .2s ease, transform .2s ease;
    }

    .footer-col a:hover {
      color: var(--lime);
      transform: translateX(3px);
    }

    .footer-login-btn {
      justify-content: flex-start;
    }

    .footer-bottom {
      border-top: 1px solid var(--line-soft);
      padding: 22px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      color: var(--text-mut);
      font-size: 13px;
    }

    .footer-bottom a {
      color: var(--text-sub);
    }

    .footer-bottom a:hover {
      color: var(--lime);
    }

    .modal-mask {
      position: fixed;
      inset: 0;
      background: rgba(6, 9, 13, 0.76);
      z-index: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px;
      opacity: 0;
      visibility: hidden;
      transition: opacity .25s ease, visibility .25s ease;
    }

    .modal-mask.open {
      opacity: 1;
      visibility: visible;
    }

    .modal-card {
      width: min(430px, 100%);
      background: var(--surface);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 18px;
      padding: 32px 30px;
      transform: translateY(14px);
      transition: transform .25s ease;
      position: relative;
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
    }

    .modal-mask.open .modal-card {
      transform: translateY(0);
    }

    .modal-card::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--brand), var(--lime));
      border-radius: 18px 18px 0 0;
    }

    .modal-close {
      position: absolute;
      right: 14px;
      top: 14px;
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: var(--text-sub);
      font-size: 22px;
      transition: background .2s ease, color .2s ease;
    }

    .modal-close:hover {
      background: rgba(255, 255, 255, 0.07);
      color: #fff;
    }

    .modal-kicker {
      color: var(--brand-bright);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 2px;
      margin-bottom: 6px;
    }

    .modal-card h3 {
      font-size: 25px;
      color: #fff;
    }

    .modal-card .modal-desc {
      color: var(--text-sub);
      font-size: 14px;
      margin: 10px 0 22px;
      line-height: 1.7;
    }

    .login-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .form-label {
      display: block;
      color: var(--text-sub);
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 7px;
    }

    .form-field {
      width: 100%;
      height: 48px;
      background: #0d1117;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 0 14px;
      color: var(--text);
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .form-field::placeholder {
      color: var(--text-mut);
    }

    .form-field:focus {
      outline: none;
      border-color: var(--brand);
      box-shadow: 0 0 0 3px rgba(0, 180, 127, 0.16);
    }

    .form-tip {
      font-size: 12px;
      color: var(--text-mut);
      text-align: center;
      margin-top: 4px;
    }

    @media (max-width: 1199px) {
      .nav-link {
        padding-left: 10px;
        padding-right: 10px;
      }

      .main-nav {
        gap: 0;
      }

      .mega-trigger {
        display: none;
      }

      .mega-panel {
        display: none;
      }
    }

    @media (max-width: 1023px) {
      :root {
        --header-h: 64px;
      }

      .site-header {
        background: rgba(13, 17, 23, 0.92);
      }

      .header-inner {
        min-height: var(--header-h);
      }

      .brand-mark {
        width: 34px;
        height: 34px;
        font-size: 15px;
        border-radius: 10px;
      }

      .brand-text {
        font-size: 17px;
      }

      .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(84vw, 380px);
        background: #141A20;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 2px;
        padding: 88px 22px 30px;
        margin: 0;
        transform: translateX(110%);
        transition: transform .28s ease, visibility .28s;
        visibility: hidden;
        border-left: 1px solid var(--line);
        box-shadow: -30px 0 60px rgba(0, 0, 0, 0.52);
        z-index: 500;
        overflow-y: auto;
      }

      .nav-toggle:checked~.main-nav {
        transform: translateX(0);
        visibility: visible;
      }

      .nav-link {
        padding: 14px 12px;
        font-size: 16px;
        justify-content: flex-start;
        border-bottom: 1px solid var(--line-soft);
        color: var(--text-sub);
      }

      .nav-link::after {
        left: 0;
        right: auto;
        bottom: 6px;
        width: 28px;
        height: 3px;
      }

      .nav-link:hover {
        background: rgba(255, 255, 255, 0.04);
      }

      .nav-close-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 18px;
        margin-bottom: 10px;
        border-bottom: 1px solid var(--line-soft);
      }

      .nav-close-title {
        color: var(--text-sub);
        font-size: 14px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .nav-close-title::before {
        content: "";
        width: 6px;
        height: 6px;
        background: var(--lime);
        border-radius: 999px;
      }

      .drawer-close {
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        background: rgba(255, 255, 255, 0.06);
        color: var(--text);
        border-radius: 8px;
        font-size: 22px;
        cursor: pointer;
      }

      .drawer-close:hover {
        background: rgba(255, 255, 255, 0.12);
      }

      .nav-actions-mobile {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 18px;
      }

      .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.07);
        color: var(--text);
        flex-shrink: 0;
        cursor: pointer;
        transition: background .2s ease;
      }

      .menu-toggle:hover {
        background: rgba(255, 255, 255, 0.12);
      }

      .menu-toggle svg {
        width: 18px;
        height: 18px;
      }

      .nav-toggle:checked~.header-actions .menu-toggle {
        background: rgba(255, 255, 255, 0.12);
      }

      .header-actions .btn-login-desktop {
        display: none;
      }

      .report-aside {
        position: static;
      }
    }

    @media (min-width: 1024px) {
      .nav-actions-mobile {
        display: none;
      }
    }

    @media (max-width: 899px) {
      .rail-card {
        grid-template-columns: 1fr;
      }

      .rail-step+.rail-step {
        border-left: none;
        border-top: 1px solid var(--line-soft);
      }

      .rail-step {
        padding: 28px 26px;
      }

      .account-banner,
      .report-grid {
        grid-template-columns: 1fr;
      }

      .account-feature-list {
        padding: 32px 30px 36px;
      }
    }

    @media (max-width: 767px) {
      .section {
        padding: 56px 0;
      }

      .container {
        padding-left: 16px;
        padding-right: 16px;
      }

      .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 28px;
      }

      .section-title {
        font-size: 25px;
      }

      .brand-text small {
        display: none;
      }

      .brand-text {
        font-size: 16px;
      }

      .brand-mark {
        width: 32px;
        height: 32px;
        border-radius: 9px;
        font-size: 14px;
      }

      .page-hero {
        padding: 64px 0 54px;
      }

      .breadcrumb {
        margin-bottom: 18px;
      }

      .page-hero h1 {
        margin-top: 14px;
        font-size: 31px;
      }

      .hero-lead {
        font-size: 15px;
      }

      .hero-meta {
        gap: 8px;
      }

      .hero-meta li {
        width: calc(50% - 4px);
        box-sizing: border-box;
        font-size: 12px;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .recap-rail {
        padding-top: 16px;
      }

      .rail-step {
        padding: 24px 20px 26px;
      }

      .replay-section {
        padding-bottom: 50px;
      }

      .replay-card {
        grid-template-columns: 1fr;
      }

      .replay-thumb {
        aspect-ratio: 16 / 10;
        position: relative;
        width: 100%;
        min-height: 0;
      }

      .replay-thumb img {
        position: absolute;
      }

      .replay-body {
        padding: 22px 20px;
      }

      .score-group {
        gap: 10px;
        flex-wrap: wrap;
      }

      .team-name {
        font-size: 16px;
      }

      .score-main {
        font-size: 28px;
        padding: 4px 9px;
      }

      .replay-bottom .btn {
        width: 100%;
      }

      .report-item {
        flex-direction: column;
        gap: 8px;
      }

      .report-date {
        flex: 0 0 auto;
        font-size: 12px;
      }

      .report-headline {
        font-size: 16px;
      }

      .report-excerpt {
        font-size: 13px;
      }

      .report-aside {
        padding: 20px;
      }

      .watch-list li {
        grid-template-columns: 24px 1fr auto;
      }

      .account-content {
        padding: 30px 22px 34px;
      }

      .account-feature-list {
        grid-template-columns: 1fr;
        padding: 26px 22px 32px;
      }

      .cta-banner {
        padding: 34px 22px;
      }

      .cta-shell p {
        font-size: 14px;
      }

      .cta-actions .btn {
        width: 100%;
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 28px;
      }

      .footer-brand p {
        max-width: 100%;
      }

      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }

      .modal-card {
        padding: 26px 20px;
      }

      .faq-answer {
        padding-right: 20px;
      }

      .faq-list summary {
        padding-top: 18px;
        padding-bottom: 18px;
      }
    }

    @media (max-width: 520px) {
      .brand-text {
        font-size: 15px;
      }

      .brand-text small {
        display: none;
      }

      .section-kicker {
        letter-spacing: 1px;
      }

      .replay-match-title {
        flex-direction: column;
        align-items: flex-start;
      }

      .score-group {
        width: 100%;
        justify-content: space-between;
      }

      .replay-result {
        align-self: flex-start;
      }

      .replay-desc {
        font-size: 14px;
      }

      .hero-actions .btn {
        padding-left: 12px;
        padding-right: 12px;
      }
    }

/* roulang page: category3 */
:root {
      --bg: #0D1117;
      --bg-2: #151B20;
      --card: #1C2329;
      --green: #00B47F;
      --green-light: #00D78F;
      --lime: #C6FF3D;
      --red: #FF5A3C;
      --text: #F2F5F7;
      --text-2: #AAB2BA;
      --text-3: #70777E;
      --border: rgba(255, 255, 255, 0.08);
      --border-soft: rgba(255, 255, 255, 0.06);
      --radius: 12px;
      --radius-lg: 16px;
      --radius-sm: 8px;
      --shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.45);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Helvetica Neue", Arial, sans-serif;
      background-color: var(--bg);
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 48px 48px;
      color: var(--text);
      line-height: 1.7;
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
    }

    .container {
      width: min(1200px, 100% - 48px);
      margin-inline: auto;
    }

    @media (max-width: 767px) {
      .container {
        width: calc(100% - 32px);
      }
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input {
      font: inherit;
    }

    button {
      border: 0;
      background: none;
      cursor: pointer;
    }

    :focus-visible {
      outline: 2px solid var(--lime);
      outline-offset: 3px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.08em;
      color: var(--lime);
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 6px;
      height: 6px;
      background: var(--lime);
      border-radius: 50%;
    }

    .section {
      padding: 84px 0;
    }

    .section-alt {
      background: rgba(20, 27, 33, 0.7);
      border-block: 1px solid var(--border);
    }

    .section-heading {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 32px;
    }

    .section-heading h2 {
      font-size: clamp(24px, 3vw, 32px);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #fff;
      line-height: 1.25;
    }

    .section-heading h2 .mark {
      color: var(--green-light);
    }

    .section-heading p {
      color: var(--text-2);
      max-width: 460px;
      font-size: 14px;
      margin-top: 6px;
    }

    .section-more {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--text-2);
      font-size: 14px;
      font-weight: 600;
      white-space: nowrap;
      padding: 8px 0;
      border-bottom: 1px solid transparent;
      transition: color 0.2s ease, border-color 0.2s ease;
    }

    .section-more:hover {
      color: var(--green-light);
      border-bottom-color: var(--green-light);
    }

    .section-more::after {
      content: "→";
      transition: transform 0.2s ease;
    }

    .section-more:hover::after {
      transform: translateX(4px);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(13, 17, 23, 0.84);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .header-inner {
      display: flex;
      align-items: center;
      gap: 16px;
      min-height: 72px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .brand-mark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
      padding: 0 8px;
      background: var(--green);
      border-radius: 10px;
      color: #0D1117;
      font-weight: 900;
      font-size: 17px;
      letter-spacing: -0.02em;
      box-shadow: 0 0 0 4px rgba(0, 180, 127, 0.12);
    }

    .brand-text {
      font-size: 20px;
      font-weight: 800;
      color: #fff;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    .brand-text small {
      display: block;
      font-size: 10px;
      font-weight: 500;
      color: var(--text-2);
      letter-spacing: 0.1em;
      margin-top: 3px;
    }

    .header-nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex: 1;
      gap: 10px;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      padding: 10px 12px;
      color: #C6CED6;
      font-size: 14px;
      font-weight: 600;
      border-radius: 8px;
      white-space: nowrap;
      transition: color 0.2s ease, background 0.2s ease;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 6px;
      height: 2px;
      background: var(--lime);
      border-radius: 99px;
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.25s ease;
    }

    .nav-link:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.04);
    }

    .nav-link:hover::after {
      transform: scaleX(1);
    }

    .nav-link.active {
      color: #fff;
      font-weight: 700;
    }

    .nav-link.active::after {
      transform: scaleX(1);
      background: var(--lime);
    }

    .nav-mega-zone {
      position: relative;
      flex-shrink: 0;
    }

    .mega-trigger {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 14px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.05);
      color: #DCE2E8;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
      transition: border-color 0.2s ease, background 0.2s ease;
    }

    .mega-trigger:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.24);
    }

    .mega-trigger::after {
      content: "";
      width: 6px;
      height: 6px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg);
      margin-top: -3px;
    }

    .mega-panel {
      position: absolute;
      right: 0;
      top: calc(100% + 14px);
      width: 460px;
      padding: 20px;
      background: var(--bg-2);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-top: 3px solid var(--lime);
      border-radius: 16px;
      box-shadow: var(--shadow-lg);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
      z-index: 120;
    }

    .nav-mega-zone.mega-open .mega-panel {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .mega-panel-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .mega-links-title {
      color: var(--text-3);
      font-size: 12px;
      letter-spacing: 0.08em;
      margin-bottom: 8px;
      padding-left: 10px;
    }

    .mega-links a {
      display: block;
      padding: 10px 12px;
      color: #CDD6DF;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .mega-links a:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.07);
    }

    .mega-feature {
      grid-column: 2;
      grid-row: span 2;
      border-radius: 12px;
      overflow: hidden;
      background: var(--card);
      border: 1px solid rgba(255, 255, 255, 0.07);
      display: flex;
      flex-direction: column;
    }

    .mega-feature img {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
    }

    .mega-feature-content {
      padding: 14px;
      flex: 1;
    }

    .mega-feature-content .badge {
      background: rgba(255, 90, 60, 0.16);
      color: #FF7A60;
    }

    .mega-feature-content strong {
      display: block;
      font-size: 14px;
      margin-top: 8px;
      color: #fff;
    }

    .mega-feature-content small {
      color: var(--text-3);
      font-size: 12px;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: var(--radius-sm);
      font-weight: 700;
      line-height: 1.3;
      border: 1px solid transparent;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    }

    .btn:active {
      transform: translateY(1px);
    }

    .btn-primary {
      background: var(--green);
      color: #0D1117;
    }

    .btn-primary:hover {
      background: var(--green-light);
      box-shadow: 0 0 18px rgba(0, 180, 127, 0.35);
    }

    .btn-lime {
      background: var(--lime);
      color: #101418;
    }

    .btn-lime:hover {
      background: #D7FF64;
      box-shadow: 0 0 24px rgba(198, 255, 61, 0.25);
    }

    .btn-ghost {
      background: rgba(255, 255, 255, 0.04);
      color: #E7EBEE;
      border-color: rgba(255, 255, 255, 0.2);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.3);
    }

    .btn-sm {
      padding: 8px 15px;
      font-size: 13px;
    }

    .btn-lg {
      padding: 14px 24px;
      font-size: 15px;
    }

    .header-login {
      white-space: nowrap;
    }

    .hamburger {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 10px;
      color: #fff;
      background: rgba(255, 255, 255, 0.06);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
    }

    .hamburger span {
      display: block;
      width: 18px;
      height: 2px;
      background: currentColor;
      border-radius: 99px;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .hamburger[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .hamburger[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .category-hero {
      position: relative;
      padding: 104px 0 84px;
      background-image: url('/assets/images/backpic/back-3.png');
      background-size: cover;
      background-position: center 30%;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .category-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(13, 17, 23, 0.78) 0%, rgba(13, 17, 23, 0.92) 100%);
    }

    .category-hero .container {
      position: relative;
      z-index: 2;
    }

    .category-hero h1 {
      font-size: clamp(32px, 5vw, 48px);
      font-weight: 800;
      color: #fff;
      line-height: 1.22;
      margin-top: 12px;
      letter-spacing: -0.03em;
      max-width: 900px;
    }

    .hero-desc {
      margin-top: 16px;
      max-width: 620px;
      color: #C9D2DA;
      font-size: 17px;
      line-height: 1.8;
    }

    .hero-desc strong {
      color: #fff;
      font-weight: 700;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .hero-note {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
      color: var(--text-2);
      font-size: 13px;
    }

    .hero-note .lime-text {
      color: var(--lime);
      font-weight: 600;
    }

    .service-strip {
      border-bottom: 1px solid var(--border);
      background: #11171D;
    }

    .service-strip-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 16px 0;
      flex-wrap: wrap;
    }

    .service-status {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--text-2);
      font-size: 14px;
    }

    .service-status .pulse-dot {
      position: relative;
      width: 8px;
      height: 8px;
      background: var(--green);
      border-radius: 50%;
    }

    .service-status .pulse-dot::after {
      content: "";
      position: absolute;
      inset: -5px;
      border-radius: 50%;
      background: rgba(0, 180, 127, 0.2);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        transform: scale(0.7);
        opacity: 1;
      }
      75%,
      100% {
        transform: scale(1.6);
        opacity: 0;
      }
    }

    .service-time {
      font-family: "DIN Alternate", "Barlow Condensed", "Roboto Mono", ui-monospace, monospace;
      color: var(--text-3);
      font-size: 13px;
      letter-spacing: 0.04em;
    }

    .official-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 24px;
    }

    .official-feature {
      display: flex;
      flex-direction: column;
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-lg);
      background: var(--bg-2);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .official-feature:hover {
      transform: translateY(-4px);
      border-color: rgba(0, 180, 127, 0.35);
      box-shadow: var(--shadow-lg);
    }

    .feature-media {
      position: relative;
      min-height: 260px;
      max-height: 320px;
      overflow: hidden;
    }

    .feature-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .official-feature:hover .feature-media img {
      transform: scale(1.03);
    }

    .feature-media .badge {
      position: absolute;
      left: 16px;
      top: 16px;
      background: rgba(198, 255, 61, 0.9);
      color: #101418;
    }

    .feature-content {
      padding: 24px;
    }

    .feature-content .feature-meta {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-3);
      font-size: 12px;
    }

    .feature-content h3 {
      font-size: 21px;
      line-height: 1.4;
      color: #fff;
      font-weight: 800;
      margin: 12px 0 10px;
    }

    .feature-content p {
      color: var(--text-2);
      font-size: 14px;
      line-height: 1.75;
    }

    .feature-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 16px;
      color: var(--green-light);
      font-weight: 700;
      font-size: 14px;
    }

    .feature-link::after {
      content: "→";
      transition: transform 0.2s ease;
    }

    .feature-link:hover::after {
      transform: translateX(4px);
    }

    .notice-card {
      background: var(--bg-2);
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-lg);
      padding: 24px;
    }

    .notice-card-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 6px;
    }

    .notice-card-head h3 {
      color: #fff;
      font-size: 18px;
      font-weight: 800;
    }

    .notice-card-head .refresh {
      color: var(--text-3);
      font-size: 12px;
    }

    .notice-list {
      margin-top: 12px;
    }

    .notice-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 4px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      transition: padding-left 0.2s ease, background 0.2s ease;
    }

    .notice-item:last-child {
      border-bottom: 0;
    }

    .notice-item:hover {
      padding-left: 10px;
      background: rgba(255, 255, 255, 0.025);
    }

    .notice-date {
      font-family: "DIN Alternate", "Barlow Condensed", "Roboto Mono", ui-monospace, monospace;
      color: var(--text-3);
      font-size: 13px;
      min-width: 54px;
    }

    .notice-info {
      flex: 1;
      min-width: 0;
    }

    .notice-info .notice-tag {
      display: inline-block;
      padding: 2px 8px;
      border-radius: 99px;
      background: rgba(0, 180, 127, 0.12);
      color: var(--green-light);
      font-size: 11px;
      margin-bottom: 4px;
    }

    .notice-info h4 {
      color: #DEE5EA;
      font-size: 14px;
      font-weight: 600;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .notice-info h4:hover {
      color: #fff;
    }

    .notice-arrow {
      color: var(--text-3);
      flex-shrink: 0;
    }

    .bento-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 24px;
    }

    .bento-main {
      grid-column: span 7;
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-lg);
      background: var(--bg-2);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .bento-main:hover {
      transform: translateY(-4px);
      border-color: rgba(0, 180, 127, 0.35);
      box-shadow: var(--shadow-lg);
    }

    .bento-main .bento-media {
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: #0F141A;
    }

    .bento-main .bento-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .bento-main:hover .bento-media img {
      transform: scale(1.03);
    }

    .bento-body {
      padding: 22px;
    }

    .bento-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 12px;
      color: var(--text-3);
    }

    .bento-body h3 {
      margin-top: 12px;
      color: #fff;
      font-size: 22px;
      line-height: 1.4;
      font-weight: 800;
    }

    .bento-body p {
      margin-top: 10px;
      color: var(--text-2);
      font-size: 14px;
      line-height: 1.7;
    }

    .bento-side {
      grid-column: span 5;
      display: grid;
      gap: 24px;
    }

    .side-card {
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-lg);
      background: var(--bg-2);
      display: grid;
      grid-template-columns: 128px 1fr;
      overflow: hidden;
      min-height: 128px;
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .side-card:hover {
      transform: translateY(-3px);
      border-color: rgba(0, 180, 127, 0.35);
      box-shadow: var(--shadow-lg);
    }

    .side-card .side-media {
      width: 100%;
      height: 100%;
      min-height: 128px;
      overflow: hidden;
    }

    .side-card .side-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.45s ease;
    }

    .side-card:hover .side-media img {
      transform: scale(1.06);
    }

    .side-content {
      padding: 16px;
      min-width: 0;
    }

    .side-content .post-date {
      color: var(--text-3);
      font-size: 12px;
    }

    .side-content h3 {
      font-size: 14px;
      color: #E8ECF0;
      line-height: 1.5;
      font-weight: 700;
      margin-top: 8px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 42px;
    }

    .side-content h3:hover {
      color: var(--green-light);
    }

    .bento-note {
      grid-column: span 5;
      background: linear-gradient(120deg, rgba(0, 180, 127, 0.13), rgba(21, 27, 32, 1) 62%);
      border: 1px solid rgba(0, 180, 127, 0.25);
      border-radius: var(--radius-lg);
      padding: 24px;
    }

    .bento-note .badge {
      background: var(--lime);
      color: #101418;
    }

    .bento-note h3 {
      color: #fff;
      font-size: 18px;
      line-height: 1.5;
      margin-top: 14px;
      font-weight: 800;
    }

    .bento-note p {
      color: var(--text-2);
      font-size: 14px;
      line-height: 1.7;
      margin-top: 10px;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      color: var(--green-light);
      font-weight: 600;
      font-size: 13px;
      margin-top: 14px;
    }

    .text-link::before {
      content: "→";
      transition: transform 0.2s ease;
    }

    .text-link:hover::before {
      transform: translateX(4px);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      padding: 5px 11px;
      border-radius: 999px;
      background: rgba(0, 180, 127, 0.15);
      color: var(--green-light);
      font-size: 12px;
      line-height: 1.2;
      font-weight: 700;
    }

    .badge-red {
      background: rgba(255, 90, 60, 0.14);
      color: #FF7C60;
    }

    .faq-section {
      padding-top: 20px;
    }

    .faq-heading {
      text-align: center;
      margin-bottom: 36px;
    }

    .faq-heading h2 {
      font-size: 32px;
      color: #fff;
    }

    .faq-heading p {
      color: var(--text-2);
      margin-top: 8px;
    }

    .faq-list {
      max-width: 860px;
      margin: 0 auto;
      border-top: 1px solid var(--border);
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
    }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 22px 4px;
      background: transparent;
      color: #EDF1F4;
      font-size: 16px;
      font-weight: 700;
      text-align: left;
      gap: 16px;
      transition: color 0.2s ease;
    }

    .faq-question:hover {
      color: var(--green-light);
    }

    .faq-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: var(--text-2);
      flex-shrink: 0;
      transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    }

    .faq-icon::after {
      content: "+";
      font-size: 18px;
      line-height: 1;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      color: var(--lime);
      border-color: var(--lime);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-answer p {
      color: var(--text-2);
      font-size: 14px;
      line-height: 1.8;
      padding: 0 34px 22px 4px;
    }

    .cta-band {
      padding: 72px 0;
      background: #12181E;
      border-top: 1px solid var(--border);
    }

    .cta-panel {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      padding: 42px 46px;
      border: 1px solid rgba(0, 180, 127, 0.28);
      border-radius: 24px;
      background: linear-gradient(120deg, rgba(0, 180, 127, 0.12) 0%, rgba(21, 27, 32, 1) 58%);
    }

    .cta-panel h2 {
      color: #fff;
      font-size: clamp(24px, 3vw, 32px);
      line-height: 1.35;
      font-weight: 800;
    }

    .cta-panel p {
      margin-top: 8px;
      color: var(--text-2);
      max-width: 520px;
    }

    .cta-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      flex-shrink: 0;
    }

    .footer {
      background: #0A0E13;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding: 56px 0 28px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 0.8fr 0.9fr 0.8fr;
      gap: 32px;
      padding-bottom: 30px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-brand .brand {
      margin-bottom: 14px;
    }

    .footer-brand p {
      color: var(--text-2);
      font-size: 14px;
      line-height: 1.8;
      max-width: 300px;
    }

    .footer-col h4 {
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .footer-col a {
      display: block;
      color: var(--text-2);
      font-size: 14px;
      padding: 4px 0;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .footer-col a:hover {
      color: var(--green-light);
      transform: translateX(3px);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      padding-top: 24px;
      color: var(--text-3);
      font-size: 13px;
    }

    .footer-bottom a {
      color: var(--text-3);
    }

    .footer-bottom a:hover {
      color: var(--green-light);
    }

    .modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 200;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .modal.open {
      display: flex;
    }

    .modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(8, 10, 14, 0.82);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    .modal-card {
      position: relative;
      width: 100%;
      max-width: 420px;
      background: #151B20;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-top: 3px solid var(--lime);
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
    }

    .modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      color: var(--text-2);
      background: rgba(255, 255, 255, 0.06);
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .modal-close:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.14);
    }

    .modal-card h2 {
      color: #fff;
      font-size: 22px;
      font-weight: 800;
    }

    .modal-card .modal-sub {
      color: var(--text-2);
      font-size: 13px;
      margin-top: 6px;
    }

    .modal-form {
      margin-top: 22px;
      display: grid;
      gap: 14px;
    }

    .modal-form label {
      color: var(--text-2);
      font-size: 13px;
      font-weight: 600;
    }

    .form-input {
      width: 100%;
      height: 44px;
      border-radius: 8px;
      background: #0D1117;
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: #fff;
      padding: 0 14px;
      margin-top: 6px;
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .form-input:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(0, 180, 127, 0.15);
    }

    .form-input::placeholder {
      color: var(--text-3);
    }

    .modal-form .btn {
      width: 100%;
      margin-top: 6px;
    }

    .modal-success {
      margin-top: 12px;
      color: var(--lime);
      font-size: 13px;
      text-align: center;
      font-weight: 700;
    }

    .modal-success.hidden {
      display: none;
    }

    @media (max-width: 1023px) {
      .hamburger {
        display: inline-flex;
      }

      .header-nav {
        position: fixed;
        top: 72px;
        left: 16px;
        right: 16px;
        z-index: 150;
        display: block;
        background: rgba(15, 20, 26, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-top: 3px solid var(--lime);
        border-radius: 16px;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
      }

      .header-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .main-nav {
        display: grid;
        gap: 4px;
      }

      .main-nav .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 13px 16px;
        border-radius: 10px;
        background: transparent;
        font-size: 15px;
      }

      .main-nav .nav-link::after {
        display: none;
      }

      .main-nav .nav-link.active {
        background: rgba(0, 180, 127, 0.12);
        color: var(--green-light);
      }

      .nav-mega-zone {
        width: 100%;
        margin-top: 14px;
      }

      .mega-trigger {
        width: 100%;
        justify-content: center;
      }

      .mega-panel {
        position: static;
        width: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-top: 10px;
        box-shadow: none;
      }

      .nav-mega-zone.mega-open .mega-panel {
        display: block;
      }

      .mega-panel-grid {
        grid-template-columns: 1fr;
      }

      .mega-feature {
        grid-column: 1;
        grid-row: auto;
      }

      .official-grid {
        grid-template-columns: 1fr;
      }

      .bento-grid {
        grid-template-columns: 1fr;
      }

      .bento-main,
      .bento-side,
      .bento-note {
        grid-column: 1;
      }

      .cta-panel {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 767px) {
      .header-inner {
        min-height: 56px;
      }

      .brand-text {
        font-size: 17px;
      }

      .brand-text small,
      .header-login .btn-text {
        display: none;
      }

      .brand-mark {
        min-width: 34px;
        height: 34px;
        font-size: 15px;
      }

      .header-login {
        max-width: 40px;
        width: 40px;
        height: 40px;
        padding: 0;
        font-size: 0;
        background: var(--green);
        border-radius: 10px;
        position: relative;
      }

      .header-login::before {
        content: "登录";
        font-size: 13px;
        color: #0D1117;
      }

      .header-nav {
        top: 56px;
      }

      .category-hero {
        padding: 68px 0 52px;
      }

      .category-hero h1 {
        font-size: 32px;
      }

      .service-strip-inner {
        justify-content: flex-start;
      }

      .section {
        padding: 56px 0;
      }

      .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 24px;
      }

      .side-card {
        grid-template-columns: 112px 1fr;
      }

      .bento-body {
        padding: 18px;
      }

      .bento-body h3 {
        font-size: 19px;
      }

      .faq-question {
        font-size: 15px;
      }

      .cta-panel {
        padding: 24px;
      }

      .footer-top {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 480px) {
      .brand-text {
        font-size: 15px;
      }

      .main-nav .nav-link {
        font-size: 15px;
        padding: 14px 12px;
      }

      .bento-side .side-card {
        grid-template-columns: 96px 1fr;
      }

      .side-card .side-media {
        min-height: 108px;
      }
    }
