:root {
  --csshow-bg: #f7f3e8;
  --csshow-paper: #fffdf6;
  --csshow-blue: #283c96;
  --csshow-blue-deep: #1f2f78;
  --csshow-orange: #ff5a36;
  --csshow-orange-deep: #e84620;
  --csshow-pink: #f06ba8;
  --csshow-ink: #1c1c1c;
  --csshow-blue-soft: rgba(40, 60, 150, 0.1);
  --csshow-blue-shadow: rgba(40, 60, 150, 0.25);
  --csshow-radius: 8px;
  --csshow-shell: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--csshow-ink);
  background-color: var(--csshow-bg);
  background-image: radial-gradient(circle at 1px 1px, rgba(40, 60, 150, 0.05) 1px, transparent 0);
  background-size: 4px 4px;
  line-height: 1.65;
  min-width: 320px;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 90, 54, 0.18), transparent 18rem),
    radial-gradient(circle at 88% 12%, rgba(40, 60, 150, 0.18), transparent 18rem),
    radial-gradient(circle at 78% 78%, rgba(240, 107, 168, 0.12), transparent 16rem);
}

body::after {
  z-index: 0;
  background:
    linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.2) 30%, transparent 60%),
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.12), transparent 32%);
  opacity: 0.5;
}

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

a {
  color: inherit;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  font-family: "Archivo", sans-serif;
  line-height: 1.05;
  margin: 0 0 1rem;
  text-wrap: balance;
}

h1 {
  font-size: clamp(48px, 9vw, 112px);
  font-weight: 800;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

h3 {
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 700;
}

main,
footer,
header,
section {
  position: relative;
  z-index: 1;
}

.csshow-page > main,
.csshow-page > footer {
  position: relative;
  z-index: 1;
}

.csshow-shell {
  width: min(calc(100% - 2rem), var(--csshow-shell));
  margin: 0 auto;
}

.csshow-section {
  padding: 4.75rem 0;
}

.csshow-paper {
  background: var(--csshow-paper);
  border-top: 2px solid var(--csshow-blue);
  border-radius: var(--csshow-radius);
  box-shadow: 2px 2px 0 var(--csshow-blue-shadow);
}

.csshow-kicker {
  color: var(--csshow-blue);
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.csshow-accent-word {
  color: var(--csshow-orange);
  text-shadow: 2px 0 0 rgba(40, 60, 150, 0.75);
}

.csshow-accent-bar {
  width: 136px;
  height: 4px;
  background: var(--csshow-orange);
  box-shadow: 2px 2px 0 var(--csshow-blue);
  margin: 1.3rem auto 1.7rem;
}

.csshow-button,
.csshow-cta-btn,
.csshow-ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: 6px;
  font-family: "Archivo", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.csshow-button,
.csshow-cta-btn {
  background: var(--csshow-orange);
  color: #fff;
  border: 2px solid var(--csshow-orange);
  box-shadow: 3px 3px 0 var(--csshow-blue);
}

.csshow-button:hover,
.csshow-button:focus-visible,
.csshow-cta-btn:hover,
.csshow-cta-btn:focus-visible {
  background: var(--csshow-blue);
  border-color: var(--csshow-blue);
  color: #fff;
  box-shadow: 3px 3px 0 var(--csshow-orange);
  transform: translate(-1px, -1px);
}

.csshow-ghost-btn {
  background: transparent;
  color: var(--csshow-blue);
  border: 2px solid var(--csshow-blue);
  box-shadow: none;
}

.csshow-ghost-btn:hover,
.csshow-ghost-btn:focus-visible {
  background: var(--csshow-blue);
  color: #fff;
  transform: translate(-1px, -1px);
}

.csshow-link-inline {
  color: var(--csshow-blue);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

.csshow-link-inline:hover,
.csshow-link-inline:focus-visible {
  color: var(--csshow-orange-deep);
}

.csshow-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(247, 243, 232, 0.96);
  border-bottom: 2px solid var(--csshow-blue);
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.csshow-header.is-settled {
  box-shadow: 0 10px 24px rgba(28, 28, 28, 0.08);
}

body:not(.csshow-nav-open) .csshow-header {
  backdrop-filter: blur(8px);
}

body.csshow-nav-open .csshow-header {
  backdrop-filter: none;
}

.csshow-header-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 1rem;
  position: relative;
  overflow: visible;
  min-height: 84px;
}

.csshow-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  text-decoration: none;
  color: var(--csshow-ink);
  min-width: 0;
  padding: 0.75rem 0;
}

.csshow-brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: var(--csshow-orange);
  box-shadow: 2px 2px 0 var(--csshow-blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
}

.csshow-brand-copy {
  min-width: 0;
}

.csshow-brand-name {
  display: block;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.csshow-brand-line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--csshow-blue);
  margin-top: 0.35rem;
}

