:root {
      --bigbasstrophy-bg: #072d45;
      --bigbasstrophy-bg-deep: #041c2d;
      --bigbasstrophy-surface: rgba(8, 43, 67, 0.82);
      --bigbasstrophy-surface-strong: rgba(7, 35, 55, 0.94);
      --bigbasstrophy-card: rgba(11, 56, 86, 0.9);
      --bigbasstrophy-card-soft: rgba(11, 71, 102, 0.72);
      --bigbasstrophy-border: rgba(129, 213, 255, 0.24);
      --bigbasstrophy-text: #ebfbff;
      --bigbasstrophy-text-soft: #bce8f7;
      --bigbasstrophy-accent: #ffd166;
      --bigbasstrophy-accent-strong: #f4a000;
      --bigbasstrophy-coral: #ff7f50;
      --bigbasstrophy-green: #8be28b;
      --bigbasstrophy-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
      --bigbasstrophy-radius-lg: 28px;
      --bigbasstrophy-radius-md: 18px;
      --bigbasstrophy-radius-sm: 12px;
      --bigbasstrophy-container: 1180px;
      --bigbasstrophy-font-display: Georgia, "Times New Roman", serif;
      --bigbasstrophy-font-body: "Trebuchet MS", Verdana, sans-serif;
    }
    * {
      box-sizing: border-box;
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      margin: 0;
      color: var(--bigbasstrophy-text);
      font-family: var(--bigbasstrophy-font-body);
      line-height: 1.7;
      background:
        radial-gradient(circle at top, rgba(75, 186, 246, 0.28), transparent 28%),
        radial-gradient(circle at 20% 20%, rgba(255, 209, 102, 0.16), transparent 22%),
        linear-gradient(180deg, #0b5680 0%, #083954 24%, #072d45 58%, #041c2d 100%);
      min-height: 100vh;
    }
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 90px 90px;
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.08));
      opacity: 0.45;
    }
    img {
      max-width: 100%;
      display: block;
    }
    a {
      color: #9fe7ff;
      text-decoration: none;
    }
    a:hover,
    a:focus-visible {
      color: #ffffff;
    }
    .bigbasstrophy-site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(16px);
      background: rgba(3, 19, 32, 0.74);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .bigbasstrophy-header-inner,
    .bigbasstrophy-page {
      width: min(calc(100% - 32px), var(--bigbasstrophy-container));
      margin: 0 auto;
    }
