﻿:root {
      --tx-bg: #07090d;
      --tx-ink: #111723;
      --tx-night: #0b1020;
      --tx-navy: #111b33;
      --tx-blue: #155a84;
      --tx-cyan: #2ad3df;
      --tx-red: #e2192c;
      --tx-red-dark: #8e101d;
      --tx-gold: #f4c85a;
      --tx-gold-deep: #9c6b16;
      --tx-cream: #fff5df;
      --tx-paper: #fffbf2;
      --tx-muted: #697386;
      --tx-line: rgba(244, 200, 90, .28);
      --tx-shadow: 0 24px 60px rgba(0, 0, 0, .32);
      --tx-max: 1180px;
      font-family: Inter, Arial, "Helvetica Neue", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      min-height: 100%;
      overflow-x: hidden;
      color: var(--tx-ink);
      background: var(--tx-bg);
      letter-spacing: 0;
    }

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

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

    h1,
    h2,
    h3,
    p,
    li,
    a,
    span,
    strong {
      min-width: 0;
    }

    h1,
    h2,
    h3 {
      margin: 0;
      overflow-wrap: anywhere;
    }

    p {
      margin: 0;
      line-height: 1.72;
    }

    .tx-container {
      width: min(var(--tx-max), calc(100% - 48px));
      margin: 0 auto;
    }

    .tx-top {
      background: #050608;
      color: #fff;
      border-bottom: 1px solid rgba(244, 200, 90, .25);
    }

    .tx-top-inner {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

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

    .tx-mark {
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      background:
        linear-gradient(145deg, #fff1a6 0%, #f0ba3e 42%, #db172c 100%);
      color: #111;
      font-weight: 950;
      font-size: 17px;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.34), 0 14px 30px rgba(0,0,0,.4);
    }

    .tx-word {
      display: grid;
      gap: 2px;
    }

    .tx-word strong {
      font-size: 32px;
      line-height: .9;
      font-style: italic;
      font-weight: 950;
      color: #fff;
      text-shadow: 2px 2px 0 var(--tx-red), 4px 4px 0 #123c6b;
    }

    .tx-word span {
      color: var(--tx-gold);
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
    }

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

    .tx-pill {
      min-width: 132px;
      min-height: 44px;
      display: inline-grid;
      place-items: center;
      padding: 0 22px;
      border-radius: 8px;
      color: #fff;
      background: linear-gradient(180deg, #f02538 0%, #c91022 100%);
      box-shadow: 0 10px 26px rgba(226, 25, 44, .32);
      font-size: 14px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .tx-pill.alt {
      color: #151008;
      background: linear-gradient(180deg, #ffe887 0%, #dea636 100%);
      box-shadow: 0 10px 26px rgba(244, 200, 90, .24);
    }

    .tx-nav-wrap {
      background: linear-gradient(180deg, #d6aa34 0%, #b9871d 100%);
      color: #140e08;
      border-bottom: 1px solid rgba(255,255,255,.18);
    }

    .tx-nav {
      min-height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 36px;
      overflow-x: auto;
      white-space: nowrap;
      scrollbar-width: none;
    }

    .tx-nav::-webkit-scrollbar {
      display: none;
    }

    .tx-nav a {
      flex: 0 0 auto;
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      position: relative;
      font-size: 13px;
      font-weight: 950;
      text-transform: uppercase;
    }

    .tx-nav a.is-active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 4px;
      background: var(--tx-red);
    }

    .tx-hero {
      color: #fff;
      background:
        linear-gradient(90deg, rgba(5,6,8,.86) 0%, rgba(5,6,8,.72) 37%, rgba(5,6,8,.2) 72%, rgba(5,6,8,.58) 100%),
        url("/assets/tx88-hero.png") center right / cover no-repeat;
      border-bottom: 1px solid rgba(244, 200, 90, .2);
    }

    .tx-hero-inner {
      min-height: 640px;
      display: grid;
      align-items: center;
      padding: 76px 0 118px;
    }

    .tx-hero-card {
      width: min(580px, 100%);
      padding: 48px 44px;
      background: linear-gradient(145deg, rgba(9, 13, 24, .9), rgba(78, 13, 20, .74));
      border: 1px solid rgba(244, 200, 90, .38);
      border-radius: 8px;
      box-shadow: var(--tx-shadow);
      backdrop-filter: blur(3px);
    }

    .tx-hero h1 {
      font-size: 72px;
      line-height: .92;
      font-weight: 950;
      color: #fff;
      max-width: 520px;
    }

    .tx-hero p {
      margin-top: 24px;
      color: rgba(255,255,255,.84);
      font-size: 17px;
      font-weight: 650;
      max-width: 530px;
    }

    .tx-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 30px;
    }

    .tx-button {
      min-height: 50px;
      display: inline-grid;
      place-items: center;
      padding: 0 24px;
      border-radius: 6px;
      background: linear-gradient(180deg, #f01f35 0%, #c50d1d 100%);
      color: #fff;
      font-weight: 950;
      font-size: 13px;
      text-transform: uppercase;
      box-shadow: 0 14px 30px rgba(226,25,44,.28);
    }

    .tx-button.gold {
      color: #181008;
      background: linear-gradient(180deg, #ffe385 0%, #dba338 100%);
      box-shadow: 0 14px 30px rgba(244,200,90,.2);
    }

    .tx-proof {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 28px;
    }

    .tx-proof div {
      min-height: 78px;
      padding: 16px;
      border: 1px solid rgba(244, 200, 90, .28);
      background: rgba(255,255,255,.06);
      border-radius: 4px;
    }

    .tx-proof b {
      display: block;
      color: var(--tx-gold);
      font-size: 25px;
      line-height: 1;
    }

    .tx-proof span {
      display: block;
      margin-top: 8px;
      color: rgba(255,255,255,.82);
      font-size: 12px;
      font-weight: 850;
    }

    .tx-category-rail {
      margin-top: -70px;
      position: relative;
      z-index: 2;
    }

    .tx-category-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 8px;
      padding: 16px;
      background: var(--tx-paper);
      border: 1px solid rgba(244,200,90,.4);
      box-shadow: 0 22px 54px rgba(15, 10, 4, .22);
      border-radius: 8px;
    }

    .tx-category {
      min-height: 94px;
      padding: 18px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 8px;
      border-radius: 4px;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(226,25,44,.82), rgba(8,15,29,.92)),
        #8e101d;
      border: 1px solid rgba(244, 200, 90, .28);
    }

    .tx-category b {
      color: var(--tx-gold);
      font-size: 24px;
      line-height: 1;
    }

    .tx-category span {
      font-size: 13px;
      font-weight: 950;
      text-transform: uppercase;
    }

    .tx-overview {
      background: var(--tx-cream);
      padding: 92px 0 84px;
    }

    .tx-overview-layout {
      display: grid;
      grid-template-columns: .96fr 1.04fr;
      gap: 70px;
      align-items: center;
    }

    .tx-section-label {
      color: var(--tx-blue);
      font-size: 13px;
      font-weight: 950;
      text-transform: uppercase;
    }

    .tx-overview h2,
    .tx-news h2 {
      margin-top: 12px;
      color: #160e07;
      font-size: 48px;
      line-height: 1.02;
      font-weight: 950;
      max-width: 690px;
    }

    .tx-overview-copy {
      display: grid;
      gap: 20px;
      color: #514a41;
      font-size: 15px;
    }

    .tx-image-frame {
      overflow: hidden;
      border-radius: 8px;
      background: #111;
      border: 1px solid rgba(156, 107, 22, .35);
      box-shadow: 0 24px 58px rgba(41, 24, 4, .18);
    }

    .tx-image-frame img {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      object-position: center right;
    }

    .tx-image-caption {
      padding: 22px;
      color: #fff;
      background: linear-gradient(135deg, #091321, #7a111d);
    }

    .tx-image-caption h3 {
      font-size: 22px;
      line-height: 1.18;
      font-weight: 950;
    }

    .tx-image-caption p {
      margin-top: 10px;
      color: rgba(255,255,255,.78);
      font-size: 14px;
    }

    .tx-list {
      display: grid;
      gap: 0;
      margin-top: 30px;
    }

    .tx-list li {
      list-style: none;
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 13px;
      padding: 18px 0;
      border-bottom: 1px solid rgba(17, 23, 35, .12);
      color: #514a41;
      line-height: 1.65;
    }

    .tx-list li::before {
      content: "";
      width: 12px;
      height: 12px;
      margin-top: 8px;
      border-radius: 999px;
      background: var(--tx-gold);
      box-shadow: 0 0 0 5px rgba(244,200,90,.18);
    }

    .tx-band {
      color: #fff;
      background:
        linear-gradient(180deg, rgba(7, 9, 13, .96), rgba(43, 9, 15, .96)),
        var(--tx-bg);
      padding: 78px 0;
      border-top: 1px solid rgba(244, 200, 90, .16);
      border-bottom: 1px solid rgba(244, 200, 90, .16);
    }

    .tx-band-head {
      display: grid;
      grid-template-columns: .9fr 1fr;
      gap: 60px;
      align-items: end;
      margin-bottom: 34px;
    }

    .tx-band h2 {
      font-size: 45px;
      line-height: 1.04;
      font-weight: 950;
    }

    .tx-band p {
      color: rgba(255,255,255,.72);
      font-size: 15px;
    }

    .tx-step-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .tx-step {
      min-height: 176px;
      padding: 24px;
      border-radius: 8px;
      border: 1px solid rgba(244,200,90,.2);
      background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
    }

    .tx-step b {
      display: block;
      color: var(--tx-gold);
      font-size: 30px;
      line-height: 1;
      margin-bottom: 30px;
    }

    .tx-step h3 {
      font-size: 18px;
      line-height: 1.2;
      font-weight: 950;
    }

    .tx-step p {
      margin-top: 10px;
      color: rgba(255,255,255,.67);
      font-size: 13px;
      line-height: 1.55;
    }

    .tx-news {
      background: var(--tx-paper);
      padding: 82px 0 88px;
    }

    .tx-news-head {
      display: grid;
      grid-template-columns: .9fr 1fr;
      gap: 64px;
      align-items: end;
      margin-bottom: 38px;
    }

    .tx-news-head p {
      color: #62584b;
      font-size: 15px;
    }

    .tx-news-layout {
      display: grid;
      grid-template-columns: 1.25fr .85fr;
      gap: 24px;
      align-items: stretch;
    }

    .tx-featured-news {
      display: grid;
      grid-template-columns: .98fr 1.02fr;
      min-height: 380px;
      overflow: hidden;
      border-radius: 8px;
      background: #151013;
      color: #fff;
      border: 1px solid rgba(156, 107, 22, .32);
      box-shadow: 0 20px 44px rgba(41, 24, 4, .14);
    }

    .tx-featured-media {
      position: relative;
      min-height: 380px;
      background:
        linear-gradient(180deg, rgba(6,8,12,.06), rgba(6,8,12,.48)),
        url("/assets/tx88-hero.png") center / cover no-repeat;
    }

    .tx-featured-media b {
      position: absolute;
      left: 22px;
      bottom: 22px;
      width: 72px;
      height: 72px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      color: #111;
      background: linear-gradient(145deg, #ffe991, #daa138);
      font-size: 24px;
      font-weight: 950;
      box-shadow: 0 16px 28px rgba(0,0,0,.28);
    }

    .tx-featured-copy {
      padding: 36px 32px;
      background: linear-gradient(145deg, #71121c, #170d12);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 18px;
    }

    .tx-featured-copy small {
      color: var(--tx-gold);
      font-weight: 950;
      text-transform: uppercase;
    }

    .tx-featured-copy h3 {
      font-size: 38px;
      line-height: 1.02;
      font-weight: 950;
    }

    .tx-featured-copy p {
      color: rgba(255,255,255,.76);
      font-size: 14px;
    }

    .tx-news-link {
      width: max-content;
      min-height: 46px;
      display: inline-grid;
      place-items: center;
      padding: 0 20px;
      border-radius: 4px;
      background: var(--tx-red);
      color: #fff;
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
    }

    .tx-side-news {
      display: grid;
      gap: 16px;
    }

    .tx-side-card {
      display: grid;
      grid-template-columns: 74px 1fr;
      gap: 18px;
      align-items: center;
      min-height: 116px;
      padding: 18px;
      border-radius: 8px;
      background: #fff;
      border: 1px solid rgba(17,23,35,.08);
      box-shadow: 0 16px 34px rgba(17,23,35,.06);
    }

    .tx-side-card b {
      height: 64px;
      display: grid;
      place-items: center;
      border-radius: 4px;
      color: #fff;
      background: linear-gradient(135deg, #d91428, #111723);
      font-size: 20px;
      font-weight: 950;
    }

    .tx-side-card h3 {
      color: #111723;
      font-size: 17px;
      line-height: 1.2;
      font-weight: 950;
    }

    .tx-side-card p {
      margin-top: 5px;
      color: #6a6256;
      font-size: 12px;
      line-height: 1.45;
    }

    .tx-news-bottom {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 24px;
      padding: 18px;
      border-radius: 8px;
      background: #0b0d13;
      border: 1px solid rgba(244,200,90,.2);
    }

    .tx-bottom-card {
      display: grid;
      grid-template-columns: 82px 1fr;
      min-height: 118px;
      overflow: hidden;
      border-radius: 4px;
      background: #fff;
      color: #111723;
    }

    .tx-bottom-card b {
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 26px;
      font-weight: 950;
      background: linear-gradient(145deg, #e2192c, #111b33 64%, #f4c85a 100%);
    }

    .tx-bottom-card div {
      padding: 20px 18px;
    }

    .tx-bottom-card small {
      color: var(--tx-red);
      font-weight: 950;
      text-transform: uppercase;
    }

    .tx-bottom-card h3 {
      margin-top: 8px;
      font-size: 17px;
      line-height: 1.16;
      font-weight: 950;
    }

    .tx-bottom-card p {
      margin-top: 8px;
      color: #6a6256;
      font-size: 12px;
      line-height: 1.45;
    }

    .tx-footer {
      color: rgba(255,255,255,.74);
      background: #050608;
      border-top: 2px solid rgba(244, 200, 90, .54);
      padding: 34px 0;
      font-size: 13px;
    }

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

    .tx-footer strong {
      display: block;
      color: #fff;
      font-size: 16px;
      margin-bottom: 6px;
    }

    .tx-article-hero {
      color: #fff;
      background:
        linear-gradient(90deg, rgba(5,6,8,.92), rgba(57,11,18,.76)),
        url("/assets/tx88-hero.png") center right / cover no-repeat;
      border-bottom: 1px solid rgba(244, 200, 90, .22);
    }

    .tx-article-hero-inner {
      min-height: 360px;
      display: grid;
      align-content: center;
      padding: 58px 0;
    }

    .tx-article-hero h1 {
      max-width: 780px;
      font-size: 54px;
      line-height: 1.02;
      font-weight: 950;
    }

    .tx-article-hero p {
      max-width: 680px;
      margin-top: 18px;
      color: rgba(255,255,255,.82);
      font-size: 17px;
      font-weight: 650;
    }

    .tx-article-wrap {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: 28px;
      align-items: start;
      padding: 64px 0 78px;
    }

    .tx-article,
    .tx-article-side-card {
      border: 1px solid rgba(17,23,35,.12);
      border-radius: 8px;
      background: var(--tx-paper);
      box-shadow: 0 18px 46px rgba(20, 12, 4, .1);
    }

    .tx-article {
      padding: 42px;
    }

    .tx-article h1 {
      color: #120d08;
      font-size: 42px;
      line-height: 1.06;
      font-weight: 950;
    }

    .tx-article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 22px 0 28px;
    }

    .tx-article-meta span {
      min-height: 38px;
      display: inline-grid;
      place-items: center;
      padding: 0 14px;
      border: 1px solid rgba(156,107,22,.24);
      border-radius: 4px;
      color: #6a5140;
      background: #fff8e8;
      font-size: 13px;
      font-weight: 850;
    }

    .tx-article-visual {
      margin: 0 0 30px;
      overflow: hidden;
      border-radius: 8px;
      background: #111;
    }

    .tx-article-visual img {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      object-position: center right;
    }

    .tx-article-body {
      color: #2b241d;
      font-size: 16px;
      line-height: 1.82;
    }

    .tx-article-body h2,
    .tx-article-body h3 {
      margin: 30px 0 12px;
      color: #140d08;
      font-weight: 950;
    }

    .tx-article-body p,
    .tx-article-body ul,
    .tx-article-body ol {
      margin: 0 0 18px;
    }

    .tx-article-body a {
      color: var(--tx-red);
      font-weight: 850;
    }

    .tx-article-updated {
      margin-top: 28px;
      padding-top: 18px;
      border-top: 1px solid rgba(17,23,35,.12);
      color: #7a6654;
      font-size: 13px;
    }

    .tx-article-actions {
      margin-top: 28px;
      padding-top: 18px;
      border-top: 1px solid rgba(17,23,35,.12);
    }

    .tx-article-actions ul {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
    }

    .tx-article-actions li {
      list-style: none;
      color: #4c4037;
      font-weight: 750;
    }

    .tx-article-actions a {
      color: var(--tx-red);
    }

    .tx-article-side {
      display: grid;
      gap: 18px;
    }

    .tx-article-side-card {
      overflow: hidden;
    }

    .tx-side-visual {
      min-height: 190px;
      background:
        linear-gradient(180deg, rgba(7,9,13,.12), rgba(7,9,13,.58)),
        url("/assets/tx88-hero.png") center / cover no-repeat;
    }

    .tx-side-body {
      padding: 24px;
    }

    .tx-side-body h2,
    .tx-side-body h3 {
      color: #140d08;
      font-size: 22px;
      line-height: 1.1;
      font-weight: 950;
    }

    .tx-side-body p,
    .tx-side-body li {
      margin-top: 10px;
      color: #635a50;
      line-height: 1.62;
      font-size: 14px;
    }

    .tx-side-body ul {
      margin: 14px 0 0;
      padding-left: 18px;
    }

    @media (max-width: 980px) {
      .tx-container {
        width: min(var(--tx-max), calc(100% - 32px));
      }

      .tx-top-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 18px 0;
      }

      .tx-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .tx-pill {
        min-width: 0;
      }

      .tx-nav {
        justify-content: flex-start;
        gap: 28px;
        margin-inline: -16px;
        padding: 0 16px;
        scroll-padding-inline: 16px;
      }

      .tx-hero-inner {
        min-height: 0;
        padding: 68px 0 96px;
      }

      .tx-hero-card {
        padding: 34px 28px;
      }

      .tx-hero h1 {
        font-size: 48px;
      }

      .tx-proof {
        grid-template-columns: 1fr;
      }

      .tx-category-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .tx-overview-layout,
      .tx-band-head,
      .tx-news-head,
      .tx-news-layout,
      .tx-featured-news,
      .tx-footer-inner,
      .tx-article-wrap {
        grid-template-columns: 1fr;
      }

      .tx-step-grid,
      .tx-news-bottom {
        grid-template-columns: 1fr;
      }

      .tx-overview h2,
      .tx-news h2,
      .tx-band h2 {
        font-size: 36px;
      }

      .tx-footer-inner {
        display: grid;
      }
    }

    @media (max-width: 560px) {
      .tx-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        min-height: 0;
        overflow: visible;
      }

      .tx-nav a {
        min-height: 44px;
        justify-content: center;
        padding: 0 8px;
        text-align: center;
        white-space: normal;
        line-height: 1.25;
        font-size: 12px;
      }

      .tx-nav a.is-active::after {
        left: 18px;
        right: 18px;
      }

      .tx-word strong {
        font-size: 28px;
      }

      .tx-mark {
        width: 52px;
        height: 52px;
      }

      .tx-hero {
        background:
          linear-gradient(180deg, rgba(5,6,8,.72), rgba(5,6,8,.88)),
          url("/assets/tx88-hero.png") center right / cover no-repeat;
      }

      .tx-hero h1 {
        font-size: 42px;
      }

      .tx-article {
        padding: 28px;
      }

      .tx-article h1,
      .tx-article-hero h1 {
        font-size: 34px;
      }

      .tx-hero p {
        font-size: 15px;
      }

      .tx-cta-row {
        display: grid;
      }

      .tx-category-grid {
        grid-template-columns: 1fr;
      }

      .tx-overview,
      .tx-news {
        padding: 64px 0;
      }

      .tx-band {
        padding: 64px 0;
      }

      .tx-side-card,
      .tx-bottom-card {
        grid-template-columns: 1fr;
      }

      .tx-side-card b {
        width: 64px;
      }
    }
