
    :root {
      --ink: #202733;
      --muted: #6d7788;
      --line: #e4e8ef;
      --black: #161719;
      --navy: #071526;
      --blue: #41688f;
      --orange: #f49b20;
      --orange-2: #ffb537;
      --gold: #ffd166;
      --paper: #ffffff;
      --soft: #f3f5f8;
      --radius: 8px;
      --shadow: 0 22px 58px rgba(25, 32, 44, .13);
    }

    * { box-sizing: border-box; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--soft);
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.55;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; height: auto; }
    .wrap { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }

    .topbar {
      background: var(--black);
      color: #fff;
    }
    .topbar-inner {
      min-height: 70px;
      display: grid;
      grid-template-columns: 230px minmax(0, 1fr) 240px;
      align-items: center;
      gap: 24px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 13px;
      min-width: 0;
    }
    .brand-badge {
      width: 54px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: #101010;
      font-weight: 900;
      background: linear-gradient(135deg, #ffe68a, #ff9f22 55%, #f06422);
      box-shadow: 0 0 24px rgba(244, 155, 32, .42);
    }
    .brand-word {
      display: block;
      color: #ff9f22;
      font-size: 38px;
      line-height: .86;
      font-weight: 900;
      letter-spacing: 0;
    }
    .brand small {
      display: block;
      margin-top: 5px;
      color: #d8e4f4;
      font-size: 10px;
      font-weight: 900;
    }
    .top-note {
      text-align: center;
      color: #d6dfec;
      font-size: 13px;
      font-weight: 800;
    }
    .top-note strong { color: var(--gold); }
    .top-actions {
      display: flex;
      justify-content: flex-end;
      gap: 12px;
    }
    .btn {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius);
      padding: 0 22px;
      font-size: 14px;
      font-weight: 900;
      white-space: nowrap;
    }
    .btn-blue {
      color: #fff;
      background: #486d99;
      box-shadow: inset 0 1px rgba(255,255,255,.2);
    }
    .btn-orange {
      color: #17130b;
      background: linear-gradient(180deg, #ffd66f, #f49b20);
      box-shadow: 0 9px 26px rgba(244, 155, 32, .32);
    }
    .btn-dark {
      color: #fff;
      background: #111827;
      border: 1px solid rgba(255,255,255,.16);
    }

    .nav {
      background: #e09b2a;
      color: #1f232a;
    }
    .nav ul {
      min-height: 62px;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      list-style: none;
    }
    .nav a {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0 18px;
      border-radius: 6px;
      font-weight: 900;
      font-size: 14px;
    }
    .nav a.active,
    .nav a:hover {
      background: #14243a;
      color: #fff;
    }

    .hero {
      position: relative;
      min-height: 610px;
      color: #fff;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(5, 10, 18, .98) 0%, rgba(5, 11, 21, .88) 44%, rgba(5, 11, 21, .16) 100%),
        url("6789-hero.png") center right / cover no-repeat,
        #07111f;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 180px;
      background: linear-gradient(180deg, transparent, rgba(5, 9, 16, .72));
      pointer-events: none;
    }
    .hero-grid {
      position: relative;
      z-index: 2;
      min-height: 610px;
      display: grid;
      grid-template-columns: minmax(0, 600px) 360px;
      gap: 60px;
      align-items: center;
    }
    .hero h1 {
      margin: 20px 0 18px;
      max-width: 640px;
      color: #fff;
      font-size: 62px;
      line-height: 1.02;
      font-weight: 900;
      letter-spacing: 0;
      text-shadow: 0 5px 0 rgba(0, 0, 0, .36);
    }
    .hero p {
      margin: 0;
      max-width: 570px;
      color: #dfe9f7;
      font-size: 18px;
      font-weight: 800;
    }
    .tag {
      display: inline-flex;
      min-height: 34px;
      align-items: center;
      padding: 0 14px;
      border: 1px solid rgba(255, 209, 102, .55);
      border-radius: var(--radius);
      color: var(--gold);
      background: rgba(0, 0, 0, .3);
      font-size: 13px;
      font-weight: 900;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 32px;
    }
    .hero-panel {
      align-self: end;
      margin-bottom: 90px;
      border-radius: var(--radius);
      padding: 24px;
      background: rgba(8, 15, 28, .74);
      border: 1px solid rgba(255, 209, 102, .28);
      box-shadow: 0 22px 58px rgba(0,0,0,.38);
      backdrop-filter: blur(8px);
    }
    .hero-panel h2 {
      margin: 0 0 18px;
      color: var(--gold);
      font-size: 28px;
      line-height: 1.1;
      font-weight: 900;
    }
    .rank-row {
      display: grid;
      grid-template-columns: 44px minmax(0, 1fr) auto;
      align-items: center;
      gap: 12px;
      min-height: 62px;
      padding: 9px;
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .08);
    }
    .rank-row + .rank-row { margin-top: 10px; }
    .rank-row span:first-child {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      background: var(--gold);
      color: #15100b;
      font-weight: 900;
    }
    .rank-row strong,
    .rank-row small {
      display: block;
    }
    .rank-row strong { font-size: 14px; }
    .rank-row small { color: #bcc9db; font-size: 12px; }
    .rank-row em {
      color: #38d98d;
      font-size: 12px;
      font-style: normal;
      font-weight: 900;
    }

    .quick {
      background: #0a111c;
      color: #fff;
    }
    .quick-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      border-left: 1px solid rgba(255,255,255,.08);
    }
    .quick-item {
      min-height: 98px;
      display: grid;
      grid-template-columns: 48px minmax(0, 1fr);
      gap: 14px;
      align-items: center;
      padding: 18px 22px;
      border-right: 1px solid rgba(255,255,255,.08);
    }
    .quick-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: #16120b;
      background: linear-gradient(135deg, #ffe477, #f49b20);
      font-weight: 900;
    }
    .quick-item strong,
    .quick-item small { display: block; }
    .quick-item strong { font-size: 16px; line-height: 1.15; }
    .quick-item small { margin-top: 4px; color: #b9c5d6; font-size: 12px; }

    .section { padding: 68px 0; }
    .white { background: #fff; }
    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 470px) minmax(0, 1fr);
      gap: 70px;
      align-items: start;
      margin-bottom: 34px;
    }
    .section-head h2 {
      margin: 0;
      font-size: 36px;
      line-height: 1.1;
      font-weight: 900;
      letter-spacing: 0;
    }
    .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 16px;
      font-weight: 700;
    }

    .intro-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 420px;
      gap: 34px;
      align-items: stretch;
    }
    .panel,
    .table,
    .feature-card,
    .news-card,
    .sidebar {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: var(--shadow);
    }
    .panel { padding: 30px; }
    .panel h3 {
      margin: 0 0 16px;
      font-size: 29px;
      line-height: 1.14;
      font-weight: 900;
    }
    .panel p {
      margin: 0 0 14px;
      color: #4f5a6b;
      font-weight: 700;
    }
    .table { overflow: hidden; }
    .table-row {
      display: grid;
      grid-template-columns: 150px minmax(0, 1fr);
      gap: 18px;
      padding: 18px 22px;
    }
    .table-row + .table-row { border-top: 1px solid var(--line); }
    .table-row strong { font-size: 14px; }
    .table-row span {
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
      word-break: break-word;
    }

    .banner-card {
      min-height: 300px;
      border-radius: var(--radius);
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(7, 15, 28, .9), rgba(7, 15, 28, .18)),
        url("6789-hero.png") center right / cover no-repeat;
      box-shadow: var(--shadow);
      display: flex;
      align-items: flex-end;
      margin-top: 32px;
    }
    .banner-strip {
      width: 100%;
      min-height: 74px;
      display: flex;
      align-items: center;
      padding: 0 34px;
      color: #fff;
      background: linear-gradient(90deg, #f49b20, #ffb537);
      border-top: 8px solid rgba(9, 20, 36, .8);
      font-size: 25px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }
    .feature-card {
      padding: 26px;
      min-height: 220px;
    }
    .feature-icon {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: #16120b;
      background: linear-gradient(135deg, #ffe477, #f49b20);
      font-size: 22px;
      font-weight: 900;
    }
    .feature-card h3 {
      margin: 24px 0 12px;
      font-size: 22px;
      font-weight: 900;
    }
    .feature-card p {
      margin: 0;
      color: var(--muted);
      font-weight: 700;
    }

    .news-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 310px;
      gap: 26px;
      align-items: start;
    }
    .news-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }
    .news-card {
      display: grid;
      grid-template-columns: 124px minmax(0, 1fr);
      gap: 16px;
      padding: 15px;
      min-width: 0;
    }
    .news-media {
      min-height: 124px;
      border-radius: 8px;
      background:
        linear-gradient(180deg, rgba(6, 12, 22, .08), rgba(6, 12, 22, .2)),
        url("6789-hero.png") center / cover no-repeat;
      position: relative;
      overflow: hidden;
    }
    .news-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(244, 155, 32, .18), rgba(6, 12, 22, 0) 46%),
        linear-gradient(0deg, rgba(6, 12, 22, .42), rgba(6, 12, 22, 0) 58%);
      pointer-events: none;
    }
    .news-card:nth-child(1) .news-media {
      background-position: 68% 45%;
    }
    .news-card:nth-child(2) .news-media {
      background-position: 90% 58%;
    }
    .news-card:nth-child(3) .news-media {
      background-position: 52% 52%;
    }
    .news-card:nth-child(4) .news-media {
      background-position: 76% 30%;
    }
    .news-card em {
      display: inline-flex;
      min-height: 24px;
      align-items: center;
      border-radius: 6px;
      padding: 0 9px;
      color: #17120a;
      background: var(--gold);
      font-size: 11px;
      font-style: normal;
      font-weight: 900;
    }
    .news-card strong {
      display: block;
      margin-top: 10px;
      font-size: 19px;
      line-height: 1.14;
      font-weight: 900;
    }
    .news-card small {
      display: block;
      margin-top: 9px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }
    .sidebar {
      padding: 22px;
      background: #111927;
      color: #fff;
    }
    .sidebar h3 {
      margin: 0 0 18px;
      color: var(--gold);
      font-size: 23px;
      font-weight: 900;
    }
    .side-link {
      min-height: 44px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 10px;
      padding: 0 13px;
      border-radius: 7px;
      background: #212c3d;
      color: #fff;
      font-size: 14px;
      font-weight: 800;
    }
    .side-link + .side-link { margin-top: 10px; }
    .side-link span:last-child { color: var(--gold); }

    .footer {
      padding: 52px 0 34px;
      background: #151719;
      color: #fff;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr repeat(3, 1fr);
      gap: 58px;
    }
    .footer h3 {
      margin: 0 0 14px;
      color: var(--gold);
      font-size: 17px;
      font-weight: 900;
    }
    .footer p,
    .footer a {
      margin: 0;
      color: #c8d4e4;
      font-size: 14px;
      font-weight: 700;
    }
    .footer a {
      display: block;
      margin-bottom: 8px;
    }
    .copy {
      margin-top: 34px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.12);
      color: #8f9aab;
      font-size: 13px;
      font-weight: 700;
    }

    @media (max-width: 900px) {
      .topbar-inner,
      .hero-grid,
      .section-head,
      .intro-grid,
      .news-layout {
        grid-template-columns: 1fr;
      }
      .topbar-inner {
        gap: 12px;
        padding: 12px 0;
        text-align: center;
      }
      .brand,
      .top-actions { justify-content: center; }
      .hero,
      .hero-grid { min-height: auto; }
      .hero { padding: 56px 0 42px; }
      .hero h1 { font-size: 48px; }
      .hero-panel { margin-bottom: 0; }
      .quick-grid,
      .feature-grid,
      .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .nav ul {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 8px 20px;
      }
    }
    @media (max-width: 560px) {
      .wrap { width: min(100% - 16px, 520px); }
      .brand-word { font-size: 32px; }
      .top-actions { width: 100%; }
      .top-actions .btn { flex: 1; }
      .nav a { padding: 0 12px; font-size: 12px; min-height: 34px; }
      .hero {
        background:
          linear-gradient(180deg, rgba(5, 10, 18, .96) 0%, rgba(5, 10, 18, .86) 55%, rgba(5, 10, 18, .76) 100%),
          url("6789-hero.png") center bottom / cover no-repeat,
          #07111f;
      }
      .hero h1 { font-size: 39px; }
      .hero p,
      .section-head p { font-size: 15px; }
      .hero-actions .btn,
      .top-actions .btn { padding: 0 12px; }
      .quick-grid,
      .feature-grid,
      .news-list,
      .footer-grid { grid-template-columns: 1fr; }
      .quick-item { min-height: 78px; }
      .section { padding: 46px 0; }
      .section-head h2 { font-size: 30px; }
      .panel,
      .feature-card,
      .sidebar { padding: 21px; }
      .table-row { grid-template-columns: 1fr; gap: 5px; }
      .banner-strip { min-height: 64px; padding: 0 18px; font-size: 20px; }
      .news-card { grid-template-columns: 110px minmax(0, 1fr); gap: 13px; }
      .news-card strong { font-size: 17px; }
    }
    @media (max-width: 410px) {
      .news-card { grid-template-columns: 1fr; }
      .news-media { min-height: 145px; }
    }
  