.bigbasstrophy-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 110px;
  position: relative;
}
.bigbasstrophy-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.bigbasstrophy-brand img {
  display: block;
  width: 256px;
  height: 130px;
  object-fit: contain;
}
.bigbasstrophy-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  order: 3;
}
.bigbasstrophy-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
  order: 2;
}
.bigbasstrophy-nav-list {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.bigbasstrophy-nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  color: var(--bigbasstrophy-text-soft);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.bigbasstrophy-nav-list a:hover,
.bigbasstrophy-nav-list a:focus-visible {
  background: rgba(255, 209, 102, 0.12);
  border-color: rgba(255, 209, 102, 0.35);
  color: #ffffff;
}
.bigbasstrophy-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd86d, #f4a000);
  color: #0d2532;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}
.bigbasstrophy-header-cta:hover,
.bigbasstrophy-header-cta:focus-visible {
  color: #041c2d;
  transform: translateY(-1px);
}
.language-container {
  position: relative;
}
.language-selector {
  appearance: none;
  min-height: 44px;
  padding: 0 42px 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  color: var(--bigbasstrophy-text);
  font: inherit;
  cursor: pointer;
}
.language-container::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #d7f7ff;
  border-bottom: 2px solid #d7f7ff;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.bigbasstrophy-menu-toggle {
  display: none;
}
.bigbasstrophy-menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.bigbasstrophy-menu-button::before,
.bigbasstrophy-menu-button::after,
.bigbasstrophy-menu-button span {
  content: "";
      position: absolute;
      left: 14px;
      right: 14px;
      height: 3px;
      border-radius: 999px;
      background: #ffffff;
      transition: transform 0.24s ease, opacity 0.24s ease, top 0.24s ease;
    }
    .bigbasstrophy-menu-button::before {
      top: 17px;
    }
    .bigbasstrophy-menu-button span {
      top: 25px;
    }
    .bigbasstrophy-menu-button::after {
      top: 33px;
    }
    .bigbasstrophy-page {
      padding: 32px 0 80px;
    }
    .bigbasstrophy-section,
    .bigbasstrophy-intro,
    .bigbasstrophy-review-transparency-box,
    .bigbasstrophy-table-of-contents-section,
    .bigbasstrophy-what-is-section,
    .bigbasstrophy-demo-section,
    .bigbasstrophy-how-to-play-section,
    .bigbasstrophy-rtp-volatility-section,
    .bigbasstrophy-symbols-paytable-section,
    .bigbasstrophy-bonus-features-section,
    .bigbasstrophy-ante-bet-bonus-buy-section,
    .bigbasstrophy-mobile-section,
    .bigbasstrophy-comparison-section,
    .bigbasstrophy-pros-cons-section,
    .bigbasstrophy-interesting-facts-section,
    .bigbasstrophy-experience-section,
    .bigbasstrophy-worth-playing-section,
    .bigbasstrophy-responsible-gambling-section,
    .bigbasstrophy-faq-section,
    .bigbasstrophy-author-box,
    .bigbasstrophy-key-info-section {
      position: relative;
      background: linear-gradient(180deg, var(--bigbasstrophy-surface), var(--bigbasstrophy-surface-strong));
      border: 1px solid var(--bigbasstrophy-border);
      border-radius: var(--bigbasstrophy-radius-lg);
      padding: 30px;
      box-shadow: var(--bigbasstrophy-shadow);
      overflow: hidden;
    }
    .bigbasstrophy-section::before,
    .bigbasstrophy-intro::before,
    .bigbasstrophy-review-transparency-box::before,
    .bigbasstrophy-table-of-contents-section::before,
    .bigbasstrophy-what-is-section::before,
    .bigbasstrophy-demo-section::before,
    .bigbasstrophy-how-to-play-section::before,
    .bigbasstrophy-rtp-volatility-section::before,
    .bigbasstrophy-symbols-paytable-section::before,
    .bigbasstrophy-bonus-features-section::before,
    .bigbasstrophy-ante-bet-bonus-buy-section::before,
    .bigbasstrophy-mobile-section::before,
    .bigbasstrophy-comparison-section::before,
    .bigbasstrophy-pros-cons-section::before,
    .bigbasstrophy-interesting-facts-section::before,
    .bigbasstrophy-experience-section::before,
    .bigbasstrophy-worth-playing-section::before,
    .bigbasstrophy-responsible-gambling-section::before,
    .bigbasstrophy-faq-section::before,
    .bigbasstrophy-author-box::before,
    .bigbasstrophy-key-info-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at top right, rgba(255, 209, 102, 0.1), transparent 26%),
        radial-gradient(circle at left center, rgba(105, 219, 255, 0.08), transparent 24%);
      pointer-events: none;
    }
    .bigbasstrophy-grid {
      display: grid;
      gap: 24px;
    }
