:root {
  --bg: #030914;
  --panel: #0a1833;
  --soft: #102752;
  --text: #f7f9ff;
  --muted: #b8c6e8;
  --accent: #6380f7;
  --accent2: #b8c6f2;
  --deep: #020711;
  --line: rgba(99, 128, 247, 0.32);
  --max: 1360px;
  --radius: 10px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  background: var(--bg);
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #e8edff;
  background: linear-gradient(180deg, #020711, #0b1b3a 45%, #030914);
  line-height: 1.65;
  overflow-x: hidden;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(99, 128, 247, 0.24),
      transparent 28%
    ),
    radial-gradient(
      circle at 78% 6%,
      rgba(184, 198, 242, 0.12),
      transparent 34%
    ),
    #030914;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
}
.thf26es-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(2, 7, 17, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}
.thf26es-header-inner {
  min-height: 72px;
  width: 100%;
  max-width: var(--max);
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.thf26es-logo {
  flex: 0 0 auto;
}
.thf26es-logo img {
  width: 218px;
  max-height: 50px;
  object-fit: contain;
}
.thf26es-site-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  flex: 1;
  justify-content: center;
}
.thf26es-site-nav a {
  text-decoration: none;
  white-space: nowrap;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.thf26es-site-nav a:hover,
.thf26es-site-nav a[aria-current="page"] {
  background: rgba(99, 128, 247, 0.24);
  color: #fff;
}
.thf26es-header-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.thf26es-btn,
.thf26es-header-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, var(--accent2), var(--accent));
  color: #071431;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  transition: 0.18s;
}
.thf26es-btn:hover,
.thf26es-header-actions a:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}
.thf26es-btn-dark {
  background: var(--soft) !important;
  color: #fff !important;
  border-color: rgba(99, 128, 247, 0.5) !important;
}
.thf26es-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--soft);
  color: #fff;
}
.thf26es-menu-toggle span {
  display: block;
  height: 3px;
  margin: 7px 6px;
  background: currentColor;
}
.thf26es-hero {
  color: #fff;
  border-bottom: 1px solid var(--line);
  background-image:
    linear-gradient(
      90deg,
      rgba(2, 7, 17, 0.98),
      rgba(7, 20, 49, 0.82) 48%,
      rgba(3, 9, 20, 0.18)
    ),
    var(--hero);
  background-size: cover;
  background-position: center;
}
.thf26es-hero-inner {
  min-height: 440px;
  padding: 74px max(24px, calc((100vw - var(--max)) / 2)) 70px;
  display: grid;
  grid-template-columns: minmax(300px, 620px) 1fr;
  align-items: center;
  gap: 30px;
}
.thf26es-hero-kicker {
  color: var(--accent2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}
h1,
h2,
h3 {
  margin: 0 0 18px;
  color: var(--text);
  line-height: 1.15;
}
.thf26es-hero h1 {
  font-size: clamp(38px, 4.3vw, 66px);
  max-width: 760px;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.6);
}
.thf26es-hero p {
  max-width: 650px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}