.article-hero {
  min-height: 430px;
}
.article-hero .hero-grid {
  min-height: 430px;
  grid-template-columns: minmax(0, 660px) 350px;
}
.article-hero .hero-panel {
  margin-bottom: 38px;
}
.article-hero h1 {
  font-size: 48px;
}
.article-section {
  background: #fff;
  padding: 66px 0;
}
.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 26px;
  align-items: start;
}
.article-main {
  min-width: 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.article-main h1 {
  margin: 0 0 16px;
  font-size: 38px;
  line-height: 1.16;
  font-weight: 900;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 14px 0 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.article-body {
  padding-top: 24px;
  color: #424d5d;
  font-size: 17px;
  font-weight: 600;
}
.article-body h2,
.article-body h3 {
  color: var(--ink);
  font-weight: 900;
  line-height: 1.18;
}
.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;
}
.article-body img,
.article-body video,
.article-body iframe {
  max-width: 100%;
}
.article-body table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
}
.article-body th,
.article-body td {
  border: 1px solid var(--line);
  padding: 10px;
}
.article-pagination {
  margin-top: 24px;
}
.pagination {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.pagination li,
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0 5px 8px 0;
  padding: 0 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}
.article-prenext {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.article-prenext div {
  min-width: 0;
  padding: 14px;
  border-radius: var(--radius);
  background: #f3f5f8;
  color: var(--muted);
  font-weight: 800;
}
@media (max-width: 900px) {
  .article-hero .hero-grid,
  .article-shell {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .article-section {
    padding: 46px 0;
  }
  .article-hero h1 {
    font-size: 34px;
  }
  .article-main {
    padding: 22px;
  }
  .article-main h1 {
    font-size: 29px;
  }
  .article-prenext {
    grid-template-columns: 1fr;
  }
}