.bigbasstrophy-intro {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 24px;
  background:
    linear-gradient(135deg, rgba(8, 74, 109, 0.9), rgba(4, 28, 45, 0.92)),
    radial-gradient(circle at top right, rgba(255, 209, 102, 0.18), transparent 28%);
}
    .bigbasstrophy-breadcrumbs {
      color: #9bd9ec;
      margin: 0 0 18px;
      font-size: 0.95rem;
    }
    .bigbasstrophy-intro h1 {
      margin: 0 0 18px;
      font-family: var(--bigbasstrophy-font-display);
      font-size: clamp(2.4rem, 4vw, 4.55rem);
      line-height: 0.98;
      max-width: 12ch;
      text-shadow: 0 5px 24px rgba(0, 0, 0, 0.3);
    }
    .bigbasstrophy-intro-text {
      font-size: 1.07rem;
      color: var(--bigbasstrophy-text-soft);
      max-width: 62ch;
      margin: 0 0 26px;
    }
    .bigbasstrophy-button-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 28px;
    }
    .bigbasstrophy-button {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      min-height: 50px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 700;
      border: 1px solid transparent;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }
    .bigbasstrophy-button:hover,
    .bigbasstrophy-button:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
    }
    .bigbasstrophy-button-demo {
      background: linear-gradient(180deg, #ffffff, #bfefff);
      color: #08344e;
    }
    .bigbasstrophy-button-real {
      background: linear-gradient(180deg, #ffd86d, #f4a000);
      color: #0d2532;
    }
    .bigbasstrophy-stat-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
    }
    .bigbasstrophy-stat-card {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--bigbasstrophy-radius-md);
      padding: 16px;
    }
    .bigbasstrophy-stat-card strong {
      display: block;
      font-size: 1.15rem;
      color: #ffffff;
      margin-bottom: 4px;
    }
    .bigbasstrophy-stat-card span {
      color: var(--bigbasstrophy-text-soft);
      font-size: 0.92rem;
    }
    .bigbasstrophy-art-panel {
      position: relative;
      align-self: stretch;
      min-height: 340px;
      border-radius: calc(var(--bigbasstrophy-radius-lg) - 6px);
      overflow: hidden;
      background:
        radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.45), transparent 14%),
        linear-gradient(180deg, rgba(53, 181, 225, 0.82) 0%, rgba(10, 79, 113, 0.92) 42%, rgba(4, 33, 51, 0.96) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }
    .bigbasstrophy-art-panel::before {
      content: "";
      position: absolute;
      inset: auto -10% 0;
      height: 62%;
      background:
        radial-gradient(circle at 25% 18%, rgba(255, 209, 102, 0.88), rgba(244, 160, 0, 0.22) 28%, transparent 29%),
        radial-gradient(circle at 72% 26%, rgba(158, 231, 255, 0.95), rgba(28, 122, 165, 0.16) 25%, transparent 26%),
        radial-gradient(circle at 40% 55%, rgba(255, 127, 80, 0.9), rgba(177, 56, 28, 0.12) 24%, transparent 25%),
        linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(3, 17, 28, 0.72));
      filter: blur(1px);
    }
    .bigbasstrophy-art-panel::after {
      content: "";
      position: absolute;
      inset: 18% 8% 10%;
      border-radius: 24px;
      border: 8px solid rgba(92, 55, 24, 0.92);
      background:
        linear-gradient(180deg, rgba(238, 248, 255, 0.16), rgba(11, 89, 128, 0.18)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 18%, rgba(255, 255, 255, 0.02) 18% 20%);
      box-shadow:
        inset 0 0 0 2px rgba(255, 209, 102, 0.24),
        0 22px 44px rgba(0, 0, 0, 0.28);
    }
    .bigbasstrophy-art-caption {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 20px;
      z-index: 1;
      background: rgba(4, 23, 35, 0.74);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 18px;
      padding: 16px 18px;
      color: #e6fbff;
    }
    .bigbasstrophy-art-caption strong {
      display: block;
      color: var(--bigbasstrophy-accent);
      margin-bottom: 6px;
      font-family: var(--bigbasstrophy-font-display);
      font-size: 1.12rem;
    }
    .bigbasstrophy-page section {
      margin-bottom: 24px;
    }
    .bigbasstrophy-page h2,
    .bigbasstrophy-page h3 {
      position: relative;
      z-index: 1;
    }
    .bigbasstrophy-page h2 {
      font-family: var(--bigbasstrophy-font-display);
      font-size: clamp(1.75rem, 2.3vw, 2.45rem);
      line-height: 1.08;
      margin: 0 0 18px;
    }
    .bigbasstrophy-page h3 {
      font-size: 1.18rem;
      margin: 22px 0 12px;
      color: #ffeaa7;
    }
    .bigbasstrophy-page p,
    .bigbasstrophy-page ul,
    .bigbasstrophy-page ol,
    .bigbasstrophy-page table,
    .bigbasstrophy-page details,
    .bigbasstrophy-page .faq-item,
    .bigbasstrophy-page .author-box__inner {
      position: relative;
      z-index: 1;
    }
    .bigbasstrophy-page p {
      margin: 0 0 16px;
      color: var(--bigbasstrophy-text-soft);
    }
    .bigbasstrophy-page ul,
    .bigbasstrophy-page ol {
      margin: 0 0 16px;
      padding-left: 22px;
      color: var(--bigbasstrophy-text-soft);
    }
    .bigbasstrophy-page li + li {
      margin-top: 8px;
    }
    .bigbasstrophy-review-transparency-box {
      border-left: 4px solid var(--bigbasstrophy-accent);
    }
    .bigbasstrophy-table-of-contents-details {
      border-radius: var(--bigbasstrophy-radius-md);
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      overflow: hidden;
    }
    .bigbasstrophy-table-of-contents-details summary {
      list-style: none;
      cursor: pointer;
      padding: 18px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      font-weight: 700;
    }
    .bigbasstrophy-table-of-contents-details summary::-webkit-details-marker {
      display: none;
    }
    .bigbasstrophy-table-of-contents-details summary::after {
      content: "+";
      font-size: 1.5rem;
      color: var(--bigbasstrophy-accent);
    }
    .bigbasstrophy-table-of-contents-details[open] summary::after {
      content: "−";
    }
    .bigbasstrophy-table-of-contents {
      padding: 0 22px 22px;
    }
    .bigbasstrophy-table-of-contents ol {
      columns: 2;
      column-gap: 32px;
    }
    .bigbasstrophy-demo-game-wrapper {
      min-height: 250px;
      border-radius: var(--bigbasstrophy-radius-md);
      border: 1px dashed rgba(159, 231, 255, 0.45);
      background:
        linear-gradient(180deg, rgba(20, 92, 128, 0.65), rgba(3, 27, 43, 0.88)),
        radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 28%);
      display: grid;
      place-items: center;
      padding: 26px;
      margin: 18px 0 20px;
      text-align: center;
      color: #d4f8ff;
      font-size: 1.02rem;
    }
    .bigbasstrophy-demo-game-wrapper::before {
      content: "Demo game area placeholder for Big Bass Trophy Catch";
      max-width: 24ch;
    }
    .bigbasstrophy-mechanics-table,
    .bigbasstrophy-demo-watch-table,
    .bigbasstrophy-feature-risk-table,
    .bigbasstrophy-comparison-table {
      width: 100%;
      border-collapse: collapse;
      overflow: hidden;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }
    .bigbasstrophy-mechanics-table th,
    .bigbasstrophy-mechanics-table td,
    .bigbasstrophy-demo-watch-table th,
    .bigbasstrophy-demo-watch-table td,
    .bigbasstrophy-feature-risk-table th,
    .bigbasstrophy-feature-risk-table td,
    .bigbasstrophy-comparison-table th,
    .bigbasstrophy-comparison-table td {
      padding: 14px 16px;
      text-align: left;
      vertical-align: top;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--bigbasstrophy-text-soft);
    }
    .bigbasstrophy-mechanics-table th,
    .bigbasstrophy-demo-watch-table thead th,
    .bigbasstrophy-feature-risk-table thead th,
    .bigbasstrophy-comparison-table thead th {
      color: #ffffff;
      background: rgba(255, 209, 102, 0.12);
      font-weight: 700;
    }
    .bigbasstrophy-pros-cons-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
    }
    .bigbasstrophy-pros,
    .bigbasstrophy-cons,
    .bigbasstrophy-faq-item,
    .bigbasstrophy-author-box__inner,
    .bigbasstrophy-quick-facts-list,
    .bigbasstrophy-highlight-box {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--bigbasstrophy-radius-md);
    }
    .bigbasstrophy-pros,
    .bigbasstrophy-cons {
      padding: 22px;
    }
    .bigbasstrophy-pros h3 {
      color: var(--bigbasstrophy-green);
    }
    .bigbasstrophy-cons h3 {
      color: #ffb39f;
    }
    .bigbasstrophy-faq-item {
      padding: 20px 22px;
    }
    .bigbasstrophy-faq-item + .bigbasstrophy-faq-item {
      margin-top: 14px;
    }
    .bigbasstrophy-author-box__inner {
      display: grid;
      grid-template-columns: 120px minmax(0, 1fr);
      gap: 24px;
      padding: 24px;
    }
    .bigbasstrophy-author-box__avatar {
      min-height: 260px;
      border-radius: 22px;
      border: 1px dashed rgba(255, 255, 255, 0.18);
      background:
        radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.34), transparent 18%),
        linear-gradient(180deg, rgba(25, 118, 165, 0.85), rgba(7, 43, 66, 0.98));
      position: relative;
      overflow: hidden;
    }
    .bigbasstrophy-author-box__avatar::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 22%;
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: linear-gradient(180deg, #ffd6ae, #c88759);
      transform: translateX(-50%);
      box-shadow: 0 106px 0 28px rgba(240, 240, 240, 0.92);
    }
    .bigbasstrophy-author-box__avatar::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 20%;
      width: 110px;
      height: 125px;
      border-radius: 54px 54px 36px 36px;
      border-top: 22px solid #1f1f1f;
      transform: translateX(-50%);
    }
    .author-box__label {
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 0.78rem;
      color: var(--bigbasstrophy-accent);
      margin-bottom: 8px;
    }
    .author-box__name {
      margin-top: 0;
    }
    .author-box__role {
      color: #dbf8ff;
      font-weight: 700;
    }
    .author-box__details {
      margin-top: 18px;
    }
    .author-box__disclosure {
      margin-top: 16px;
      padding: 16px 18px;
      border-radius: 14px;
      background: rgba(255, 209, 102, 0.08);
      border: 1px solid rgba(255, 209, 102, 0.14);
    }
    .bigbasstrophy-quick-facts-list {
      padding: 22px 22px 22px 42px;
    }
    .bigbasstrophy-highlight-box {
      padding: 20px;
      margin-top: 18px;
    }
    .bigbasstrophy-highlight-box strong {
      color: var(--bigbasstrophy-accent);
    }
    