.thf26es-section {
  padding: 64px 20px;
}
.thf26es-container {
  width: 100%;
  max-width: var(--max);
  margin: auto;
}
.thf26es-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 28px;
  align-items: start;
}
.thf26es-review-content,
.thf26es-side-box {
  background: rgba(10, 24, 51, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}
.thf26es-review-content {
  padding: 34px;
  min-width: 0;
}
.thf26es-review-content a {
  color: var(--accent2);
}
.thf26es-review-content p {
  margin: 0 0 18px;
}
.thf26es-review-content h2 {
  margin-top: 38px;
  font-size: 29px;
  color: var(--accent2);
}
.thf26es-review-content h3 {
  margin-top: 25px;
  font-size: 21px;
}
.thf26es-review-content ul,
.thf26es-review-content ol {
  padding-left: 24px;
  margin: 0 0 22px;
}
.thf26es-review-content li {
  margin: 7px 0;
}
.thf26es-review-content table {
  display: block;
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  overflow-x: auto;
  border-radius: 8px;
}
.thf26es-review-content thead,
.thf26es-review-content tbody {
  display: table;
  width: 100%;
  min-width: 580px;
  table-layout: fixed;
}
.thf26es-review-content th:first-child,
.thf26es-review-content td:first-child {
  width: 31%;
}
.thf26es-review-content th,
.thf26es-review-content td {
  border: 1px solid var(--line);
  padding: 12px;
  vertical-align: top;
}
.thf26es-review-content th {
  background: var(--soft);
  color: #fff;
  text-align: left;
}
.thf26es-review-content tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.035);
}
.thf26es-review-content figure {
  margin: 26px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--deep);
}
.thf26es-review-content figure img {
  width: 100%;
  aspect-ratio: 16/7.5;
  object-fit: cover;
}
.thf26es-review-content figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
}
.thf26es-lead {
  font-size: 18px;
  color: #fff;
}
.thf26es-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 26px 0;
}
.thf26es-highlights div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(
    145deg,
    rgba(99, 128, 247, 0.18),
    rgba(255, 255, 255, 0.03)
  );
}
.thf26es-highlights strong,
.thf26es-highlights span {
  display: block;
}
.thf26es-highlights strong {
  color: #fff;
  font-size: 18px;
}
.thf26es-highlights span {
  color: var(--muted);
  font-size: 13px;
}
.thf26es-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 14px;
}
.thf26es-article-meta span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 7px 10px;
  border-radius: 999px;
}
.thf26es-sidebar {
  position: sticky;
  top: 86px;
}
.thf26es-side-box {
  padding: 18px;
}
.thf26es-side-box strong {
  display: block;
  margin-bottom: 12px;
  color: var(--accent2);
  font-size: 18px;
}
.thf26es-toc-nav {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  max-height: 62vh;
  overflow: auto;
  padding-right: 4px;
}
.thf26es-toc-nav a {
  text-decoration: none;
  padding: 8px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  line-height: 1.25;
}
.thf26es-toc-nav a:hover {
  background: rgba(99, 128, 247, 0.2);
  color: #fff;
}
.thf26es-toc-sub {
  margin-left: 12px;
  opacity: 0.9;
}
.thf26es-site-footer {
  background: var(--deep);
  border-top: 1px solid var(--line);
}
.thf26es-footer-main {
  padding: 38px 20px;
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(280px, 1.5fr) minmax(
      190px,
      0.8fr
    );
  gap: 30px;
  align-items: start;
}
.thf26es-footer-badges {
  display: grid;
  gap: 16px;
  justify-items: start;
}
.thf26es-footer-badges img {
  width: 218px;
}
.thf26es-footer-badge {
  display: flex;
  align-items: center;
}
.thf26es-footer-badge-text {
  width: 76px;
  height: 54px;
  border-radius: 8px;
  border: 1px solid var(--line);
  justify-content: center;
  flex-direction: column;
  font-weight: 900;
  color: var(--accent2);
}
.thf26es-footer-badge-text small {
  color: var(--muted);
  font-size: 10px;
}
.thf26es-footer-copy-block p {
  margin: 0 0 16px;
  color: var(--muted);
}
.thf26es-footer-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.thf26es-footer-menu a {
  color: var(--accent2);
  text-decoration: none;
}
.thf26es-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 20px;
}
.thf26es-footer-bottom .thf26es-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
}