.csshow-nav {
  min-width: 0;
}

.csshow-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.csshow-nav a {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.84rem;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.9rem 0.7rem;
  color: var(--csshow-blue);
}

.csshow-nav a[aria-current="page"]::before {
  content: "●";
  color: var(--csshow-orange);
}

.csshow-nav a::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.55rem;
  height: 2px;
  background: var(--csshow-orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}

.csshow-nav a:hover,
.csshow-nav a:focus-visible {
  color: var(--csshow-orange);
}

.csshow-nav a:hover::after,
.csshow-nav a:focus-visible::after {
  transform: scaleX(1);
}

.csshow-burger {
  display: none;
  margin-left: auto;
  width: 50px;
  height: 50px;
  border: 2px solid var(--csshow-blue);
  background: var(--csshow-paper);
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  box-shadow: 2px 2px 0 rgba(40, 60, 150, 0.22);
}

.csshow-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--csshow-blue);
}

.csshow-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.csshow-hero {
  padding-top: 4.5rem;
  overflow: hidden;
}

.csshow-hero-shell {
  text-align: center;
  position: relative;
}

.csshow-riso-disc {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  opacity: 0.18;
  z-index: 0;
}

.csshow-riso-disc--orange {
  background: var(--csshow-orange);
  top: -2rem;
  right: -2rem;
}

.csshow-riso-disc--blue {
  background: var(--csshow-blue);
  bottom: 3rem;
  left: -3rem;
}

.csshow-riso-disc--pink {
  background: var(--csshow-pink);
  top: 30%;
  left: 8%;
  width: 140px;
  height: 140px;
}

.csshow-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.csshow-hero-subline {
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.csshow-hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.csshow-hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
  min-width: 0;
}

.csshow-hero-note {
  min-width: 0;
  padding: 1.2rem;
  text-align: left;
}

.csshow-hero-note strong {
  display: block;
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.csshow-hero-note span {
  color: var(--csshow-blue);
}

.csshow-casino-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  min-width: 0;
}

.csshow-card {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr) 220px;
  gap: 1.2rem;
  align-items: center;
  padding: 1.35rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  min-width: 0;
  transform-style: preserve-3d;
}

.csshow-card.is-active,
.csshow-card:hover {
  box-shadow: 4px 4px 0 rgba(40, 60, 150, 0.3);
  transform: translate(-1px, -1px);
}

.csshow-card-main,
.csshow-card-side,
.csshow-card-brand {
  min-width: 0;
}

.csshow-card-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
  min-width: 0;
}

.csshow-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 90, 54, 0.14);
  color: var(--csshow-orange-deep);
  font-family: "Archivo", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.csshow-top-pick {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  background: var(--csshow-orange);
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 2px 2px 0 var(--csshow-blue);
}

.csshow-card h3 {
  margin-bottom: 0.4rem;
}

.csshow-card-review {
  color: rgba(28, 28, 28, 0.82);
  font-size: 0.98rem;
}

.csshow-bonus-highlight {
  display: inline;
  font-family: "Archivo", sans-serif;
  font-size: 1.42rem;
  font-weight: 700;
  color: var(--csshow-orange-deep);
  line-height: 1.2;
  background: linear-gradient(transparent 62%, rgba(255, 90, 54, 0.22) 62%);
}

.csshow-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 0.8rem;
}

.csshow-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: var(--csshow-blue-soft);
  color: var(--csshow-blue);
  font-size: 0.8rem;
  font-weight: 600;
}

.csshow-disclaimer {
  font-size: 0.84rem;
  color: rgba(28, 28, 28, 0.72);
}

.csshow-score-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
}

.csshow-score-value {
  font-family: "Archivo", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  min-width: 0;
  flex-shrink: 1;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.csshow-dot-row {
  display: flex;
  gap: 0.35rem;
}

.csshow-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: relative;
  border: 1.5px solid var(--csshow-blue);
  background: transparent;
}

.csshow-dot.is-full {
  background: var(--csshow-orange);
  box-shadow: 1px 1px 0 var(--csshow-blue);
  border-color: var(--csshow-orange);
}

.csshow-score-label {
  color: var(--csshow-blue);
  font-weight: 600;
}

.csshow-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}

.csshow-cta-caption {
  font-size: 0.83rem;
  color: rgba(28, 28, 28, 0.74);
}

.csshow-card-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.csshow-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(140px, 100%);
  height: auto;
  min-height: 4.25rem;
  max-width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.csshow-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.csshow-grid,
.csshow-rubric-grid,
.csshow-about-grid,
.csshow-footer-grid {
  min-width: 0;
}

.csshow-section-head {
  max-width: 780px;
  margin-bottom: 2rem;
}