.bigbasstrophy-media img {
  display: block;
  width: 100%;
  height: auto;
}
.bigbasstrophy-media figcaption {
  padding: 12px 16px;
  color: var(--bigbasstrophy-text-soft);
  font-size: 0.95rem;
  background: rgba(4, 23, 35, 0.72);
}
.bigbasstrophy-media-hero {
  margin-top: 26px;
}
.bigbasstrophy-media-mobile img {
  max-width: 420px;
  margin: 0 auto;
}
.bigbasstrophy-demo-game-wrapper {
  padding: 0;
  overflow: hidden;
  width: min(100%, 792px);
  max-height: 0;
  min-height: 0;
  margin: 0 auto;
  opacity: 0;
  border: 0;
  background: transparent;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease;
}
.bigbasstrophy-demo-game-wrapper::before {
  content: none;
}
.bigbasstrophy-demo-launcher {
  position: relative;
  z-index: 1;
  margin: 18px 0 20px;
}
.bigbasstrophy-demo-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.bigbasstrophy-demo-spoiler {
  position: relative;
  transition: opacity 0.25s ease, max-height 0.35s ease, margin-bottom 0.25s ease;
}
.bigbasstrophy-demo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(4, 23, 35, 0.2), rgba(4, 23, 35, 0.65)),
    radial-gradient(circle at center, rgba(255, 209, 102, 0.08), transparent 40%);
}
.bigbasstrophy-button-label {
  cursor: pointer;
}
.bigbasstrophy-demo-game-wrapper iframe {
  width: 100%;
  display: block;
  aspect-ratio: 792 / 450;
  height: auto;
  border: 0;
  border-radius: 22px;
  background: #041c2d;
}
.bigbasstrophy-demo-toggle:checked ~ .bigbasstrophy-demo-game-wrapper {
  max-height: 700px;
  margin-top: 0;
  opacity: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.bigbasstrophy-demo-toggle:checked ~ .bigbasstrophy-demo-spoiler {
  max-height: 0;
  margin: 0 auto;
  opacity: 0;
  border-width: 0;
  overflow: hidden;
}
.bigbasstrophy-author-box__avatar {
  min-height: 0;
  border: none;
  background: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.bigbasstrophy-author-box__avatar img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
.bigbasstrophy-author-box__avatar::before,
.bigbasstrophy-author-box__avatar::after {
  content: none;
}
.bigbasstrophy-figure {
  position: relative;
  z-index: 1;
  width: min(100%, 792px);
  margin: 22px auto;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}
.bigbasstrophy-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 792 / 450;
  height: auto;
  object-fit: cover;
  background: rgba(4, 23, 35, 0.72);
}
.bigbasstrophy-figure figcaption {
  padding: 12px 16px;
  color: var(--bigbasstrophy-text-soft);
  font-size: 0.95rem;
  background: rgba(4, 23, 35, 0.72);
}
.bigbasstrophy-figure-banner {
  margin-top: 22px;
}
.bigbasstrophy-figure-mobile img {
  object-fit: contain;
}
.bigbasstrophy-figure.bigbasstrophy-art-panel {
  min-height: 0;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 22px;
}
.bigbasstrophy-figure.bigbasstrophy-art-panel::before,
.bigbasstrophy-figure.bigbasstrophy-art-panel::after {
  content: none;
}

.bigbasstrophy-legal-page {
  display: grid;
  gap: 24px;
}

.bigbasstrophy-legal-hero,
.bigbasstrophy-legal-content {
  position: relative;
  background: linear-gradient(180deg, var(--bigbasstrophy-surface), var(--bigbasstrophy-surface-strong));
  border: 1px solid var(--bigbasstrophy-border);
  border-radius: var(--bigbasstrophy-radius-lg);
  padding: 30px;
  box-shadow: var(--bigbasstrophy-shadow);
  overflow: hidden;
}

.bigbasstrophy-legal-hero::before,
.bigbasstrophy-legal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 209, 102, 0.1), transparent 26%),
    radial-gradient(circle at left center, rgba(105, 219, 255, 0.08), transparent 24%);
  pointer-events: none;
}

