/* roulang page: index */
:root {
      --color-bg: #111111;
      --color-bg-soft: #181818;
      --color-panel: #202020;
      --color-panel-2: #262626;
      --color-light: #F6F2EA;
      --color-light-2: #ECE6DA;
      --color-primary: #D23B3B;
      --color-primary-dark: #B92835;
      --color-accent: #C79A43;
      --color-aux: #9B3A7A;
      --color-text: #F4F0E8;
      --color-text-dark: #1B1B1B;
      --color-muted: #AEB2B8;
      --color-muted-2: #8E9299;
      --color-border: rgba(255,255,255,.09);
      --color-border-light: rgba(17,17,17,.1);
      --shadow-panel: 0 14px 40px rgba(0,0,0,.28);
      --shadow-light: 0 10px 28px rgba(17,17,17,.08);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 14px;
      --container: 1220px;
      --fast: 180ms ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      background: var(--color-bg);
      color: var(--color-text);
      line-height: 1.75;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--fast), border-color var(--fast), background var(--fast), transform var(--fast), box-shadow var(--fast);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    .container-xxl {
      max-width: var(--container);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(17,17,17,.96);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--color-border);
    }

    .brand-row {
      min-height: 72px;
      display: flex;
      align-items: center;
      border-bottom: 1px solid var(--color-border);
    }

    .brand-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
      font-weight: 800;
      color: var(--color-text);
      line-height: 1.25;
      overflow-wrap: anywhere;
    }

    .brand-logo-mark {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: inline-grid;
      place-items: center;
      flex: 0 0 auto;
      background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
      box-shadow: 0 8px 22px rgba(210,59,59,.24);
      color: #fff;
    }

    .brand-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 12px;
      min-width: 0;
    }

    .header-search {
      position: relative;
      width: min(360px, 100%);
    }

    .header-search .bi {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--color-muted-2);
      pointer-events: none;
    }

    .header-search input {
      width: 100%;
      height: 42px;
      padding: 0 14px 0 40px;
      border-radius: 10px;
      border: 1px solid var(--color-border);
      background: #242424;
      color: var(--color-text);
      outline: none;
      transition: border-color var(--fast), box-shadow var(--fast), background var(--fast);
    }

    .header-search input::placeholder {
      color: #858990;
    }

    .header-search input:focus,
    .form-control:focus,
    .form-select:focus {
      border-color: rgba(210,59,59,.8);
      box-shadow: 0 0 0 .22rem rgba(210,59,59,.22);
      background: #252525;
      color: var(--color-text);
    }

    .age-note {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--color-muted);
      font-size: 13px;
      white-space: nowrap;
      padding: 8px 10px;
      border: 1px solid var(--color-border);
      border-radius: 999px;
      background: #1E1E1E;
    }

    .channel-row {
      background: #151515;
      min-height: 46px;
      display: flex;
      align-items: center;
    }

    .channel-nav {
      display: flex;
      align-items: center;
      gap: 10px;
      overflow-x: auto;
      white-space: nowrap;
      scrollbar-width: thin;
      scrollbar-color: var(--color-primary) transparent;
      padding: 9px 0;
    }

    .channel-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 14px;
      border-radius: 999px;
      border: 1px solid transparent;
      color: var(--color-muted);
      font-size: 14px;
      flex: 0 0 auto;
    }

    .channel-link:hover,
    .channel-link:focus {
      color: var(--color-text);
      border-color: rgba(210,59,59,.55);
      background: rgba(210,59,59,.1);
      outline: none;
    }

    .channel-link.active {
      color: #fff;
      background: var(--color-primary);
      border-color: var(--color-primary);
    }

    .btn {
      border-radius: 10px;
      padding: 10px 18px;
      font-weight: 700;
      line-height: 1.35;
      border-width: 1px;
      transition: transform var(--fast), box-shadow var(--fast), background var(--fast), border-color var(--fast), color var(--fast);
      white-space: normal;
    }

    .btn-primary-custom {
      background: var(--color-primary);
      border-color: var(--color-primary);
      color: #fff;
      box-shadow: 0 12px 26px rgba(210,59,59,.2);
    }

    .btn-primary-custom:hover,
    .btn-primary-custom:focus {
      background: var(--color-primary-dark);
      border-color: var(--color-primary-dark);
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 16px 32px rgba(210,59,59,.27);
    }

    .btn-outline-custom {
      color: var(--color-text);
      border-color: rgba(255,255,255,.18);
      background: transparent;
    }

    .btn-outline-custom:hover,
    .btn-outline-custom:focus {
      color: var(--color-text);
      border-color: rgba(210,59,59,.8);
      background: rgba(255,255,255,.06);
      transform: translateY(-1px);
    }

    .btn-light-custom {
      background: var(--color-light);
      border-color: var(--color-light);
      color: var(--color-text-dark);
    }

    .btn-light-custom:hover,
    .btn-light-custom:focus {
      background: #fff;
      border-color: #fff;
      color: var(--color-text-dark);
      transform: translateY(-1px);
    }

    main {
      background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px),
        var(--color-bg);
      background-size: 44px 44px;
    }

    section {
      padding: 82px 0;
      position: relative;
    }

    .section-light {
      background: var(--color-light);
      color: var(--color-text-dark);
    }

    .section-title {
      max-width: 820px;
      margin-bottom: 34px;
    }

    .section-title h2 {
      font-size: 32px;
      line-height: 1.25;
      margin: 0 0 14px;
      font-weight: 850;
      overflow-wrap: anywhere;
    }

    .section-title p {
      margin: 0;
      color: var(--color-muted);
      font-size: 16px;
    }

    .section-light .section-title p,
    .section-light .muted {
      color: #62666C;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--color-accent);
      font-weight: 800;
      font-size: 13px;
      margin-bottom: 12px;
      letter-spacing: 0;
    }

    .hero {
      min-height: calc(100vh - 118px);
      padding: 54px 0 70px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .coupon-stage {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
      gap: 26px;
      align-items: stretch;
    }

    .hero-copy {
      padding: 26px 0 18px;
      min-width: 0;
    }

    .hero h1 {
      font-size: 48px;
      line-height: 1.18;
      font-weight: 900;
      margin: 0 0 18px;
      overflow-wrap: anywhere;
    }

    .hero-intro {
      max-width: 720px;
      margin: 0 0 24px;
      color: #D8D4CC;
      font-size: 17px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 26px 0;
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 760px;
    }

    .hero-point {
      border: 1px solid var(--color-border);
      background: rgba(255,255,255,.045);
      border-radius: var(--radius-md);
      padding: 14px;
      min-width: 0;
    }

    .hero-point strong {
      display: block;
      color: var(--color-text);
      font-size: 22px;
      line-height: 1.2;
      margin-bottom: 5px;
    }

    .hero-point span {
      color: var(--color-muted);
      font-size: 13px;
    }

    .coupon-wall {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 14px;
      align-content: center;
      min-width: 0;
    }

    .coupon-main,
    .coupon-mini {
      position: relative;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      background: linear-gradient(145deg, #2B2B2B, #191919);
      box-shadow: var(--shadow-panel);
      overflow: hidden;
    }

    .coupon-main {
      min-height: 365px;
      padding: 26px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .coupon-main::before,
    .poster-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 22% 20%, rgba(210,59,59,.28), transparent 32%),
        radial-gradient(circle at 80% 78%, rgba(199,154,67,.18), transparent 30%);
      pointer-events: none;
    }

    .coupon-main > *,
    .coupon-mini > *,
    .poster-card > * {
      position: relative;
      z-index: 1;
    }

    .coupon-label {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 8px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(210,59,59,.14);
      border: 1px solid rgba(210,59,59,.32);
      color: #fff;
      font-size: 13px;
      font-weight: 800;
    }

    .coupon-value {
      font-size: 50px;
      line-height: 1;
      font-weight: 950;
      margin: 28px 0 12px;
      color: #fff;
      overflow-wrap: anywhere;
    }

    .coupon-desc {
      color: #D5D0C7;
      margin: 0;
      font-size: 15px;
    }

    .coupon-code {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-top: 28px;
      padding: 13px 14px;
      border-radius: 10px;
      border: 1px dashed rgba(255,255,255,.24);
      color: var(--color-muted);
      font-size: 14px;
    }

    .coupon-mini {
      min-height: 176px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .coupon-mini strong {
      display: block;
      font-size: 24px;
      line-height: 1.2;
      color: #fff;
      margin-bottom: 8px;
    }

    .coupon-mini span {
      color: var(--color-muted);
      font-size: 14px;
    }

    .rail-wrap {
      overflow-x: auto;
      padding-bottom: 8px;
      scrollbar-width: thin;
      scrollbar-color: var(--color-primary) transparent;
    }

    .poster-rail {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: 210px;
      gap: 16px;
    }

    .poster-card {
      position: relative;
      min-height: 280px;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      background: linear-gradient(160deg, #292929, #161616);
      padding: 18px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      box-shadow: var(--shadow-panel);
      transition: transform var(--fast), border-color var(--fast), box-shadow var(--fast);
    }

    .poster-card:hover {
      transform: translateY(-3px);
      border-color: rgba(210,59,59,.72);
      box-shadow: 0 18px 42px rgba(0,0,0,.36);
    }

    .poster-index {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,.08);
      color: var(--color-accent);
      font-weight: 900;
    }

    .poster-card h3 {
      font-size: 20px;
      line-height: 1.32;
      margin: 0 0 10px;
      font-weight: 850;
    }

    .poster-card p {
      color: var(--color-muted);
      font-size: 14px;
      margin: 0 0 14px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.13);
      background: rgba(255,255,255,.055);
      color: #DDD8CE;
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 700;
      width: fit-content;
    }

    .matrix-grid {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: 16px;
    }

    .matrix-card {
      border: 1px solid var(--color-border);
      background: linear-gradient(145deg, #242424, #1A1A1A);
      border-radius: var(--radius-lg);
      padding: 22px;
      box-shadow: var(--shadow-panel);
      position: relative;
      overflow: hidden;
      transition: border-color var(--fast), transform var(--fast), box-shadow var(--fast);
    }

    .matrix-card::after {
      content: "";
      position: absolute;
      left: 0;
      top: 22px;
      width: 4px;
      height: 42px;
      background: var(--color-primary);
      border-radius: 0 999px 999px 0;
    }

    .matrix-card:hover {
      transform: translateY(-2px);
      border-color: rgba(210,59,59,.55);
      box-shadow: 0 18px 44px rgba(0,0,0,.32);
    }

    .matrix-card.large {
      grid-column: span 6;
      min-height: 225px;
    }

    .matrix-card.medium {
      grid-column: span 3;
    }

    .matrix-card.wide {
      grid-column: span 4;
    }

    .matrix-card h3 {
      font-size: 22px;
      margin: 0 0 10px;
      font-weight: 850;
      line-height: 1.35;
    }

    .matrix-card p {
      margin: 0 0 16px;
      color: var(--color-muted);
      font-size: 15px;
    }

    .status-line {
      display: flex;
      align-items: center;
      gap: 9px;
      color: var(--color-muted);
      font-size: 13px;
    }

    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--color-primary);
      box-shadow: 0 0 0 4px rgba(210,59,59,.16);
      flex: 0 0 auto;
    }

    .hot-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .hot-card {
      background: #fff;
      border: 1px solid var(--color-border-light);
      border-radius: var(--radius-lg);
      padding: 20px;
      box-shadow: var(--shadow-light);
      transition: transform var(--fast), border-color var(--fast), box-shadow var(--fast);
    }

    .hot-card:hover {
      transform: translateY(-2px);
      border-color: rgba(210,59,59,.32);
      box-shadow: 0 16px 34px rgba(17,17,17,.12);
    }

    .rank-no {
      font-size: 30px;
      line-height: 1;
      font-weight: 950;
      color: var(--color-primary);
      margin-bottom: 18px;
    }

    .hot-card h3 {
      font-size: 19px;
      line-height: 1.35;
      margin: 0 0 10px;
      font-weight: 850;
    }

    .hot-card p {
      margin: 0 0 18px;
      color: #5F6369;
      font-size: 14px;
    }

    .table-panel {
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-panel);
      background: var(--color-panel);
    }

    .table {
      margin: 0;
      color: var(--color-text);
      border-color: var(--color-border);
    }

    .table thead th {
      background: #151515;
      color: #fff;
      border-color: var(--color-border);
      padding: 18px;
      font-size: 14px;
      white-space: nowrap;
    }

    .table tbody td,
    .table tbody th {
      background: #202020;
      color: #E7E2D8;
      border-color: var(--color-border);
      padding: 18px;
      vertical-align: middle;
    }

    .table tbody tr:nth-child(even) td,
    .table tbody tr:nth-child(even) th {
      background: #1B1B1B;
    }

    .score-bar {
      height: 8px;
      border-radius: 999px;
      background: rgba(255,255,255,.1);
      overflow: hidden;
      min-width: 96px;
      margin-top: 8px;
    }

    .score-fill {
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    }

    .highlight-text {
      color: #fff;
      font-weight: 850;
    }

    .playlist-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr .9fr;
      gap: 16px;
    }

    .playlist-card {
      border-radius: var(--radius-lg);
      border: 1px solid var(--color-border);
      background: linear-gradient(145deg, #242424, #171717);
      padding: 24px;
      min-height: 220px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: var(--shadow-panel);
    }

    .playlist-card.featured {
      min-height: 310px;
      background:
        linear-gradient(145deg, rgba(210,59,59,.22), rgba(24,24,24,.95)),
        linear-gradient(160deg, #282828, #151515);
    }

    .playlist-card h3 {
      font-size: 22px;
      font-weight: 850;
      line-height: 1.32;
      margin: 0 0 12px;
    }

    .playlist-card p {
      color: var(--color-muted);
      margin: 0;
      font-size: 15px;
    }

    .calendar-list {
      display: grid;
      gap: 12px;
    }

    .calendar-item {
      display: grid;
      grid-template-columns: 86px minmax(0,1fr) auto;
      align-items: center;
      gap: 16px;
      background: #fff;
      border: 1px solid var(--color-border-light);
      border-radius: var(--radius-md);
      padding: 14px 16px;
      box-shadow: 0 8px 20px rgba(17,17,17,.06);
    }

    .date-box {
      display: grid;
      place-items: center;
      min-height: 58px;
      border-radius: 10px;
      background: #181818;
      color: #fff;
      line-height: 1.2;
      text-align: center;
      font-weight: 850;
    }

    .date-box small {
      display: block;
      color: var(--color-accent);
      font-size: 12px;
      font-weight: 800;
    }

    .calendar-item h3 {
      margin: 0 0 4px;
      font-size: 18px;
      font-weight: 850;
    }

    .calendar-item p {
      margin: 0;
      color: #62666C;
      font-size: 14px;
    }

    .news-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) 360px;
      gap: 24px;
      align-items: start;
    }

    .news-list,
    .recommend-box {
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      background: var(--color-panel);
      box-shadow: var(--shadow-panel);
      overflow: hidden;
    }

    .news-link {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 14px;
      padding: 18px 20px;
      border-bottom: 1px solid var(--color-border);
      align-items: center;
    }

    .news-link:last-child {
      border-bottom: 0;
    }

    .news-link:hover {
      background: rgba(255,255,255,.045);
    }

    .news-link h3 {
      margin: 0 0 5px;
      font-size: 18px;
      line-height: 1.4;
      font-weight: 800;
      overflow-wrap: anywhere;
    }

    .news-link p {
      margin: 0;
      color: var(--color-muted);
      font-size: 14px;
    }

    .news-meta {
      color: var(--color-accent);
      font-size: 13px;
      white-space: nowrap;
    }

    .recommend-box {
      padding: 22px;
    }

    .recommend-box h3 {
      font-size: 22px;
      margin: 0 0 16px;
      font-weight: 850;
    }

    .mini-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .mini-list li {
      display: flex;
      gap: 10px;
      color: var(--color-muted);
      font-size: 14px;
    }

    .mini-list i {
      color: var(--color-primary);
      margin-top: 4px;
      flex: 0 0 auto;
    }

    .chase-panel {
      border-radius: var(--radius-lg);
      border: 1px solid var(--color-border);
      background:
        linear-gradient(135deg, rgba(210,59,59,.2), transparent 42%),
        linear-gradient(145deg, #242424, #151515);
      box-shadow: var(--shadow-panel);
      padding: 30px;
    }

    .chase-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 24px;
    }

    .step-card {
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md);
      background: rgba(255,255,255,.045);
      padding: 18px;
    }

    .step-card strong {
      display: inline-grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border-radius: 9px;
      background: var(--color-primary);
      color: #fff;
      margin-bottom: 14px;
    }

    .step-card h3 {
      font-size: 18px;
      margin: 0 0 8px;
      font-weight: 850;
    }

    .step-card p {
      margin: 0;
      color: var(--color-muted);
      font-size: 14px;
    }

    .accordion {
      --bs-accordion-bg: transparent;
      --bs-accordion-border-color: transparent;
      --bs-accordion-btn-focus-box-shadow: 0 0 0 .22rem rgba(210,59,59,.24);
    }

    .accordion-item {
      background: var(--color-panel);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md) !important;
      overflow: hidden;
      margin-bottom: 12px;
      box-shadow: 0 8px 22px rgba(0,0,0,.16);
    }

    .accordion-button {
      background: var(--color-panel);
      color: var(--color-text);
      font-weight: 800;
      font-size: 17px;
      line-height: 1.45;
      gap: 10px;
      padding: 18px 20px;
    }

    .accordion-button::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,.28);
      flex: 0 0 auto;
    }

    .accordion-button:not(.collapsed) {
      background: #252525;
      color: #fff;
      box-shadow: none;
    }

    .accordion-button:not(.collapsed)::before {
      background: var(--color-primary);
      box-shadow: 0 0 0 4px rgba(210,59,59,.16);
    }

    .accordion-button::after {
      filter: invert(1) grayscale(1);
    }

    .accordion-body {
      color: var(--color-muted);
      padding: 0 20px 20px 38px;
      font-size: 15px;
      line-height: 1.75;
    }

    .conversion {
      padding-bottom: 92px;
    }

    .form-band {
      display: grid;
      grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
      gap: 26px;
      align-items: stretch;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      background: linear-gradient(145deg, #252525, #151515);
      box-shadow: var(--shadow-panel);
      padding: 28px;
    }

    .form-band h2 {
      font-size: 30px;
      line-height: 1.25;
      margin: 0 0 14px;
      font-weight: 900;
    }

    .form-band p {
      color: var(--color-muted);
      margin: 0 0 22px;
    }

    .form-control,
    .form-select {
      min-height: 50px;
      border-radius: 10px;
      border: 1px solid var(--color-border);
      background: #222;
      color: var(--color-text);
    }

    textarea.form-control {
      min-height: 124px;
      resize: vertical;
    }

    .form-label {
      color: #E7E2D8;
      font-weight: 750;
      font-size: 14px;
      margin-bottom: 7px;
    }

    .form-text {
      color: var(--color-muted-2);
      font-size: 13px;
    }

    .site-footer {
      background: #0E0E0E;
      border-top: 1px solid var(--color-border);
      padding: 54px 0 24px;
      color: var(--color-muted);
    }

    .footer-brand {
      color: var(--color-text);
      font-weight: 900;
      font-size: 20px;
      line-height: 1.35;
      margin-bottom: 12px;
      overflow-wrap: anywhere;
    }

    .footer-title {
      color: var(--color-text);
      font-size: 15px;
      font-weight: 850;
      margin-bottom: 12px;
    }

    .footer-links {
      display: grid;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .footer-links a {
      color: var(--color-muted);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: #fff;
    }

    .footer-bottom {
      border-top: 1px solid var(--color-border);
      margin-top: 32px;
      padding-top: 18px;
      font-size: 13px;
      color: #858990;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    @media (max-width: 1199.98px) {
      .coupon-stage,
      .news-layout,
      .form-band {
        grid-template-columns: 1fr;
      }

      .coupon-wall {
        max-width: 780px;
      }

      .matrix-card.large,
      .matrix-card.medium,
      .matrix-card.wide {
        grid-column: span 6;
      }

      .hot-grid,
      .playlist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 991.98px) {
      .brand-row {
        min-height: auto;
        padding: 14px 0;
      }

      .brand-actions {
        margin-top: 12px;
        justify-content: flex-start;
      }

      .header-search {
        width: 100%;
      }

      .hero {
        min-height: auto;
        padding: 46px 0 56px;
      }

      .hero h1 {
        font-size: 36px;
      }

      section {
        padding: 58px 0;
      }

      .section-title h2 {
        font-size: 28px;
      }

      .coupon-wall,
      .chase-grid {
        grid-template-columns: 1fr;
      }

      .hero-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 767.98px) {
      .age-note {
        display: none;
      }

      .brand-logo {
        font-size: 15px;
      }

      .brand-logo-mark {
        width: 32px;
        height: 32px;
      }

      .hero h1 {
        font-size: 32px;
      }

      .hero-intro {
        font-size: 16px;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .hero-points,
      .matrix-grid,
      .hot-grid,
      .playlist-grid {
        grid-template-columns: 1fr;
      }

      .matrix-card.large,
      .matrix-card.medium,
      .matrix-card.wide {
        grid-column: auto;
      }

      .poster-rail {
        grid-auto-columns: 178px;
      }

      .poster-card {
        min-height: 246px;
      }

      .table-panel {
        border: 0;
        background: transparent;
        box-shadow: none;
      }

      .table {
        display: block;
      }

      .table thead {
        display: none;
      }

      .table tbody,
      .table tr,
      .table td,
      .table th {
        display: block;
        width: 100%;
      }

      .table tbody tr {
        border: 1px solid var(--color-border);
        border-radius: var(--radius-md);
        margin-bottom: 12px;
        overflow: hidden;
        background: var(--color-panel);
      }

      .table tbody td,
      .table tbody th {
        padding: 14px 16px;
      }

      .table tbody td::before {
        content: attr(data-label);
        display: block;
        color: var(--color-accent);
        font-size: 12px;
        font-weight: 800;
        margin-bottom: 4px;
      }

      .calendar-item {
        grid-template-columns: 68px minmax(0,1fr);
      }

      .calendar-item .btn {
        grid-column: 1 / -1;
      }

      .news-link {
        grid-template-columns: 1fr;
      }

      .news-meta {
        white-space: normal;
      }

      .form-band,
      .chase-panel {
        padding: 20px;
      }
    }

    @media (max-width: 520px) {
      .container-xxl {
        padding-left: 16px;
        padding-right: 16px;
      }

      .hero h1 {
        font-size: 30px;
      }

      .coupon-value {
        font-size: 38px;
      }

      .coupon-main {
        min-height: 320px;
        padding: 20px;
      }

      .section-title h2,
      .form-band h2 {
        font-size: 26px;
      }

      .footer-bottom {
        display: block;
      }
    }

/* roulang page: category1 */
:root {
      --color-bg: #111111;
      --color-bg-soft: #181818;
      --color-panel: #202020;
      --color-panel-2: #252525;
      --color-light: #F6F2EA;
      --color-light-2: #ECE6DB;
      --color-text: #F4F0E8;
      --color-text-dark: #161616;
      --color-muted: #A9ADB4;
      --color-muted-2: #747980;
      --color-primary: #D23B3B;
      --color-primary-dark: #B92835;
      --color-accent: #C79A43;
      --color-line: rgba(255,255,255,.1);
      --color-line-dark: rgba(17,17,17,.12);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --shadow-panel: 0 14px 40px rgba(0,0,0,.28);
      --shadow-light: 0 10px 28px rgba(17,17,17,.08);
      --transition: 180ms ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: PingFang SC, Microsoft YaHei, Noto Sans SC, Arial, sans-serif;
      line-height: 1.75;
      color: var(--color-text);
      background:
        linear-gradient(180deg, rgba(210,59,59,.08), transparent 360px),
        radial-gradient(circle at 18% 12%, rgba(199,154,67,.09), transparent 280px),
        var(--color-bg);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
    }

    a:hover {
      color: var(--color-text);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    ::selection {
      background: rgba(210,59,59,.38);
      color: #fff;
    }

    .container-xxl {
      max-width: 1240px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(17,17,17,.96);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--color-line);
    }

    .brand-row {
      min-height: 70px;
      display: flex;
      align-items: center;
      border-bottom: 1px solid rgba(255,255,255,.07);
      background:
        linear-gradient(90deg, rgba(255,255,255,.04), transparent 48%),
        #111111;
    }

    .brand-logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--color-text);
      font-weight: 800;
      font-size: 19px;
      line-height: 1.35;
      overflow-wrap: anywhere;
    }

    .brand-logo:hover {
      color: #fff;
      transform: translateY(-1px);
    }

    .brand-logo-mark {
      width: 42px;
      height: 42px;
      border-radius: 11px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      color: #fff;
      background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
      box-shadow: 0 10px 22px rgba(210,59,59,.24);
    }

    .brand-actions {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 14px;
    }

    .header-search {
      position: relative;
      flex: 1;
      max-width: 420px;
    }

    .header-search i {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--color-muted);
      pointer-events: none;
    }

    .header-search input {
      width: 100%;
      height: 44px;
      border: 1px solid rgba(255,255,255,.09);
      border-radius: 10px;
      padding: 0 14px 0 40px;
      background: #1B1B1B;
      color: var(--color-text);
      outline: none;
      transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    }

    .header-search input::placeholder {
      color: #858991;
    }

    .header-search input:focus {
      border-color: rgba(210,59,59,.7);
      box-shadow: 0 0 0 4px rgba(210,59,59,.18);
      background: #202020;
    }

    .age-note {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 34px;
      padding: 6px 12px;
      border: 1px solid rgba(199,154,67,.38);
      border-radius: 999px;
      color: #E6D2A0;
      font-size: 13px;
      white-space: nowrap;
      background: rgba(199,154,67,.08);
    }

    .channel-row {
      background: #151515;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }

    .channel-nav {
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 52px;
      overflow-x: auto;
      scrollbar-width: thin;
      scrollbar-color: rgba(210,59,59,.6) transparent;
      -webkit-overflow-scrolling: touch;
    }

    .channel-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      height: 36px;
      padding: 0 15px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.1);
      color: #C7CBD0;
      font-size: 14px;
      white-space: nowrap;
      background: rgba(255,255,255,.025);
    }

    .channel-link:hover {
      border-color: rgba(210,59,59,.7);
      color: #fff;
      background: rgba(210,59,59,.12);
    }

    .channel-link.active {
      border-color: var(--color-primary);
      color: #fff;
      background: var(--color-primary);
      box-shadow: 0 8px 18px rgba(210,59,59,.22);
    }

    main {
      min-height: 60vh;
    }

    .section {
      padding: 78px 0;
    }

    .section-tight {
      padding: 58px 0;
    }

    .section-light {
      color: var(--color-text-dark);
      background: var(--color-light);
    }

    .section-title {
      max-width: 820px;
      margin-bottom: 28px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #F0D59B;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0;
      margin-bottom: 12px;
    }

    .section-light .eyebrow {
      color: #8B6122;
    }

    h1,
    h2,
    h3 {
      letter-spacing: 0;
      line-height: 1.25;
      overflow-wrap: anywhere;
    }

    h1 {
      font-size: 42px;
      font-weight: 850;
      margin: 0 0 18px;
    }

    h2 {
      font-size: 30px;
      font-weight: 820;
      margin: 0 0 14px;
    }

    h3 {
      font-size: 21px;
      font-weight: 780;
      margin: 0 0 10px;
    }

    p {
      margin: 0 0 16px;
    }

    .lead-text {
      color: #D6D2C9;
      font-size: 17px;
      max-width: 760px;
    }

    .section-light .lead-text {
      color: #4E4E4E;
    }

    .btn {
      border-radius: 10px;
      padding: 11px 18px;
      font-weight: 760;
      border-width: 1px;
      transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
      white-space: normal;
      line-height: 1.35;
    }

    .btn-primary-custom {
      color: #fff;
      background: var(--color-primary);
      border-color: var(--color-primary);
      box-shadow: 0 12px 24px rgba(210,59,59,.24);
    }

    .btn-primary-custom:hover,
    .btn-primary-custom:focus {
      color: #fff;
      background: var(--color-primary-dark);
      border-color: var(--color-primary-dark);
      transform: translateY(-1px);
      box-shadow: 0 16px 28px rgba(185,40,53,.28);
    }

    .btn-outline-custom {
      color: var(--color-text);
      background: transparent;
      border-color: rgba(255,255,255,.22);
    }

    .btn-outline-custom:hover,
    .btn-outline-custom:focus {
      color: #fff;
      border-color: rgba(210,59,59,.72);
      background: rgba(210,59,59,.12);
      transform: translateY(-1px);
    }

    .btn:focus-visible,
    .form-control:focus,
    .form-select:focus,
    .accordion-button:focus,
    .page-link:focus {
      box-shadow: 0 0 0 4px rgba(210,59,59,.28);
      border-color: rgba(210,59,59,.78);
      outline: none;
    }

    .channel-hero {
      position: relative;
      padding: 54px 0 34px;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(17,17,17,.96), rgba(17,17,17,.72)),
        linear-gradient(135deg, rgba(210,59,59,.22), transparent 46%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.055) 0 1px, transparent 1px 86px),
        repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 58px),
        #161616;
      border-bottom: 1px solid var(--color-line);
    }

    .channel-hero:after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 3px;
      background: linear-gradient(90deg, var(--color-primary), var(--color-accent), transparent);
      opacity: .85;
    }

    .hero-copy {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .campaign-strip {
      position: relative;
      z-index: 1;
      margin-top: 32px;
      display: grid;
      grid-template-columns: 1.35fr .9fr auto;
      gap: 14px;
      align-items: center;
      padding: 16px;
      border: 1px solid rgba(255,255,255,.11);
      border-radius: var(--radius-lg);
      background: rgba(32,32,32,.88);
      box-shadow: var(--shadow-panel);
    }

    .campaign-title {
      margin: 0;
      color: #fff;
      font-weight: 780;
      line-height: 1.45;
    }

    .countdown {
      display: grid;
      grid-template-columns: repeat(3, minmax(58px, 1fr));
      gap: 8px;
    }

    .time-box {
      min-height: 54px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,.1);
      background: #161616;
      text-align: center;
      padding: 5px 8px;
    }

    .time-num {
      display: block;
      color: #fff;
      font-size: 20px;
      font-weight: 850;
      line-height: 1.25;
    }

    .time-label {
      color: var(--color-muted);
      font-size: 12px;
    }

    .filter-panel {
      margin-top: -1px;
      padding: 20px 0;
      background: #181818;
      border-bottom: 1px solid var(--color-line);
    }

    .filter-bar {
      display: grid;
      grid-template-columns: 1fr 190px 190px;
      gap: 14px;
      align-items: center;
    }

    .filter-search {
      position: relative;
    }

    .filter-search i {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--color-muted);
    }

    .filter-search .form-control {
      padding-left: 42px;
    }

    .form-control,
    .form-select {
      min-height: 48px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,.11);
      background-color: #222;
      color: var(--color-text);
    }

    .form-control::placeholder {
      color: #858991;
    }

    .form-select {
      background-image: none;
      color: #DCD8D0;
    }

    .filter-tags {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding-top: 14px;
      scrollbar-width: thin;
      scrollbar-color: rgba(210,59,59,.55) transparent;
    }

    .filter-tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 13px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.11);
      color: #D6D2C9;
      background: rgba(255,255,255,.035);
      white-space: nowrap;
      font-size: 13px;
      transition: border-color var(--transition), background var(--transition), transform var(--transition);
    }

    .filter-tag:hover,
    .filter-tag.active {
      border-color: var(--color-primary);
      background: rgba(210,59,59,.16);
      color: #fff;
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 26px;
    }

    .metric-card {
      padding: 18px;
      border-radius: var(--radius-md);
      background: #1E1E1E;
      border: 1px solid var(--color-line);
      box-shadow: var(--shadow-panel);
    }

    .metric-value {
      display: flex;
      align-items: baseline;
      gap: 6px;
      color: #fff;
      font-size: 28px;
      font-weight: 850;
      line-height: 1.1;
      margin-bottom: 7px;
    }

    .metric-value small {
      color: var(--color-accent);
      font-size: 13px;
      font-weight: 750;
    }

    .metric-card p {
      margin: 0;
      color: var(--color-muted);
      font-size: 14px;
      line-height: 1.6;
    }

    .progress-line {
      height: 4px;
      border-radius: 999px;
      margin-top: 14px;
      background: rgba(255,255,255,.08);
      overflow: hidden;
    }

    .progress-line span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    }

    .content-layout {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 26px;
      align-items: start;
    }

    .side-panel {
      position: sticky;
      top: 144px;
      border: 1px solid var(--color-line);
      border-radius: var(--radius-lg);
      background: #1D1D1D;
      padding: 18px;
      box-shadow: var(--shadow-panel);
    }

    .side-panel h2 {
      font-size: 20px;
      margin-bottom: 14px;
    }

    .side-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }

    .side-list a {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      padding: 10px 12px;
      border-radius: 10px;
      color: #D5D1C9;
      border: 1px solid rgba(255,255,255,.07);
      background: rgba(255,255,255,.025);
      font-size: 14px;
    }

    .side-list a:hover,
    .side-list a.active {
      border-color: rgba(210,59,59,.65);
      background: rgba(210,59,59,.12);
      color: #fff;
    }

    .side-tip {
      margin-top: 16px;
      padding: 13px;
      border-radius: 12px;
      color: #E6D2A0;
      background: rgba(199,154,67,.08);
      border: 1px solid rgba(199,154,67,.26);
      font-size: 13px;
      line-height: 1.65;
    }

    .entry-list {
      display: grid;
      gap: 16px;
    }

    .entry-card {
      display: grid;
      grid-template-columns: 176px 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 16px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--color-line);
      background: #1E1E1E;
      box-shadow: var(--shadow-panel);
      transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition), background var(--transition);
    }

    .entry-card:hover {
      border-color: rgba(210,59,59,.7);
      transform: translateY(-2px);
      box-shadow: 0 18px 42px rgba(0,0,0,.36);
      background: #222;
    }

    .entry-cover {
      min-height: 116px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,.1);
      background:
        linear-gradient(135deg, rgba(210,59,59,.42), rgba(199,154,67,.12)),
        repeating-linear-gradient(135deg, rgba(255,255,255,.07) 0 1px, transparent 1px 14px),
        #171717;
      display: flex;
      align-items: flex-end;
      padding: 12px;
      overflow: hidden;
    }

    .cover-code {
      color: rgba(255,255,255,.9);
      font-size: 26px;
      font-weight: 850;
      line-height: 1;
    }

    .entry-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 8px;
    }

    .badge-soft {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      padding: 4px 9px;
      border: 1px solid rgba(255,255,255,.11);
      background: rgba(255,255,255,.04);
      color: #DAD6CE;
      font-size: 12px;
      line-height: 1.35;
    }

    .badge-warm {
      color: #F1D99D;
      border-color: rgba(199,154,67,.32);
      background: rgba(199,154,67,.08);
    }

    .badge-red {
      color: #fff;
      border-color: rgba(210,59,59,.48);
      background: rgba(210,59,59,.18);
    }

    .entry-card h2 {
      font-size: 21px;
      margin-bottom: 8px;
    }

    .entry-card p {
      color: var(--color-muted);
      margin-bottom: 0;
      font-size: 15px;
      line-height: 1.7;
    }

    .entry-score {
      width: 128px;
      text-align: right;
    }

    .score-num {
      color: #fff;
      font-size: 26px;
      font-weight: 850;
      line-height: 1.1;
    }

    .score-label {
      color: var(--color-muted);
      font-size: 12px;
      margin-top: 3px;
    }

    .score-bar {
      height: 6px;
      margin-top: 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.09);
      overflow: hidden;
    }

    .score-bar span {
      display: block;
      height: 100%;
      background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
      border-radius: inherit;
    }

    .pagination-wrap {
      display: flex;
      justify-content: center;
      margin-top: 30px;
    }

    .pagination {
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .page-link {
      min-width: 40px;
      border-radius: 10px !important;
      border: 1px solid rgba(255,255,255,.12);
      color: #D9D5CE;
      background: #202020;
      text-align: center;
    }

    .page-link:hover {
      color: #fff;
      border-color: rgba(210,59,59,.65);
      background: rgba(210,59,59,.16);
    }

    .page-item.active .page-link {
      color: #fff;
      border-color: var(--color-primary);
      background: var(--color-primary);
    }

    .page-item.disabled .page-link {
      color: #686D74;
      border-color: rgba(255,255,255,.06);
      background: #181818;
    }

    .matrix-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 16px;
    }

    .matrix-card {
      border-radius: var(--radius-lg);
      border: 1px solid var(--color-line);
      background: #1E1E1E;
      padding: 20px;
      box-shadow: var(--shadow-panel);
      position: relative;
      overflow: hidden;
      min-height: 176px;
    }

    .matrix-card:before {
      content: "";
      position: absolute;
      left: 0;
      top: 20px;
      width: 4px;
      height: 38px;
      border-radius: 0 999px 999px 0;
      background: var(--color-primary);
    }

    .matrix-card.large {
      grid-column: span 6;
    }

    .matrix-card.medium {
      grid-column: span 3;
    }

    .matrix-card.wide {
      grid-column: span 5;
    }

    .matrix-card.offset {
      grid-column: span 4;
    }

    .matrix-card h3 {
      padding-left: 4px;
    }

    .matrix-card p {
      color: var(--color-muted);
      margin-bottom: 14px;
      font-size: 15px;
    }

    .status-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: auto;
    }

    .compare-table-wrap {
      overflow-x: auto;
      border-radius: var(--radius-lg);
      border: 1px solid var(--color-line-dark);
      box-shadow: var(--shadow-light);
      background: #fff;
    }

    .table {
      margin-bottom: 0;
      min-width: 760px;
      color: #272727;
      vertical-align: middle;
    }

    .table thead th {
      background: #171717;
      color: var(--color-text);
      border-color: rgba(255,255,255,.1);
      padding: 16px;
      font-weight: 780;
      white-space: nowrap;
    }

    .table tbody th,
    .table tbody td {
      padding: 16px;
      border-color: rgba(17,17,17,.09);
    }

    .table tbody th {
      width: 190px;
      color: #171717;
      font-weight: 780;
      background: #EFE9DE;
    }

    .table tbody tr:nth-child(even) td {
      background: #FBF8F2;
    }

    .table .mark-red {
      color: var(--color-primary-dark);
      font-weight: 800;
    }

    .rating {
      display: flex;
      align-items: center;
      gap: 8px;
      min-width: 140px;
    }

    .rating-track {
      flex: 1;
      height: 7px;
      border-radius: 999px;
      background: rgba(17,17,17,.1);
      overflow: hidden;
    }

    .rating-track span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    }

    .rating em {
      font-style: normal;
      font-weight: 760;
      color: #222;
      min-width: 34px;
    }

    .accordion {
      display: grid;
      gap: 12px;
    }

    .accordion-item {
      color: var(--color-text);
      background: #1E1E1E;
      border: 1px solid var(--color-line);
      border-radius: var(--radius-md) !important;
      overflow: hidden;
      box-shadow: var(--shadow-panel);
    }

    .accordion-button {
      color: var(--color-text);
      background: #1E1E1E;
      font-weight: 760;
      font-size: 17px;
      line-height: 1.5;
      padding: 18px 20px;
      gap: 10px;
    }

    .accordion-button:before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: rgba(255,255,255,.18);
      flex: 0 0 auto;
      transition: background var(--transition), box-shadow var(--transition);
    }

    .accordion-button:not(.collapsed) {
      color: #fff;
      background: #242424;
      box-shadow: none;
    }

    .accordion-button:not(.collapsed):before {
      background: var(--color-primary);
      box-shadow: 0 0 0 5px rgba(210,59,59,.16);
    }

    .accordion-button:hover {
      background: #242424;
    }

    .accordion-button::after {
      filter: invert(1) grayscale(1);
      opacity: .72;
    }

    .accordion-body {
      color: #D4D0C8;
      padding: 0 20px 20px 39px;
      line-height: 1.75;
    }

    .cta-band {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(210,59,59,.17), transparent 48%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 74px),
        #171717;
      border-top: 1px solid var(--color-line);
      border-bottom: 1px solid var(--color-line);
    }

    .feedback-card {
      border-radius: var(--radius-lg);
      border: 1px solid rgba(255,255,255,.11);
      background: #202020;
      padding: 22px;
      box-shadow: var(--shadow-panel);
    }

    .feedback-card label {
      color: #E9E4DB;
      font-size: 14px;
      font-weight: 720;
      margin-bottom: 7px;
    }

    .feedback-card textarea.form-control {
      min-height: 112px;
      resize: vertical;
    }

    .notice-list {
      display: grid;
      gap: 12px;
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
    }

    .notice-list li {
      display: flex;
      gap: 10px;
      color: #D8D3CA;
      line-height: 1.65;
    }

    .notice-list i {
      color: var(--color-accent);
      margin-top: 4px;
      flex: 0 0 auto;
    }

    .site-footer {
      padding: 54px 0 26px;
      background: #101010;
      color: #C9C5BD;
      border-top: 1px solid rgba(255,255,255,.08);
    }

    .footer-brand {
      color: #fff;
      font-size: 21px;
      font-weight: 850;
      margin-bottom: 12px;
      overflow-wrap: anywhere;
    }

    .footer-title {
      color: #fff;
      font-weight: 780;
      margin-bottom: 12px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: #B9BDC3;
      font-size: 14px;
    }

    .footer-links a:hover {
      color: #fff;
      padding-left: 2px;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      margin-top: 34px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,.08);
      color: #8E9299;
      font-size: 13px;
      line-height: 1.6;
    }

    @media (max-width: 1199.98px) {
      .entry-card {
        grid-template-columns: 150px 1fr;
      }

      .entry-score {
        grid-column: 1 / -1;
        width: 100%;
        text-align: left;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 10px;
        align-items: center;
      }

      .score-label {
        grid-column: 1 / -1;
      }

      .score-bar {
        margin-top: 0;
      }

      .matrix-card.large,
      .matrix-card.medium,
      .matrix-card.wide,
      .matrix-card.offset {
        grid-column: span 6;
      }
    }

    @media (max-width: 991.98px) {
      .brand-row {
        padding: 12px 0;
      }

      .brand-actions {
        justify-content: flex-start;
        margin-top: 10px;
      }

      .header-search {
        max-width: none;
      }

      h1 {
        font-size: 34px;
      }

      h2 {
        font-size: 27px;
      }

      .campaign-strip {
        grid-template-columns: 1fr;
      }

      .filter-bar {
        grid-template-columns: 1fr;
      }

      .metric-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .content-layout {
        grid-template-columns: 1fr;
      }

      .side-panel {
        position: static;
      }

      .side-list {
        grid-template-columns: repeat(2, 1fr);
      }

      .section {
        padding: 60px 0;
      }

      .section-tight {
        padding: 48px 0;
      }
    }

    @media (max-width: 767.98px) {
      .brand-logo {
        font-size: 16px;
      }

      .brand-logo-mark {
        width: 38px;
        height: 38px;
      }

      .brand-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
      }

      .age-note {
        justify-content: center;
        white-space: normal;
      }

      .channel-hero {
        padding: 42px 0 30px;
      }

      h1 {
        font-size: 31px;
      }

      h2 {
        font-size: 24px;
      }

      h3,
      .entry-card h2 {
        font-size: 19px;
      }

      .lead-text {
        font-size: 16px;
      }

      .hero-actions .btn,
      .campaign-strip .btn {
        width: 100%;
      }

      .countdown {
        grid-template-columns: repeat(3, 1fr);
      }

      .metric-grid {
        grid-template-columns: 1fr;
      }

      .side-list {
        grid-template-columns: 1fr;
      }

      .entry-card {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .entry-cover {
        min-height: 132px;
      }

      .matrix-grid {
        grid-template-columns: 1fr;
      }

      .matrix-card.large,
      .matrix-card.medium,
      .matrix-card.wide,
      .matrix-card.offset {
        grid-column: auto;
      }

      .accordion-button {
        font-size: 16px;
        padding: 16px;
      }

      .accordion-body {
        padding: 0 16px 18px 34px;
      }

      .footer-bottom {
        display: grid;
      }
    }

    @media (max-width: 520px) {
      .container-xxl {
        padding-left: 16px;
        padding-right: 16px;
      }

      .channel-link {
        height: 34px;
        padding: 0 12px;
        font-size: 13px;
      }

      .btn {
        width: 100%;
      }

      .section {
        padding: 50px 0;
      }

      .filter-tags {
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
      }

      .table {
        min-width: 680px;
      }
    }
