:root {
  --tt-red: #e42125;
  --tt-red-dark: #8d0608;
  --tt-gold: #f8c23a;
  --tt-gold-deep: #d58b10;
  --tt-blue: #135fbd;
  --tt-ink: #151515;
  --tt-dark: #090909;
  --tt-panel: #101a17;
  --tt-soft: #f5f6f8;
  --tt-line: #e4e7ed;
  --tt-text: #1f2733;
  --tt-muted: #667085;
  --tt-green: #06261d;
  --tt-shadow: 0 18px 44px rgba(15, 20, 30, .16);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body.tt88-page {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--tt-text);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.62;
}

.tt88-page a {
  color: inherit;
  text-decoration: none;
}

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

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

.topbar {
  background: linear-gradient(180deg, #191919, #0a0a0a);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

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

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

.brand-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid var(--tt-gold);
  border-radius: 8px;
  background: radial-gradient(circle at 35% 25%, #24345f, #0d1841 60%, #070b16);
  color: #fff;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .16);
}

.brand-text strong {
  display: block;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0;
}

.brand-text strong span {
  color: var(--tt-red);
}

.brand-text small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, .86);
  font-weight: 700;
  font-size: 13px;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border-radius: 7px;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, #ff3934, #bf070a);
  box-shadow: 0 10px 24px rgba(196, 13, 14, .28);
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn.gold {
  color: #141414;
  background: linear-gradient(180deg, #ffe573, #d69013);
  box-shadow: 0 10px 24px rgba(214, 144, 19, .28);
}

.btn.blue {
  background: linear-gradient(180deg, #1d78db, #0c4fa6);
  box-shadow: 0 10px 24px rgba(19, 95, 189, .25);
}

.nav-band {
  background: linear-gradient(180deg, #f02b30, #d8070d);
  border-bottom: 1px solid rgba(0, 0, 0, .45);
  box-shadow: 0 4px 0 rgba(0, 0, 0, .35);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  min-height: 58px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.main-nav a:first-child {
  border-left: 0;
}

.main-nav a.active {
  color: #191919;
  background: linear-gradient(180deg, #ffe270, #f5b31e);
}

.hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .48) 38%, rgba(0, 0, 0, .20) 70%, rgba(0, 0, 0, .55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .82)),
    url("/assets/tt88-hero.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 96px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .92));
}

.hero-inner {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 40px;
  padding: 76px 0 94px;
}

.hero-copy {
  max-width: 680px;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 7vw, 88px);
  line-height: .92;
  letter-spacing: 0;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 6px 0 rgba(95, 0, 0, .55);
}

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

.hero-lead {
  max-width: 630px;
  margin: 22px 0 28px;
  color: #fff;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.52;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .7);
}

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

.hero-panel {
  align-self: end;
  margin-bottom: 8px;
  border: 1px solid rgba(248, 194, 58, .48);
  border-radius: 8px;
  background: rgba(10, 10, 10, .72);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .38);
  backdrop-filter: blur(4px);
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 86px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.hero-stat:last-child {
  border-bottom: 0;
}

.hero-stat b {
  display: block;
  color: var(--tt-gold);
  font-size: 26px;
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 800;
}

.round-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(248, 194, 58, .55);
  border-radius: 50%;
  color: var(--tt-gold);
  background: rgba(248, 194, 58, .08);
  font-weight: 900;
}

.trust-wrap {
  position: relative;
  z-index: 2;
  margin-top: -44px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(248, 194, 58, .42);
  border-radius: 8px;
  background: #061f17;
  box-shadow: var(--tt-shadow);
  overflow: hidden;
}

.trust-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  min-height: 112px;
  align-items: center;
  padding: 22px;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, .10);
}

.trust-item:first-child {
  border-left: 0;
}

.trust-item .round-icon {
  border-radius: 8px;
}

.trust-item h3 {
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.22;
}

.trust-item p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  line-height: 1.42;
  font-weight: 700;
}

.section {
  padding: 72px 0;
}

.section.soft {
  background: #eef5fb;
}

.section.dark {
  background: #070707;
  color: #fff;
}

.section-title {
  margin: 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--tt-red);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.section-title::before,
.section-title::after {
  content: "";
  width: 120px;
  max-width: 16vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228, 33, 37, .45), transparent);
}

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

