
    :root {
      --bg: #f6f6f4;
      --paper: #ffffff;
      --ink: #14100f;
      --muted: #68615e;
      --line: #ded8d2;
      --red: #b90f1f;
      --red-dark: #6e0611;
      --gold: #f6bf3d;
      --gold-soft: #fff0c2;
      --black: #151313;
      --shadow: 0 22px 55px rgba(36, 20, 12, 0.14);
      --radius: 8px;
      font-family: Inter, Arial, Helvetica, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      background: var(--bg);
      color: var(--ink);
      letter-spacing: 0;
    }

    img {
      max-width: 100%;
      display: block;
    }

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

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

    .topbar {
      background: #0e0d0d;
      color: #fff;
      border-bottom: 3px solid var(--red);
    }

    .topbar-inner {
      min-height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand-mark {
      width: 58px;
      height: 42px;
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.18), transparent 48%),
        linear-gradient(135deg, #e8ad34 0%, #b30a17 42%, #171313 100%);
      color: #fff;
      display: grid;
      place-items: center;
      font-weight: 900;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
    }

    .brand-title {
      line-height: 1;
    }

    .brand-title strong {
      display: block;
      font-size: 29px;
      font-weight: 900;
      color: #fff;
    }

    .brand-title span {
      display: block;
      margin-top: 4px;
      color: var(--gold);
      font-size: 12px;
      text-transform: uppercase;
      font-weight: 800;
    }

    .quick-actions {
      display: flex;
      gap: 9px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .quick-actions a,
    .hero-actions a,
    .read-more {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 18px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .quick-actions a:first-child,
    .hero-actions a:first-child,
    .read-more {
      background: var(--gold);
      color: #201300;
    }

    .quick-actions a:last-child,
    .hero-actions a:last-child {
      color: #fff;
      border: 1px solid rgba(255,255,255,0.32);
    }

    .nav {
      background: #8d0712;
      color: #fff;
      box-shadow: 0 9px 26px rgba(113, 6, 17, 0.24);
    }

    .nav-inner {
      min-height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .hero {
      background:
        linear-gradient(180deg, #111 0%, #52060d 100%);
      color: #fff;
      padding: 28px 0 42px;
    }

    .hero-card {
      min-height: 500px;
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      background: #080607;
      box-shadow: var(--shadow);
      isolation: isolate;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.78) 34%, rgba(0,0,0,0.28) 62%, rgba(0,0,0,0.02) 100%),
        url("/assets/hubet-hero-premium.png") center / cover no-repeat;
      z-index: -2;
    }

    .hero-card::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 150px;
      background: linear-gradient(0deg, rgba(0,0,0,0.78), transparent);
      z-index: -1;
    }

    .hero-content {
      width: min(600px, 100%);
      padding: clamp(34px, 6vw, 74px);
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(42px, 6vw, 76px);
      line-height: 0.92;
      text-transform: uppercase;
      font-weight: 950;
      color: #fff;
      text-wrap: balance;
    }

    .hero h1 span {
      display: block;
      margin-top: 10px;
      font-size: 0.62em;
      line-height: 1.02;
      color: var(--gold);
    }

    .hero h1 .title-break {
      font-size: 0.62em;
      line-height: 1.04;
    }

    .hero-text {
      margin: 24px 0 28px;
      max-width: 520px;
      color: rgba(255,255,255,0.82);
      font-size: 17px;
      line-height: 1.75;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      width: min(680px, calc(100% - 48px));
      margin: -82px auto 0;
      position: relative;
      z-index: 3;
      background: rgba(255,255,255,0.2);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 18px 40px rgba(0,0,0,0.26);
    }

    .hero-stat {
      background: rgba(19, 15, 15, 0.88);
      padding: 18px 20px;
      color: #fff;
      min-height: 100px;
    }

    .hero-stat strong {
      display: block;
      color: var(--gold);
      font-size: 30px;
      line-height: 1;
      margin-bottom: 8px;
    }

    .hero-stat span {
      font-size: 13px;
      line-height: 1.35;
      color: rgba(255,255,255,0.78);
      font-weight: 700;
    }

    .intro {
      padding: 74px 0 34px;
    }

    .split {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
      gap: 34px;
      align-items: stretch;
    }

    .section-title {
      margin: 0;
      color: #1a1111;
      font-size: clamp(34px, 4.2vw, 56px);
      line-height: 1;
      font-weight: 950;
      text-wrap: balance;
    }

    .section-copy {
      margin: 22px 0 0;
      color: var(--muted);
      line-height: 1.8;
      font-size: 16px;
    }

    .feature-panel,
    .text-panel,
    .step,
    .news-card,
    .info-box {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 16px 32px rgba(42, 22, 12, 0.07);
    }

    .text-panel {
      padding: clamp(28px, 4vw, 44px);
    }

    .feature-panel {
      padding: 28px;
      display: grid;
      gap: 14px;
    }

    .feature-row {
      display: grid;
      grid-template-columns: 54px minmax(0, 1fr);
      align-items: center;
      gap: 14px;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fffdf8;
    }

    .feature-icon {
      width: 54px;
      height: 54px;
      border-radius: 7px;
      background: linear-gradient(135deg, var(--red), var(--gold));
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.24);
    }

    .feature-row h3 {
      margin: 0 0 6px;
      font-size: 17px;
      color: #1d1010;
    }

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

    .banner-strip {
      margin: 44px auto 0;
      background: linear-gradient(105deg, #1a1111 0%, #7c0711 54%, #c78312 100%);
      color: #fff;
      border-radius: var(--radius);
      padding: 30px;
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      gap: 28px;
      align-items: center;
      box-shadow: var(--shadow);
    }

    .banner-strip h2 {
      margin: 0;
      font-size: clamp(28px, 3.6vw, 44px);
      line-height: 1;
      font-weight: 950;
    }

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

    .strip-item {
      border: 1px solid rgba(255,255,255,0.22);
      padding: 18px;
      border-radius: 7px;
      background: rgba(255,255,255,0.08);
    }

    .strip-item strong {
      display: block;
      margin-bottom: 5px;
      color: var(--gold-soft);
      font-size: 17px;
    }

    .strip-item span {
      color: rgba(255,255,255,0.78);
      font-size: 13px;
      line-height: 1.5;
    }

    .media-section {
      padding: 54px 0;
    }

    .media-grid {
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 30px;
      align-items: stretch;
    }

    .media-card {
      min-height: 360px;
      border-radius: var(--radius);
      overflow: hidden;
      background: url("/assets/hubet-hero-premium.png") center / cover no-repeat;
      position: relative;
      box-shadow: var(--shadow);
    }

    .media-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(0,0,0,0.88), rgba(0,0,0,0.16));
    }

    .media-card-content {
      position: absolute;
      left: 28px;
      bottom: 28px;
      z-index: 2;
      width: min(360px, calc(100% - 56px));
      color: #fff;
    }

    .media-card-content h2 {
      margin: 0 0 14px;
      color: var(--gold);
      font-size: 28px;
      line-height: 1.08;
    }

    .media-card-content p {
      margin: 0;
      color: rgba(255,255,255,0.82);
      line-height: 1.65;
    }

    .steps-panel {
      display: grid;
      gap: 14px;
    }

    .step {
      padding: 22px;
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 16px;
      align-items: start;
    }

    .step-number {
      width: 48px;
      height: 48px;
      border-radius: 8px;
      background: var(--black);
      color: var(--gold);
      display: grid;
      place-items: center;
      font-weight: 950;
      font-size: 20px;
    }

    .step h3 {
      margin: 0 0 8px;
      font-size: 20px;
      color: #1b1111;
    }

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

    .article-band {
      background: #fff;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 70px 0;
    }

    .article-head {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
      gap: 30px;
      align-items: end;
      margin-bottom: 30px;
    }

    .article-head p {
      color: var(--muted);
      line-height: 1.75;
      margin: 0;
    }

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

    .news-card {
      overflow: hidden;
    }

    .news-thumb {
      min-height: 152px;
      background:
        linear-gradient(115deg, rgba(18, 15, 14, 0.9), rgba(174, 11, 27, 0.55)),
        url("/assets/hubet-hero-premium.png") center / cover no-repeat;
      color: #fff;
      padding: 18px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
    }

    .news-thumb span {
      color: var(--gold);
      font-size: 12px;
      text-transform: uppercase;
      font-weight: 950;
    }

    .news-thumb strong {
      font-size: 42px;
      color: rgba(255,255,255,0.86);
      line-height: 1;
    }

    .news-body {
      padding: 22px;
    }

    .news-body time {
      display: block;
      color: var(--red);
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .news-body h3 {
      margin: 0 0 12px;
      font-size: 22px;
      line-height: 1.14;
      color: #1a1111;
    }

    .news-body p {
      margin: 0 0 18px;
      color: var(--muted);
      line-height: 1.65;
      font-size: 14px;
    }

    .info-section {
      padding: 68px 0;
    }

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

    .info-box {
      padding: 26px;
    }

    .info-box h3 {
      margin: 0 0 12px;
      font-size: 22px;
      color: #1a1111;
    }

    .info-box p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
    }

    .footer {
      background: #850711;
      color: #fff;
      padding: 42px 0;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 28px;
      align-items: center;
    }

    .footer strong {
      color: var(--gold);
      font-size: 34px;
      font-weight: 950;
    }

    .footer p {
      margin: 0;
      color: rgba(255,255,255,0.76);
      line-height: 1.6;
    }

    @media (max-width: 900px) {
      .container {
        width: min(100% - 26px, 720px);
      }

      .topbar-inner {
        min-height: 64px;
      }

      .brand-title strong {
        font-size: 25px;
      }

      .brand-title span,
      .nav-inner a:not(:first-child),
      .quick-actions a:first-child {
        display: none;
      }

      .nav-inner {
        justify-content: flex-start;
        overflow-x: auto;
        gap: 24px;
        padding-bottom: 2px;
      }

      .hero {
        padding-top: 16px;
      }

      .hero-card {
        min-height: 640px;
      }

      .hero-card::before {
        background:
          linear-gradient(180deg, rgba(0,0,0,0.76) 0%, rgba(0,0,0,0.58) 45%, rgba(0,0,0,0.88) 100%),
          url("/assets/hubet-hero-premium.png") center / cover no-repeat;
      }

      .hero-content {
        padding: 34px 22px;
      }

      .hero h1 {
        font-size: clamp(38px, 13vw, 58px);
      }

      .hero h1 span {
        font-size: 0.66em;
      }

      .hero-text {
        font-size: 15px;
        line-height: 1.65;
      }

      .hero-actions a {
        width: 100%;
      }

      .hero-stats {
        width: calc(100% - 26px);
        margin: -106px auto 0;
        grid-template-columns: 1fr;
      }

      .hero-stat {
        min-height: auto;
        padding: 15px 18px;
      }

      .split,
      .banner-strip,
      .media-grid,
      .article-head,
      .news-grid,
      .info-grid {
        grid-template-columns: 1fr;
      }

      .intro {
        padding-top: 52px;
      }

      .banner-strip,
      .text-panel,
      .feature-panel {
        padding: 22px;
      }

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

      .media-card {
        min-height: 420px;
      }

      .step {
        grid-template-columns: 42px 1fr;
      }

      .step-number {
        width: 42px;
        height: 42px;
      }

      .article-band,
      .info-section {
        padding: 52px 0;
      }

      .footer-inner {
        display: grid;
      }
    }

    @media (max-width: 520px) {
      .quick-actions a {
        min-height: 36px;
        padding: 0 14px;
        font-size: 12px;
      }

      .hero-card {
        min-height: 610px;
      }

      .hero h1,
      .section-title {
        word-break: normal;
      }

      .feature-row {
        grid-template-columns: 42px 1fr;
        padding: 14px;
      }

      .feature-icon {
        width: 42px;
        height: 42px;
      }

      .media-card-content {
        left: 18px;
        bottom: 18px;
        width: calc(100% - 36px);
      }

      .news-body h3,
      .info-box h3 {
        font-size: 20px;
      }
    }
  