/* Casino lobby on the home page */
.thf26es-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.thf26es-page-home {
  background: #05070b;
}
.thf26es-page-home::before {
  background:
    radial-gradient(
      circle at 75% 5%,
      rgba(50, 104, 158, 0.16),
      transparent 30%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.018) 25%, transparent 25%) 0
      0 / 22px 22px,
    #05070b;
}
.thf26es-page-home .thf26es-site-header {
  background:
    linear-gradient(180deg, rgba(33, 43, 59, 0.98), rgba(20, 27, 39, 0.98)),
    #18202e;
  border-bottom-color: rgba(184, 198, 242, 0.16);
}
.thf26es-home-hero {
  width: calc(100% - 48px);
  max-width: var(--max);
  margin: 48px auto 0;
  overflow: hidden;
  border: 1px solid rgba(116, 162, 213, 0.2);
  border-radius: 52px;
  background-color: #0b2237;
  background-image:
    linear-gradient(
      90deg,
      #0b2237 0%,
      rgba(11, 34, 55, 0.98) 36%,
      rgba(11, 34, 55, 0.4) 66%,
      transparent 82%
    ),
    var(--hero);
  background-position:
    center,
    right center;
  background-size:
    100% 100%,
    auto 100%;
  background-repeat: no-repeat;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.48);
}
.thf26es-home-hero .thf26es-hero-inner {
  min-height: 500px;
  padding: 64px;
}
.thf26es-home-hero .thf26es-hero-kicker {
  color: #b9cae3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  letter-spacing: 0.05em;
}
.thf26es-home-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(25px, 2.2vw, 36px);
}
.thf26es-home-offer {
  max-width: 620px;
  margin: 0 0 18px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.2vw, 66px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 7px 24px rgba(0, 0, 0, 0.46);
}
.thf26es-home-offer span {
  display: block;
  margin-top: 10px;
  font-size: 0.62em;
  color: #dce7ff;
}
.thf26es-home-hero p {
  max-width: 570px;
  font-size: 15px;
  color: #c8d5e7;
}
.thf26es-lobby {
  padding: 34px 24px 18px;
  background: #05070b;
}
.thf26es-lobby-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  padding: 12px 14px;
  border: 1px solid rgba(184, 198, 242, 0.1);
  border-radius: 12px;
  background: #111720;
}
.thf26es-category-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.thf26es-category-nav::-webkit-scrollbar {
  display: none;
}
.thf26es-category-nav a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border-radius: 8px;
  color: #aeb9ca;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}