.intro-copy,
.media-card,
.summary-card,
.faq-item,
.article-shell {
  border: 1px solid var(--tt-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
}

.intro-copy {
  padding: 28px;
}

.intro-copy p {
  margin: 0 0 22px;
  color: #3b4656;
  font-size: 15px;
}

.info-table {
  overflow: hidden;
  border: 1px solid #e1e5ec;
  border-radius: 7px;
}

.info-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 48px;
  border-top: 1px solid #e1e5ec;
}

.info-row:first-child {
  border-top: 0;
}

.info-row b,
.info-row span {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  font-size: 14px;
}

.info-row b {
  color: #fff;
  background: linear-gradient(180deg, var(--tt-red), #be070a);
  text-transform: uppercase;
}

.info-row span {
  color: #354052;
  background: #fff;
}

.media-card {
  padding: 0;
  overflow: hidden;
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.category-card,
.article-card,
.step-card,
.promo-card {
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(15, 23, 42, .13);
}

.category-card {
  border: 1px solid #e4e8ef;
}

.category-img,
.article-img {
  position: relative;
  overflow: hidden;
  background: #111;
}

.category-img {
  aspect-ratio: 16 / 9;
}

.category-img img,
.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.category-card:hover img,
.article-card:hover img {
  transform: scale(1.04);
}

.category-icon {
  position: absolute;
  left: 18px;
  bottom: -22px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--tt-red);
  font-weight: 900;
}

.category-body {
  min-height: 164px;
  padding: 34px 18px 18px;
}

.category-body h3,
.article-card h3,
.step-card h3,
.faq-item h3 {
  margin: 0;
  color: #171a22;
  font-size: 20px;
  line-height: 1.2;
}

.category-body p,
.article-card p,
.step-card p,
.faq-item p {
  margin: 10px 0 0;
  color: #5d6878;
  font-size: 14px;
  line-height: 1.5;
}

.mini-btn {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 5px;
  color: #191919;
  background: linear-gradient(180deg, #ffe577, #e6a21b);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.promo-card {
  position: relative;
  min-height: 154px;
  padding: 22px;
  isolation: isolate;
  color: #fff;
  background: #260404;
}

.promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(46, 3, 3, .86), rgba(46, 3, 3, .38));
}

.promo-card span {
  display: block;
  color: var(--tt-gold);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-card strong {
  display: block;
  margin-top: 4px;
  color: #ffe06d;
  font-size: clamp(38px, 4vw, 56px);
  line-height: .95;
  letter-spacing: 0;
}

.promo-card p {
  margin: 8px 0 0;
  max-width: 190px;
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.step-card {
  position: relative;
  min-height: 156px;
  padding: 26px 18px 18px;
  text-align: center;
  overflow: visible;
  border: 1px solid #e6e9ef;
}

.step-card:not(:last-child)::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
  color: var(--tt-red);
  font-size: 28px;
  font-weight: 900;
}

.step-num {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, var(--tt-red), #a80005);
  font-weight: 900;
}

.summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.summary-card {
  position: relative;
  min-height: 230px;
  padding: 30px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #0b4f91, #05284e);
}

.summary-card.red {
  background: linear-gradient(135deg, #b6080b, #410407);
}

.summary-card h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 28px;
  line-height: 1.12;
}

.summary-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.summary-card li {
  color: rgba(255, 255, 255, .88);
  font-size: 15px;
  font-weight: 700;
}

.summary-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--tt-gold);
  font-weight: 900;
}

.news-head {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.news-head .mini-btn {
  position: absolute;
  right: 0;
  top: 4px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.article-card {
  border: 1px solid #e7eaf0;
}

.article-img {
  aspect-ratio: 16 / 10;
}

.article-tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  min-width: 52px;
  padding: 5px 8px;
  border-radius: 4px;
  color: #fff;
  background: #0b70c9;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.article-body {
  padding: 13px;
}

.article-card h3 {
  min-height: 46px;
  color: #16202e;
  font-size: 14px;
}

.article-card p {
  font-size: 12px;
}

.read-more {
  display: inline-flex;
  margin-top: 10px;
  color: var(--tt-red);
  font-size: 12px;
  font-weight: 900;
}

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

.section.dark .section-title {
  color: var(--tt-red);
}

.faq-item {
  min-height: 132px;
  padding: 22px;
  color: #fff;
  background: #151515;
  border-color: rgba(255, 255, 255, .08);
  box-shadow: none;
}

.faq-item h3 {
  color: #ffe078;
  font-size: 16px;
}

.faq-item p {
  color: rgba(255, 255, 255, .74);
}

.footer {
  color: rgba(255, 255, 255, .78);
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, .8fr) 1.1fr;
  gap: 28px;
  padding: 42px 0;
}

.footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
}

.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.footer ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.socials span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #243045;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.support-box {
  padding: 18px;
  border-radius: 8px;
  background: #1a1a1a;
}

.support-box b {
  display: block;
  color: #fff;
  font-size: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 12px;
}

.article-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .84), rgba(0, 0, 0, .32)),
    url("/assets/tt88-hero.jpg") center / cover no-repeat;
  color: #fff;
}

.article-hero-inner {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 36px;
  align-items: center;
  padding: 58px 0;
}

.article-hero h1 {
  margin: 0;
  max-width: 760px;
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 900;
}

.article-hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 18px;
  font-weight: 700;
}

.article-hero-card {
  border: 1px solid rgba(248, 194, 58, .42);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--tt-shadow);
}

.article-hero-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.article-shell {
  padding: 34px;
}

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

.article-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--tt-red);
  font-size: 12px;
  font-weight: 900;
}

.article-content {
  color: #344054;
  font-size: 16px;
}

.article-content h2 {
  margin: 30px 0 12px;
  color: #141923;
  font-size: 28px;
  line-height: 1.15;
}

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

.article-content table {
  width: 100%;
  margin: 22px 0;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 0 1px #dce1e8;
}

.article-content th,
.article-content td {
  padding: 14px;
  border: 1px solid #dce1e8;
  text-align: left;
  vertical-align: top;
}

.article-content th {
  color: #fff;
  background: var(--tt-red);
}

.article-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.article-actions a,
.article-actions span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 5px;
  color: #fff;
  background: #151515;
  font-size: 13px;
  font-weight: 800;
}

.side-card {
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  box-shadow: var(--tt-shadow);
}

.side-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.side-card .side-body {
  padding: 22px;
  color: #fff;
}

.side-card h2 {
  margin: 0 0 12px;
  color: var(--tt-gold);
  font-size: 22px;
}

.side-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, .78);
}

.related-news {
  margin-top: 40px;
}

.related-news .article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pager {
  margin-top: 24px;
  text-align: center;
}

.pager ul,
.pager ol {
  display: inline-flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pager a,
.pager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border-radius: 4px;
  color: #fff;
  background: #151515;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1060px) {
  .hero-inner,
  .intro-grid,
  .summary-grid,
  .article-hero-inner,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    align-self: auto;
    max-width: 420px;
  }

  .trust-grid,
  .category-grid,
  .promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .step-card::after {
    display: none;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(100% - 24px, 1180px);
  }

  .topbar-inner {
    min-height: 124px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .top-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .btn {
    width: 100%;
    padding: 0 14px;
  }

  .brand-text strong {
    font-size: 30px;
  }

  .main-nav {
    justify-content: flex-start;
    min-height: 52px;
  }

  .main-nav a {
    padding: 0 16px;
    font-size: 13px;
  }

  .hero-inner {
    min-height: 650px;
    padding: 50px 0 80px;
  }

  .hero h1 {
    font-size: clamp(43px, 15vw, 62px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-panel {
    max-width: none;
  }

  .trust-wrap {
    margin-top: 0;
  }

  .trust-grid,
  .category-grid,
  .promo-grid,
  .steps,
  .article-grid,
  .faq-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .10);
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    gap: 12px;
    font-size: 27px;
  }

  .section-title::before,
  .section-title::after {
    width: 42px;
    max-width: 13vw;
  }

  .info-row {
    grid-template-columns: 1fr;
  }

  .media-card img {
    min-height: 240px;
  }

  .news-head {
    display: block;
  }

  .news-head .mini-btn {
    position: static;
    margin: 0 auto 20px;
    width: max-content;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .article-shell {
    padding: 22px;
  }
}