.article-main {
  color: var(--ink);
  background: var(--bg);
}

.article-hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  padding: clamp(86px, 9vw, 142px) 0 clamp(72px, 7vw, 110px);
  background:
    linear-gradient(90deg, rgba(0,0,0,0.93), rgba(61,4,10,0.62) 52%, rgba(0,0,0,0.16)),
    url("/assets/hubet-hero-premium.png") center right / cover no-repeat;
}

.article-hero h1 {
  width: min(840px, 100%);
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
  font-weight: 950;
  text-transform: uppercase;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.article-meta span {
  border: 1px solid rgba(246,191,61,0.32);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(0,0,0,0.42);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  padding: 70px 0 92px;
}

.article-card,
.article-aside {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.article-card {
  padding: clamp(26px, 4vw, 48px);
}

.article-card .column {
  color: var(--red);
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.article-card .body {
  color: #2a2422;
  font-size: 17px;
  line-height: 1.85;
}

.article-card .body h2,
.article-card .body h3,
.article-card .body h4 {
  color: #17100f;
  line-height: 1.12;
  margin: 28px 0 12px;
}

.article-card .body img {
  border-radius: var(--radius);
  margin: 24px auto;
}

.article-card .edit,
.article-card .page,
.article-card .column-page {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 18px;
  color: var(--muted);
}

.article-card a {
  color: var(--red);
  font-weight: 900;
}

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

.action-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.action-list a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #211400;
  font-size: 13px;
  text-transform: uppercase;
}

.article-aside {
  overflow: hidden;
  align-self: start;
}

.aside-media {
  min-height: 190px;
  background:
    linear-gradient(115deg, rgba(18, 15, 14, 0.72), rgba(174, 11, 27, 0.28)),
    url("/assets/hubet-hero-premium.png") center / cover no-repeat;
}

.aside-body {
  padding: 26px;
}

.aside-body h3 {
  margin: 0 0 12px;
  color: #17100f;
  font-size: 28px;
  line-height: 1.1;
}

.aside-body p,
.aside-body li {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
    padding: 46px 0 66px;
  }

  .article-hero {
    padding: 72px 0 64px;
  }

  .article-hero h1 {
    font-size: clamp(36px, 12vw, 58px);
  }

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