.thf26es-category-nav a:hover,
.thf26es-category-nav a.is-active {
  color: #fff;
  background: #2b3544;
}
.thf26es-game-search {
  position: relative;
  flex: 0 0 230px;
}
.thf26es-game-search::before {
  content: "⌕";
  position: absolute;
  top: 50%;
  left: 14px;
  color: #9faec3;
  font-size: 22px;
  transform: translateY(-52%);
}
.thf26es-game-search input {
  width: 100%;
  min-height: 42px;
  padding: 9px 14px 9px 40px;
  border: 1px solid rgba(184, 198, 242, 0.18);
  border-radius: 9px;
  outline: none;
  background: #080c12;
  color: #fff;
}
.thf26es-game-search input:focus {
  border-color: #6380f7;
  box-shadow: 0 0 0 3px rgba(99, 128, 247, 0.15);
}
.thf26es-lobby-heading,
.thf26es-lobby-heading > div,
.thf26es-row-heading {
  display: flex;
  align-items: center;
}
.thf26es-lobby-heading {
  justify-content: space-between;
  margin-bottom: 24px;
}
.thf26es-lobby-heading > div {
  gap: 13px;
}
.thf26es-section-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(184, 198, 242, 0.28);
  border-radius: 50%;
  color: #dce7ff;
  background: #182230;
}
.thf26es-lobby-heading h2,
.thf26es-row-heading h3 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
}
.thf26es-lobby-heading h2 {
  font-size: 25px;
}
.thf26es-lobby-heading p {
  margin: 2px 0 0;
  color: #8693a5;
  font-size: 13px;
}
.thf26es-lobby-heading > a {
  color: #b8c6f2;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.thf26es-game-row {
  margin-bottom: 32px;
}
.thf26es-row-heading {
  gap: 10px;
  margin-bottom: 13px;
}
.thf26es-row-heading h3 {
  font-size: 20px;
}
.thf26es-row-heading span {
  color: #778497;
  font-size: 12px;
}
.thf26es-game-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.thf26es-game-card {
  min-width: 0;
}
.thf26es-game-art {
  position: relative;
  aspect-ratio: 1;
  margin-bottom: 9px;
  overflow: hidden;
  border: 1px solid rgba(184, 198, 242, 0.18);
  border-radius: 10px;
  background: #111720;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}
.thf26es-game-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 14, 0.66);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.thf26es-game-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.thf26es-game-art > a {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  padding: 10px 18px;
  border-radius: 999px;
  color: #071431;
  background: linear-gradient(180deg, #d7e1ff, #6380f7);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  opacity: 0;
  transform: translate(-50%, -42%);
  transition: 0.2s ease;
}
.thf26es-game-art button {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 3;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  color: #fff;
  background: rgba(6, 11, 19, 0.58);
  font-size: 21px;
  cursor: pointer;
}
.thf26es-game-art button.is-favorite {
  color: #9db2ff;
  background: #263b7a;
}
.thf26es-game-card:hover .thf26es-game-art::after,
.thf26es-game-card:hover .thf26es-game-art > a {
  opacity: 1;
}
.thf26es-game-card:hover .thf26es-game-art > a {
  transform: translate(-50%, -50%);
}
.thf26es-game-card:hover img {
  transform: scale(1.035);
}
.thf26es-game-card > strong,
.thf26es-game-card > span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.thf26es-game-card > strong {
  color: #f4f7ff;
  font-size: 14px;
  line-height: 1.25;
}
.thf26es-game-card > span {
  margin-top: 2px;
  color: #818c9c;
  font-size: 12px;
}
.thf26es-game-card[hidden] {
  display: none;
}
.thf26es-lobby-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(184, 198, 242, 0.13);
  border-radius: 12px;
  background: rgba(184, 198, 242, 0.13);
}
.thf26es-lobby-trust span {
  padding: 17px;
  color: #8996a8;
  text-align: center;
  background: #111720;
}
.thf26es-lobby-trust strong {
  margin-right: 5px;
  color: #e5ecff;
  font-size: 18px;
}
.thf26es-page-home > main > .thf26es-section {
  padding-top: 48px;
}
@media (max-width: 1220px) {
  .thf26es-header-inner {
    flex-wrap: wrap;
    padding: 10px 16px;
  }
  .thf26es-site-nav {
    order: 3;
    width: 100%;
    flex-basis: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .thf26es-content-layout,
  .thf26es-footer-main {
    grid-template-columns: 1fr;
  }
  .thf26es-sidebar {
    position: static;
  }
  .thf26es-home-hero {
    margin-top: 28px;
  }
  .thf26es-home-hero .thf26es-hero-inner {
    padding: 50px 42px;
  }
  .thf26es-game-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .thf26es-game-card:nth-child(5) {
    display: none;
  }
}
@media (max-width: 760px) {
  .thf26es-menu-toggle {
    display: block;
  }
  .thf26es-site-nav {
    display: none;
  }
  .thf26es-site-nav.thf26es-is-open {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .thf26es-header-actions {
    width: 100%;
  }
  .thf26es-header-actions a {
    flex: 1;
  }
  .thf26es-hero-inner {
    min-height: 390px;
    grid-template-columns: 1fr;
    padding: 54px 20px;
  }
  .thf26es-review-content {
    padding: 20px;
  }
  .thf26es-highlights {
    grid-template-columns: 1fr 1fr;
  }
  .thf26es-review-content thead,
  .thf26es-review-content tbody {
    min-width: 540px;
  }
  .thf26es-footer-bottom .thf26es-container {
    flex-direction: column;
  }
  .thf26es-home-hero {
    width: calc(100% - 24px);
    margin-top: 18px;
    border-radius: 26px;
    background-image:
      linear-gradient(
        90deg,
        rgba(7, 22, 36, 0.98),
        rgba(7, 22, 36, 0.78) 65%,
        rgba(7, 22, 36, 0.48)
      ),
      var(--hero);
    background-position:
      center,
      58% center;
  }
  .thf26es-home-hero .thf26es-hero-inner {
    min-height: 470px;
    padding: 42px 24px;
  }
  .thf26es-home-hero .thf26es-hero-kicker {
    font-size: 17px;
  }
  .thf26es-home-offer {
    font-size: clamp(34px, 11vw, 50px);
  }
  .thf26es-lobby {
    padding: 24px 12px 8px;
  }
  .thf26es-lobby-tools {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 26px;
  }
  .thf26es-game-search {
    flex-basis: auto;
  }
  .thf26es-lobby-heading {
    align-items: flex-end;
  }
  .thf26es-lobby-heading h2 {
    font-size: 20px;
  }
  .thf26es-lobby-heading p,
  .thf26es-lobby-heading > a {
    font-size: 11px;
  }
  .thf26es-game-grid {
    display: flex;
    gap: 12px;
    margin-right: -12px;
    padding-right: 12px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .thf26es-game-grid::-webkit-scrollbar {
    display: none;
  }
  .thf26es-game-card,
  .thf26es-game-card:nth-child(5) {
    display: block;
    flex: 0 0 158px;
    scroll-snap-align: start;
  }
  .thf26es-lobby-trust {
    grid-template-columns: 1fr 1fr;
  }
  .thf26es-page-home > main > .thf26es-section {
    padding: 38px 12px 52px;
  }
}