.bigbasstrophy-legal-hero > *,
.bigbasstrophy-legal-content > * {
  position: relative;
  z-index: 1;
}

.bigbasstrophy-legal-kicker {
  margin: 0 0 10px;
  color: var(--bigbasstrophy-accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.bigbasstrophy-legal-effective {
  color: #dbf8ff;
  font-weight: 700;
}

.bigbasstrophy-legal-page h1 {
  margin: 0 0 16px;
  font-family: var(--bigbasstrophy-font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.04;
}

.bigbasstrophy-legal-page h2 {
  margin: 24px 0 12px;
}

.bigbasstrophy-legal-page h2:first-child {
  margin-top: 0;
}

.bigbasstrophy-legal-page p,
.bigbasstrophy-legal-page li {
  color: var(--bigbasstrophy-text-soft);
}

.bigbasstrophy-legal-page ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.bigbasstrophy-legal-page li + li {
  margin-top: 8px;
}

.bigbasstrophy-site-footer {
  width: min(calc(100% - 32px), var(--bigbasstrophy-container));
  margin: 0 auto 42px;
  text-align: center;
  color: #9fd9ea;
  font-size: 0.95rem;
}

.bigbasstrophy-site-footer p {
  margin: 0 0 14px;
}

.bigbasstrophy-footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  padding: 0;
  margin: 0;
}

.bigbasstrophy-footer-links li {
  margin: 0;
}

.bigbasstrophy-footer-links a {
  color: #d7f7ff;
}

.bigbasstrophy-footer-links a:hover,
.bigbasstrophy-footer-links a:focus-visible {
  color: #ffffff;
}

@media (max-width: 980px) {
  .bigbasstrophy-intro,
  .bigbasstrophy-author-box__inner {
    grid-template-columns: 1fr;
  }

  .bigbasstrophy-stat-strip,
  .bigbasstrophy-pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .bigbasstrophy-table-of-contents ol {
    columns: 1;
  }
}

@media (max-width: 860px) {
  .bigbasstrophy-header-inner {
    min-height: 88px;
    gap: 14px;
  }

  .bigbasstrophy-brand img {
    width: 176px;
    height: auto;
  }

  .bigbasstrophy-menu-button {
    display: inline-flex;
  }

  .bigbasstrophy-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(4, 27, 42, 0.97);
    box-shadow: var(--bigbasstrophy-shadow);
    display: none;
    align-items: stretch;
    flex-direction: column;
    z-index: 60;
  }

  .bigbasstrophy-nav-list {
    width: 100%;
    flex-direction: column;
  }

  .bigbasstrophy-nav-list a {
    width: 100%;
    justify-content: center;
  }

  .language-container,
  .language-selector {
    width: 100%;
  }

  .bigbasstrophy-header-actions {
    margin-left: auto;
    gap: 10px;
  }

  .bigbasstrophy-header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.84rem;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  }

  .bigbasstrophy-menu-toggle:checked + .bigbasstrophy-header-actions .bigbasstrophy-menu-button::before {
    top: 25px;
    transform: rotate(45deg);
  }

  .bigbasstrophy-menu-toggle:checked + .bigbasstrophy-header-actions .bigbasstrophy-menu-button span {
    opacity: 0;
  }

  .bigbasstrophy-menu-toggle:checked + .bigbasstrophy-header-actions .bigbasstrophy-menu-button::after {
    top: 25px;
    transform: rotate(-45deg);
  }

  .bigbasstrophy-menu-toggle:checked ~ .bigbasstrophy-nav {
    display: flex;
  }
}

