
    :root {
      --ink: #07101e;
      --ink-2: #101827;
      --navy: #0d1830;
      --red: #d71924;
      --red-2: #ff303d;
      --gold: #f6c75f;
      --gold-2: #ffe19a;
      --cyan: #7fe6ff;
      --paper: #f8f5ec;
      --white: #ffffff;
      --text: #141926;
      --muted: #6b7280;
      --line: rgba(17, 24, 39, .12);
      --line-dark: rgba(255, 255, 255, .16);
      --shadow: 0 24px 58px rgba(9, 14, 28, .22);
      --radius: 8px;
      font-family: Arial, Helvetica, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background:
        linear-gradient(180deg, #070b15 0, #0d1830 36%, var(--paper) 36%, var(--paper) 100%);
      color: var(--text);
      letter-spacing: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .wrap {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    .topbar {
      background: #050911;
      color: #dfe8f7;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
      font-size: 13px;
    }

    .topbar .wrap,
    .masthead .wrap,
    .nav .wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .topbar .wrap {
      min-height: 36px;
    }

    .top-note {
      color: var(--gold-2);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .top-actions {
      display: flex;
      gap: 10px;
      white-space: nowrap;
    }

    .top-actions a,
    .header-cta {
      min-height: 30px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 16px;
      border-radius: 999px;
      background: #31466d;
      color: #fff;
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .top-actions a:first-child,
    .header-cta {
      background: var(--red);
    }

    .masthead {
      background: #fff;
    }

    .masthead .wrap {
      min-height: 96px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .brand-mark {
      width: 66px;
      height: 66px;
      display: grid;
      place-items: center;
      border-radius: 18px 18px 10px 10px;
      background: linear-gradient(135deg, #d71924 0%, #f6c75f 100%);
      color: #fff;
      font-size: 24px;
      font-weight: 950;
      box-shadow: 0 14px 30px rgba(215, 25, 36, .28);
    }

    .brand-title {
      display: block;
      color: var(--ink);
      font-size: 42px;
      font-weight: 950;
      line-height: .9;
    }

    .brand-title span {
      color: var(--red);
    }

    .brand-subtitle {
      display: block;
      margin-top: 9px;
      color: #536176;
      font-size: 13px;
      font-weight: 850;
      text-transform: uppercase;
    }

    .mast-tools {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .search {
      width: 330px;
      max-width: 35vw;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 14px;
      border: 1px solid #d8dee8;
      border-radius: 7px;
      color: #7a8494;
      font-size: 13px;
      background: #f7f9fc;
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 5;
      background: var(--red);
      box-shadow: 0 15px 28px rgba(215, 25, 36, .22);
    }

    .nav .wrap {
      justify-content: center;
      min-height: 56px;
    }

    .nav a {
      height: 56px;
      display: inline-flex;
      align-items: center;
      padding: 0 20px;
      color: #fff;
      font-size: 13px;
      font-weight: 950;
      text-transform: uppercase;
      border-bottom: 4px solid transparent;
    }

    .nav a.active {
      background: rgba(0, 0, 0, .12);
      border-bottom-color: var(--gold);
    }

    .breaking {
      margin: 26px auto 18px;
      min-height: 46px;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 12px 16px;
      border: 1px solid rgba(246, 199, 95, .34);
      border-radius: var(--radius);
      background: rgba(7, 16, 30, .86);
      color: #ecf2ff;
      box-shadow: var(--shadow);
    }

    .breaking strong {
      color: var(--gold-2);
      font-size: 13px;
      text-transform: uppercase;
    }

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 458px;
      gap: 24px;
      align-items: stretch;
    }

    .hero-copy {
      min-height: 520px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 58px 60px;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(215, 25, 36, .24), transparent 35%),
        linear-gradient(180deg, #111c33, #07101e);
      color: #fff;
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }

    .hero-copy::after {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      right: -90px;
      bottom: -110px;
      border: 38px solid rgba(246, 199, 95, .11);
      border-radius: 50%;
    }

    .hero-copy h1 {
      position: relative;
      z-index: 1;
      max-width: 650px;
      margin: 0;
      color: #fff;
      font-size: clamp(42px, 4.4vw, 68px);
      line-height: 1;
      font-weight: 950;
    }

    .hero-copy h1 span {
      color: var(--gold);
    }

    .hero-copy p {
      position: relative;
      z-index: 1;
      max-width: 610px;
      margin: 24px 0 32px;
      color: #dfe7f8;
      font-size: 17px;
      line-height: 1.72;
    }

    .hero-actions {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .btn {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 24px;
      border-radius: 7px;
      font-size: 14px;
      font-weight: 950;
    }

    .btn.primary {
      background: linear-gradient(135deg, #ff3240, #d71924);
      color: #fff;
      box-shadow: 0 14px 28px rgba(215, 25, 36, .32);
    }

    .btn.secondary {
      border: 1px solid rgba(255, 255, 255, .28);
      color: #fff;
      background: rgba(255, 255, 255, .06);
    }

    .hero-panel {
      min-height: 520px;
      border: 1px solid rgba(246, 199, 95, .45);
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, rgba(5, 8, 15, .06), rgba(5, 8, 15, .42)),
        url("/assets/rr88-hero.png") center / cover no-repeat;
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }

    .hero-panel::after {
      content: "RR88";
      position: absolute;
      left: 22px;
      bottom: 20px;
      padding: 10px 16px;
      border: 1px solid rgba(255, 255, 255, .24);
      border-radius: 7px;
      background: rgba(7, 16, 30, .72);
      color: var(--gold-2);
      font-size: 18px;
      font-weight: 950;
      letter-spacing: 1px;
    }

    .metric-row {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin: 18px auto 36px;
    }

    .metric {
      min-height: 104px;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 20px;
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: var(--radius);
      background: rgba(7, 16, 30, .9);
      color: #fff;
      box-shadow: 0 18px 38px rgba(7, 16, 30, .18);
    }

    .metric b {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 50%;
      background: var(--gold);
      color: var(--ink);
      font-size: 14px;
      font-weight: 950;
    }

    .metric strong,
    .feature-title strong {
      display: block;
      color: var(--gold-2);
      font-size: 14px;
      text-transform: uppercase;
    }

    .metric span span,
    .feature-title p,
    .section-head p,
    .news-body p,
    .guide-list p,
    .topic p,
    .footer p {
      color: var(--muted);
      line-height: 1.62;
    }

    .content {
      padding: 12px 0 70px;
    }

    .feature-band {
      display: grid;
      grid-template-columns: 370px 1fr;
      gap: 22px;
      align-items: stretch;
      margin-bottom: 34px;
    }

    .feature-title,
    .feature-list,
    .guide-panel,
    .topic-panel,
    .news-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 18px 46px rgba(17, 24, 39, .08);
    }

    .feature-title {
      padding: 30px;
      background: linear-gradient(180deg, #fff, #fff8e5);
    }

    .feature-title h2,
    .section-head h2,
    .guide-panel h2,
    .topic-panel h2 {
      margin: 0;
      color: var(--ink);
      font-size: 30px;
      line-height: 1.15;
    }

    .feature-title p {
      margin: 16px 0 0;
    }

    .feature-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      overflow: hidden;
    }

    .feature-item {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 14px;
      padding: 24px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .feature-item:nth-child(2n) {
      border-right: 0;
    }

    .feature-item:nth-child(n+3) {
      border-bottom: 0;
    }

    .feature-icon {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: #fff2d0;
      color: var(--red);
      font-size: 15px;
      font-weight: 950;
    }

    .feature-item h3 {
      margin: 3px 0 6px;
      color: var(--ink);
      font-size: 18px;
      line-height: 1.25;
    }

    .feature-item p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }

    .dark-section {
      margin-bottom: 42px;
      padding: 34px;
      border-radius: var(--radius);
      background:
        linear-gradient(90deg, rgba(7, 16, 30, .96), rgba(7, 16, 30, .7)),
        url("/assets/rr88-hero.png") center / cover no-repeat;
      color: #fff;
      box-shadow: var(--shadow);
    }

    .timeline {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 24px;
    }

    .timeline article {
      min-height: 154px;
      padding: 22px;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: var(--radius);
      background: rgba(4, 8, 16, .58);
    }

    .timeline b {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      border-radius: 10px;
      background: var(--gold);
      color: var(--ink);
      font-size: 18px;
      font-weight: 950;
    }

    .timeline h3 {
      margin: 0 0 8px;
      font-size: 19px;
    }

    .timeline p {
      margin: 0;
      color: #d9e4f7;
      line-height: 1.55;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
      margin: 0 0 18px;
      padding-bottom: 14px;
      border-bottom: 3px solid var(--red);
    }

    .section-head h2 {
      color: var(--red);
      text-transform: uppercase;
    }

    .section-head p {
      max-width: 520px;
      margin: 0;
      text-align: right;
    }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-bottom: 34px;
    }

    .news-card {
      overflow: hidden;
    }

    .news-thumb {
      height: 172px;
      background: url("/assets/rr88-hero.png") center / cover no-repeat;
    }

    .news-body {
      padding: 22px;
    }

    .news-date {
      color: var(--red);
      font-size: 12px;
      font-weight: 950;
    }

    .news-body h3 {
      margin: 10px 0;
      color: var(--ink);
      font-size: 22px;
      line-height: 1.18;
    }

    .news-body p {
      min-height: 68px;
      margin: 0 0 18px;
      font-size: 14px;
    }

    .readmore {
      color: var(--red);
      font-size: 13px;
      font-weight: 950;
      text-transform: uppercase;
    }

    .two-col {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 22px;
    }

    .guide-panel,
    .topic-panel {
      padding: 28px;
    }

    .guide-list {
      margin-top: 20px;
    }

    .guide-list div {
      display: grid;
      grid-template-columns: 112px 1fr;
      gap: 16px;
      padding: 16px 0;
      border-top: 1px solid var(--line);
    }

    .guide-list strong {
      color: var(--red);
      font-size: 13px;
      text-transform: uppercase;
    }

    .guide-list p {
      margin: 0;
      color: var(--ink);
      font-size: 16px;
      font-weight: 800;
    }

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

    .topic {
      min-height: 120px;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 7px;
      background: #fbfcff;
    }

    .topic h3 {
      margin: 0 0 8px;
      color: var(--ink);
      font-size: 17px;
    }

    .topic p {
      margin: 0;
      font-size: 14px;
    }

    .footer {
      background: #050911;
      color: #fff;
      padding: 38px 0 24px;
    }

    .foot-grid {
      display: grid;
      grid-template-columns: 1.3fr .7fr .9fr;
      gap: 40px;
    }

    .footer h2 {
      margin: 0 0 14px;
      color: var(--gold-2);
      font-size: 16px;
      text-transform: uppercase;
    }

    .footer p,
    .footer a {
      display: block;
      margin: 0 0 8px;
      color: #c8d2e4;
      font-size: 13px;
      line-height: 1.55;
    }

    .copyright {
      margin-top: 26px;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, .1);
      text-align: center;
      color: #95a3ba;
      font-size: 12px;
    }

    @media (max-width: 980px) {
      .wrap {
        width: min(100% - 28px, 780px);
      }

      .topbar .wrap,
      .masthead .wrap {
        align-items: flex-start;
        flex-direction: column;
        padding: 12px 0;
      }

      .mast-tools,
      .search {
        width: 100%;
        max-width: none;
      }

      .nav .wrap {
        justify-content: flex-start;
        overflow-x: auto;
      }

      .nav a {
        flex: 0 0 auto;
      }

      .hero,
      .feature-band,
      .two-col {
        grid-template-columns: 1fr;
      }

      .metric-row,
      .news-grid,
      .timeline,
      .foot-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 640px) {
      body {
        background: linear-gradient(180deg, #070b15 0, #0d1830 33%, var(--paper) 33%, var(--paper) 100%);
      }

      .topbar .wrap {
        gap: 10px;
      }

      .top-actions {
        width: 100%;
      }

      .top-actions a {
        flex: 1;
      }

      .brand-title {
        font-size: 34px;
      }

      .mast-tools {
        flex-direction: column;
        align-items: stretch;
      }

      .header-cta {
        width: 100%;
      }

      .nav {
        position: static;
      }

      .nav .wrap {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
        min-height: 0;
        padding: 8px 0;
        overflow: visible;
      }

      .nav a {
        height: 38px;
        justify-content: center;
        padding: 0 8px;
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: 6px;
        background: rgba(255, 255, 255, .1);
        font-size: 11px;
        line-height: 1.15;
        text-align: center;
        white-space: normal;
      }

      .nav a.active {
        border-bottom-color: transparent;
      }

      .nav a:last-child {
        grid-column: 1 / -1;
      }

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

      .hero-copy {
        min-height: 480px;
        padding: 34px 24px;
      }

      .hero-copy h1 {
        font-size: 38px;
      }

      .hero-panel {
        min-height: 360px;
      }

      .metric-row,
      .feature-list,
      .news-grid,
      .timeline,
      .topic-grid,
      .foot-grid {
        grid-template-columns: 1fr;
      }

      .feature-item,
      .feature-item:nth-child(2n),
      .feature-item:nth-child(n+3) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .feature-item:last-child {
        border-bottom: 0;
      }

      .section-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .section-head p {
        text-align: left;
      }

      .guide-list div {
        grid-template-columns: 1fr;
        gap: 6px;
      }
    }
  

    .article-main {
      padding: 28px 0 70px;
    }

    .article-shell {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 330px;
      gap: 24px;
      align-items: start;
    }

    .article-content,
    .article-side {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 18px 46px rgba(17, 24, 39, .08);
      overflow: hidden;
    }

    .article-hero {
      padding: 42px 44px;
      background:
        linear-gradient(90deg, rgba(7, 16, 30, .95), rgba(7, 16, 30, .68)),
        url("/assets/rr88-hero.png") center / cover no-repeat;
      color: #fff;
    }

    .article-hero h1 {
      max-width: 760px;
      margin: 0;
      color: #fff;
      font-size: clamp(34px, 4vw, 54px);
      line-height: 1.08;
      font-weight: 950;
    }

    .article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 18px;
      color: var(--gold-2);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .article-hero p {
      max-width: 680px;
      margin: 18px 0 0;
      color: #dbe6f9;
      font-size: 16px;
      line-height: 1.65;
    }

    .article-body {
      padding: 36px 44px;
      color: #202938;
      font-size: 17px;
      line-height: 1.8;
    }

    .article-body h2,
    .article-body h3 {
      color: var(--ink);
      line-height: 1.25;
    }

    .article-body h2 {
      margin: 30px 0 12px;
      font-size: 28px;
    }

    .article-body h3 {
      margin: 24px 0 10px;
      font-size: 22px;
    }

    .article-body p {
      margin: 0 0 16px;
    }

    .article-body ul,
    .article-body ol {
      padding-left: 22px;
      margin: 0 0 18px;
    }

    .article-nav {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      padding-top: 20px;
      margin-top: 24px;
      border-top: 1px solid var(--line);
      font-size: 14px;
      font-weight: 800;
    }

    .article-nav span,
    .article-nav a {
      display: block;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 7px;
      background: #fbfcff;
      color: var(--ink);
    }

    .article-side {
      padding: 24px;
    }

    .article-side h2 {
      margin: 0 0 16px;
      color: var(--ink);
      font-size: 22px;
    }

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

    .side-list a {
      display: block;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 7px;
      background: #fbfcff;
      color: var(--ink);
      font-size: 14px;
      font-weight: 850;
      line-height: 1.35;
    }

    .pager {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      margin: 24px 0 34px;
    }

    .pager a,
    .pager span {
      min-width: 38px;
      min-height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 12px;
      border: 1px solid var(--line);
      border-radius: 7px;
      background: #fff;
      color: var(--ink);
      font-size: 13px;
      font-weight: 850;
    }

    .pager .thisclass,
    .pager span.thisclass {
      border-color: var(--red);
      background: var(--red);
      color: #fff;
    }

    @media (max-width: 980px) {
      .article-shell {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .article-main {
        padding-top: 18px;
      }

      .article-hero {
        padding: 32px 24px;
      }

      .article-hero h1 {
        font-size: 32px;
      }

      .article-body,
      .article-side {
        padding: 24px;
      }

      .article-nav {
        grid-template-columns: 1fr;
      }
    }