.csshow-section-head p {
  font-size: 1.02rem;
  color: rgba(28, 28, 28, 0.84);
}

.csshow-table-wrap {
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  border-radius: var(--csshow-radius);
}

.csshow-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  background: var(--csshow-paper);
  border-top: 2px solid var(--csshow-blue);
  box-shadow: 2px 2px 0 rgba(40, 60, 150, 0.22);
}

.csshow-table th,
.csshow-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(40, 60, 150, 0.12);
  vertical-align: top;
}

.csshow-table thead th {
  font-family: "Archivo", sans-serif;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--csshow-blue);
  white-space: nowrap;
}

.csshow-table tbody tr:nth-child(even) {
  background: rgba(40, 60, 150, 0.03);
}

.csshow-tag-mini {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(240, 107, 168, 0.14);
  color: var(--csshow-blue-deep);
  font-size: 0.75rem;
  font-weight: 700;
}

.csshow-rubric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.csshow-rubric-tile,
.csshow-team-card,
.csshow-verdict-card,
.csshow-rg-panel,
.csshow-legal-card {
  padding: 1.35rem;
  min-width: 0;
}

.csshow-rubric-tile h3,
.csshow-team-card h3,
.csshow-verdict-card h3,
.csshow-rg-panel h3 {
  margin-bottom: 0.6rem;
}

.csshow-rubric-tile p,
.csshow-team-card p,
.csshow-verdict-card p,
.csshow-rg-panel p {
  margin-bottom: 0;
}

.csshow-verdict-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1rem;
  min-width: 0;
}

.csshow-verdict-lead {
  font-size: 1.06rem;
}

.csshow-accordion {
  display: grid;
  gap: 0.8rem;
}

.csshow-accordion-item {
  border-top: 2px solid var(--csshow-blue);
  border-radius: var(--csshow-radius);
  background: var(--csshow-paper);
  box-shadow: 2px 2px 0 rgba(40, 60, 150, 0.2);
  overflow: hidden;
}

.csshow-accordion-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--csshow-ink);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
}

.csshow-accordion-toggle span:last-child {
  color: var(--csshow-orange-deep);
  font-size: 1.3rem;
  line-height: 1;
}

.csshow-accordion-panel {
  padding: 0 1.1rem 1.1rem;
}

.csshow-accordion-item.is-open .csshow-accordion-toggle {
  color: var(--csshow-blue);
}

.csshow-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1rem;
  margin-top: 2rem;
}

.csshow-team-stack {
  display: grid;
  gap: 1rem;
}

.csshow-team-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.csshow-team-list li {
  padding-left: 1.1rem;
  position: relative;
}

.csshow-team-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--csshow-orange-deep);
  font-weight: 800;
}

.csshow-rg-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1rem;
  min-width: 0;
}

.csshow-rg-links {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.csshow-rg-links a {
  color: var(--csshow-blue);
  font-weight: 700;
}

.csshow-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--csshow-orange);
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 2px 2px 0 var(--csshow-blue);
}

.csshow-footer {
  border-top: 2px solid var(--csshow-blue);
  background: rgba(255, 253, 246, 0.9);
  padding: 3rem 0 2rem;
}

.csshow-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.csshow-footer h3 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.csshow-footer p,
.csshow-footer li,
.csshow-footer a {
  font-size: 0.92rem;
}

.csshow-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.csshow-footer a {
  text-decoration: none;
  color: var(--csshow-blue);
}

.csshow-footer a:hover,
.csshow-footer a:focus-visible {
  color: var(--csshow-orange-deep);
}

.csshow-footer-meta {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid rgba(40, 60, 150, 0.16);
  padding-top: 1rem;
  font-size: 0.88rem;
}

.csshow-age-overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100dvh !important;
  min-height: 100vh !important;
  z-index: 2147483646 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: max(env(safe-area-inset-top), 16px) 0.65rem max(env(safe-area-inset-bottom), 16px) !important;
  background: rgba(0, 0, 0, 0.85) !important;
  margin: 0 !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
}

.csshow-age-box {
  margin-block: auto;
  flex-shrink: 0;
  max-width: 100%;
  width: min(420px, calc(100% - 12px));
  background: var(--csshow-paper);
  border-top: 2px solid var(--csshow-blue);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 4px 4px 0 rgba(40, 60, 150, 0.35);
}

.csshow-age-overlay[data-csshow-age-state="confirmed"],
.csshow-age-overlay[data-csshow-age-state="hidden"] {
  display: none !important;
}

.csshow-age-copy {
  font-size: 0.98rem;
}

.csshow-age-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.csshow-cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  pointer-events: none;
}

.csshow-cookie-banner[data-csshow-cookie-state="hidden"] {
  display: none;
}

.csshow-cookie-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  pointer-events: auto;
}