@media (max-width: 640px) {
  .bigbasstrophy-header-inner,
  .bigbasstrophy-page,
  .bigbasstrophy-site-footer {
    width: min(calc(100% - 20px), var(--bigbasstrophy-container));
  }

  .bigbasstrophy-page {
    padding-top: 20px;
  }

  .bigbasstrophy-brand img {
    width: 144px;
  }

  .bigbasstrophy-header-inner {
    gap: 10px;
  }

  .bigbasstrophy-header-actions {
    gap: 8px;
  }

  .bigbasstrophy-header-cta {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.78rem;
    letter-spacing: 0.01em;
  }

  .bigbasstrophy-menu-button {
    width: 46px;
    height: 46px;
  }

  .bigbasstrophy-intro {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .bigbasstrophy-intro h1,
  .bigbasstrophy-legal-page h1 {
    font-size: clamp(2rem, 11vw, 3rem);
    max-width: none;
  }

  .bigbasstrophy-intro,
  .bigbasstrophy-review-transparency-box,
  .bigbasstrophy-table-of-contents-section,
  .bigbasstrophy-what-is-section,
  .bigbasstrophy-demo-section,
  .bigbasstrophy-how-to-play-section,
  .bigbasstrophy-rtp-volatility-section,
  .bigbasstrophy-symbols-paytable-section,
  .bigbasstrophy-bonus-features-section,
  .bigbasstrophy-ante-bet-bonus-buy-section,
  .bigbasstrophy-mobile-section,
  .bigbasstrophy-comparison-section,
  .bigbasstrophy-pros-cons-section,
  .bigbasstrophy-interesting-facts-section,
  .bigbasstrophy-experience-section,
  .bigbasstrophy-worth-playing-section,
  .bigbasstrophy-responsible-gambling-section,
  .bigbasstrophy-faq-section,
  .bigbasstrophy-author-box,
  .bigbasstrophy-key-info-section,
  .bigbasstrophy-legal-hero,
  .bigbasstrophy-legal-content {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .bigbasstrophy-demo-overlay {
    flex-direction: column;
  }

  .bigbasstrophy-author-box__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .bigbasstrophy-quick-facts-list {
    padding-left: 24px;
  }

  .bigbasstrophy-mechanics-table,
  .bigbasstrophy-demo-watch-table,
  .bigbasstrophy-feature-risk-table,
  .bigbasstrophy-comparison-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .bigbasstrophy-footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