.csshow-cookie-copy {
  margin: 0;
}

.csshow-cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.csshow-cookie-actions a {
  color: var(--csshow-blue);
  font-weight: 700;
}

.csshow-backtop {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 98;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--csshow-blue);
  background: var(--csshow-orange);
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 3px 3px 0 var(--csshow-blue);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}

.csshow-backtop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}

.csshow-legal-hero {
  padding-top: 3.25rem;
}

.csshow-legal-hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.8rem);
}

.csshow-legal-intro {
  max-width: 760px;
}

.csshow-legal-stack {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.csshow-legal-card h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  margin-bottom: 0.85rem;
}

.csshow-legal-card p:last-child {
  margin-bottom: 0;
}

.csshow-mini-meta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  color: var(--csshow-blue);
  font-family: "Archivo", sans-serif;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (min-width: 1101px) {
  .csshow-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    flex: 1;
    overflow: visible;
    justify-content: flex-end;
  }

  .csshow-nav ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .csshow-burger {
    display: none;
  }
}

@media (max-width: 1100px) {
  .csshow-burger {
    display: flex;
  }

  .csshow-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100dvh;
    z-index: 201;
    background: #ffffff;
    transform: translateX(calc(100% + 16px));
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s;
    overflow-y: auto;
    padding: 1.5rem 1rem;
    max-width: min(320px, 85vw) !important;
    box-shadow: -10px 0 30px rgba(28, 28, 28, 0.16);
  }

  .csshow-nav ul {
    display: grid;
    gap: 0.4rem;
  }

  .csshow-nav a {
    padding: 0.85rem 0.35rem;
  }

  body.csshow-nav-open .csshow-nav {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0s;
  }

  body.csshow-nav-open .csshow-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  body.csshow-nav-open {
    overflow: hidden;
  }

  .csshow-hero-strip,
  .csshow-rubric-grid,
  .csshow-footer-grid,
  .csshow-rg-grid,
  .csshow-about-grid,
  .csshow-verdict-wrap {
    grid-template-columns: 1fr;
  }

  .csshow-card {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .csshow-card-side {
    grid-column: 1 / -1;
    padding-top: 0.2rem;
  }

  .csshow-score-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .csshow-cookie-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .csshow-section {
    padding: 3.6rem 0;
  }

  .csshow-header-inner {
    min-height: 74px;
  }

  .csshow-hero {
    padding-top: 3.1rem;
  }

  .csshow-hero-subline {
    font-size: 1rem;
  }

  .csshow-card {
    grid-template-columns: 1fr;
  }

  .csshow-card-brand {
    display: flex;
    justify-content: flex-start;
  }

  .csshow-score-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 550px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  html,
  body {
    overflow-x: clip;
  }

  .csshow-page * {
    max-width: 100%;
  }

  .csshow-casino-list,
  .csshow-grid {
    grid-template-columns: 1fr !important;
    min-width: 0;
  }

  .csshow-casino-list > *,
  .csshow-grid > * {
    min-width: 0;
  }

  .csshow-card {
    flex-direction: column !important;
    min-width: 0;
  }

  .csshow-card * {
    min-width: 0;
    max-width: 100%;
  }

  .csshow-card-top {
    flex-wrap: wrap;
    gap: 8px;
  }

  .csshow-logo-wrap {
    max-width: 120px;
    height: 36px;
  }

  .csshow-cta-btn,
  .csshow-button,
  .csshow-ghost-btn {
    width: 100% !important;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  h1,
  h2 {
    font-size: clamp(1.25rem, 6vw, 2rem) !important;
  }

  .csshow-card:hover {
    transform: none !important;
  }

  .csshow-nav {
    width: 100%;
    min-width: 0;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .csshow-header-inner {
    position: relative;
  }

  table {
    table-layout: auto;
    width: max-content;
    min-width: 0;
  }

  .csshow-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
  }

  .csshow-table-wrap table {
    min-width: 100%;
    width: max-content;
  }

  :not(.csshow-table-wrap) > table {
    width: 100%;
  }

  thead th {
    white-space: nowrap;
  }

  td {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
  }

  .csshow-hero-actions,
  .csshow-cookie-actions,
  .csshow-footer-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .csshow-footer-grid {
    grid-template-columns: 1fr;
  }

  .csshow-backtop {
    right: 0.75rem;
    bottom: 5.25rem;
  }

  .csshow-bonus-highlight {
    font-size: 1.1rem;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: clamp(1.1rem, 7vw, 1.5rem) !important;
  }

  .csshow-logo-wrap {
    max-width: 90px;
    height: 30px;
  }

  .csshow-bonus-text {
    font-size: 0.85rem;
  }

  .csshow-brand-name,
  .csshow-nav a {
    letter-spacing: 0.05em;
  }
}
