:root {
  --chive-bg: #050d1f;
  --chive-bg-deep: #0a1530;
  --chive-card: #0e1c3a;
  --chive-line: rgba(80, 130, 255, 0.2);
  --chive-line-strong: rgba(74, 128, 232, 0.55);
  --chive-accent: #4a80e8;
  --chive-accent-deep: #2a5fc8;
  --chive-text: #e8f0fe;
  --chive-muted: #9ab0d0;
  --chive-muted-strong: #b8c8e8;
  --chive-shadow: 0 12px 30px rgba(0, 0, 30, 0.55);
  --chive-radius: 12px;
  --chive-cta-shadow: 0 6px 18px rgba(74, 128, 232, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--chive-text);
  background:
    radial-gradient(circle at 2px 2px, rgba(100, 150, 255, 0.04) 1px, transparent 0),
    linear-gradient(180deg, #050d1f 0%, #0a1530 100%);
  background-size: 6px 6px, auto;
  min-width: 0;
}

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

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

button,
input,
select {
  font: inherit;
}

.chive-page {
  position: relative;
  min-width: 0;
}

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

.chive-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.chive-header {
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(74, 128, 232, 0.2);
  background: rgba(5, 13, 31, 0.92);
}

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

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

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

.chive-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
  padding: 0.75rem 0;
}

.chive-brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--chive-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--chive-text);
  flex-shrink: 0;
}

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

.chive-brand-title {
  display: block;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.chive-brand-note {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.68rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--chive-muted);
}

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

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

.chive-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.8rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--chive-text);
  transition: color 0.2s ease;
}

.chive-nav a::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.15rem;
  height: 2px;
  border-radius: 2px;
  background: var(--chive-accent);
  opacity: 0;
  transform: scaleX(0);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

.chive-nav a.chive-nav-current::before {
  content: "★";
  color: var(--chive-muted-strong);
  font-size: 0.8rem;
}

.chive-burger {
  margin-left: auto;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(184, 200, 232, 0.25);
  border-radius: 10px;
  background: transparent;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 12px;
  color: var(--chive-text);
  cursor: pointer;
}

.chive-burger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.chive-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;
}

.chive-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;
}

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

.chive-age-box {
  margin-block: auto;
  flex-shrink: 0;
  max-width: 100%;
  width: min(420px, calc(100% - 12px));
  background: #ffffff;
  color: #0f1c38;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.chive-age-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #4a80e8, #2a5fc8);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
}

.chive-age-title {
  margin: 0 0 0.75rem;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 1.85rem;
  font-weight: 900;
}

.chive-age-copy {
  margin: 0;
  color: #32466c;
  line-height: 1.6;
}

.chive-age-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.chive-age-confirm,
.chive-age-leave,
.chive-cta-btn,
.chive-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  border: none;
  font-family: "Nunito", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.chive-age-confirm,
.chive-cta-btn,
.chive-button {
  background: var(--chive-accent);
  color: var(--chive-text);
  box-shadow: var(--chive-cta-shadow);
}

.chive-age-confirm:hover,
.chive-age-confirm:focus-visible,
.chive-cta-btn:hover,
.chive-cta-btn:focus-visible,
.chive-button:hover,
.chive-button:focus-visible {
  background: var(--chive-muted-strong);
  color: var(--chive-bg);
}

.chive-age-leave,
.chive-button-ghost {
  background: transparent;
  color: var(--chive-muted-strong);
  border: 1.5px solid var(--chive-muted-strong);
}

.chive-age-leave:hover,
.chive-age-leave:focus-visible,
.chive-button-ghost:hover,
.chive-button-ghost:focus-visible {
  background: var(--chive-muted-strong);
  color: var(--chive-bg);
}

.chive-cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 250;
  background: #e8f0fe;
  color: #152649;
  border-bottom: 1px solid rgba(21, 38, 73, 0.12);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

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

.chive-cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.chive-cookie-copy {
  margin: 0;
  max-width: 760px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.chive-cookie-copy a {
  color: #0f2d66;
  text-decoration: underline;
}

.chive-cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.chive-cookie-accept,
.chive-cookie-decline {
  min-height: 42px;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

.chive-cookie-accept {
  background: #0f2d66;
  color: #ffffff;
  border: none;
}

.chive-cookie-decline {
  background: transparent;
  color: #0f2d66;
  border: 1px solid rgba(15, 45, 102, 0.3);
}

.chive-cookie-banner[data-chive-cookie-state="visible"] ~ .chive-page .chive-header {
  top: 66px;
}

.chive-main {
  display: block;
}

.chive-band {
  padding: 4.5rem 0;
}

.chive-band-first {
  padding-top: 3rem;
}

.chive-kicker {
  margin: 0 0 1rem;
  color: var(--chive-muted-strong);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.75rem;
  font-weight: 600;
}

.chive-title {
  margin: 0;
  font-family: "Nunito", Arial, sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -1px;
}

.chive-title-accent {
  color: var(--chive-accent);
}

.chive-bar {
  width: 64px;
  height: 3px;
  border-radius: 2px;
  background: var(--chive-accent);
  margin: 1.3rem 0 1.4rem;
}

.chive-lead {
  margin: 0;
  max-width: 700px;
  color: var(--chive-muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.chive-rg-panel,
.chive-card,
.chive-quiz-panel,
.chive-strip-card,
.chive-method-card,
.chive-about-card,
.chive-faq-row,
.chive-legal-card {
  background: var(--chive-card);
  border: 1px solid var(--chive-line);
  border-top: 2px solid var(--chive-accent);
  border-radius: var(--chive-radius);
  box-shadow: var(--chive-shadow);
}

.chive-rg-panel,
.chive-quiz-panel,
.chive-strip-card,
.chive-method-card,
.chive-about-card,
.chive-legal-card {
  padding: 1.55rem;
}

.chive-rg-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.5rem;
  align-items: start;
}

.chive-rg-copy p,
.chive-method-card p,
.chive-about-copy p,
.chive-legal-card p,
.chive-legal-card li {
  color: var(--chive-muted);
  line-height: 1.75;
}

.chive-rg-links {
  display: grid;
  gap: 0.9rem;
}

.chive-rg-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 10px;
  background: rgba(74, 128, 232, 0.08);
  border: 1px solid rgba(74, 128, 232, 0.18);
}

.chive-rg-link span:last-child {
  color: var(--chive-accent);
  font-weight: 700;
}

.chive-inline-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 28px;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(74, 128, 232, 0.16);
  border: 1px solid rgba(74, 128, 232, 0.28);
  color: var(--chive-text);
  font-size: 0.82rem;
  font-weight: 700;
}

.chive-hero {
  padding-top: 5.5rem;
  padding-bottom: 5rem;
}

.chive-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.6rem;
  align-items: end;
}

.chive-hero-title {
  margin: 0;
  font-family: "Nunito", Arial, sans-serif;
  font-size: clamp(2.875rem, 8vw, 6.75rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.5px;
}

.chive-hero-copy {
  max-width: 540px;
}

.chive-hero-copy .chive-lead {
  font-size: 1.125rem;
  line-height: 1.55;
}

.chive-hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.chive-quiz-panel {
  display: grid;
  gap: 1rem;
}

.chive-quiz-title {
  margin: 0;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
}

.chive-quiz-note {
  margin: 0;
  color: var(--chive-muted);
  line-height: 1.6;
}

.chive-quiz-step {
  display: grid;
  gap: 0.7rem;
}

.chive-quiz-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--chive-muted-strong);
}

.chive-quiz-choices {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.chive-quiz-choice {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 128, 232, 0.3);
  background: rgba(74, 128, 232, 0.14);
  color: var(--chive-text);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.chive-quiz-choice:hover,
.chive-quiz-choice:focus-visible,
.chive-quiz-choice.chive-quiz-picked {
  border-color: var(--chive-line-strong);
  background: rgba(74, 128, 232, 0.26);
  transform: translateY(-1px);
}

.chive-quiz-result {
  padding: 1rem 1.05rem;
  border-radius: 10px;
  background: rgba(232, 240, 254, 0.05);
  border: 1px solid rgba(184, 200, 232, 0.16);
  color: var(--chive-muted-strong);
  line-height: 1.6;
}

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

.chive-strip-card h3 {
  margin: 0;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.chive-strip-card p {
  margin: 0.7rem 0 0;
  color: var(--chive-muted);
  line-height: 1.6;
}

.chive-casino-list {
  display: grid;
  gap: 1.3rem;
  min-width: 0;
}

.chive-card {
  display: grid;
  grid-template-columns: minmax(0, 150px) minmax(0, 1fr) minmax(220px, 220px);
  gap: 1.2rem;
  padding: 1.45rem;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  min-width: 0;
}

.chive-card:hover,
.chive-card.chive-card-lift {
  border-color: var(--chive-line-strong);
  transform: translateY(-2px);
}

.chive-card-top,
.chive-card-body,
.chive-card-cta,
.chive-score,
.chive-rating-row {
  min-width: 0;
}

.chive-card-body {
  display: grid;
  gap: 0.9rem;
}

.chive-card-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
}

.chive-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;
}

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

.chive-brandline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.chive-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: var(--chive-accent);
  color: var(--chive-text);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.chive-casino-title {
  margin: 0;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
}

.chive-rating-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.chive-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.chive-stars i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1.5px solid var(--chive-muted);
}

.chive-stars i.chive-star-fill {
  background: var(--chive-accent);
  border-color: var(--chive-accent);
}

.chive-score {
  font-size: 0.95rem;
  color: var(--chive-muted-strong);
  min-width: 0;
  flex-shrink: 1;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.chive-bonus-text {
  margin: 0;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--chive-text);
  text-decoration: underline;
  text-decoration-color: #4a80e8;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.chive-card-review {
  margin: 0;
  color: var(--chive-muted);
  line-height: 1.72;
}

.chive-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chive-pill {
  background: rgba(74, 128, 232, 0.14);
  color: #e8f0fe;
  border: 1px solid rgba(74, 128, 232, 0.3);
  border-radius: 999px;
  padding: 4px 12px;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3px;
}

.chive-disclaimer {
  margin: 0;
  color: var(--chive-muted);
  font-size: 0.87rem;
}

.chive-cta-btn,
.chive-button {
  width: 100%;
}

.chive-cta-meta {
  color: var(--chive-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.chive-calc-grid,
.chive-pay-grid,
.chive-about-grid,
.chive-faq-wrap,
.chive-legal-grid {
  display: grid;
  gap: 1.2rem;
  min-width: 0;
}

.chive-grid,
.chive-casino-list {
  min-width: 0;
}

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

.chive-calc-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.chive-calc-card {
  display: grid;
  gap: 1rem;
}

.chive-field {
  display: grid;
  gap: 0.45rem;
}

.chive-field label {
  color: var(--chive-muted-strong);
  font-size: 0.88rem;
}

.chive-field input,
.chive-field select {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(184, 200, 232, 0.22);
  background: rgba(232, 240, 254, 0.06);
  color: var(--chive-text);
}

.chive-field select option {
  color: #050d1f;
}

.chive-calc-output {
  display: grid;
  gap: 0.85rem;
}

.chive-calc-box {
  padding: 1rem;
  border-radius: 10px;
  background: rgba(74, 128, 232, 0.08);
  border: 1px solid rgba(74, 128, 232, 0.18);
}

.chive-calc-box strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 1.3rem;
}

.chive-table-wrap {
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
}

.chive-pay-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.chive-pay-table th,
.chive-pay-table td {
  padding: 0.95rem 0.9rem;
  border-bottom: 1px solid rgba(184, 200, 232, 0.12);
  text-align: left;
  vertical-align: top;
}

.chive-pay-table th {
  color: var(--chive-muted-strong);
}

.chive-method-grid {
  display: grid;
  gap: 1rem;
}

.chive-method-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.chive-method-step {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(74, 128, 232, 0.22), rgba(42, 95, 200, 0.45));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--chive-text);
}

.chive-method-content h3,
.chive-about-copy h3,
.chive-legal-card h2,
.chive-footer-title {
  margin: 0;
  font-family: "Nunito", Arial, sans-serif;
  font-weight: 800;
}

.chive-method-content p,
.chive-about-copy p,
.chive-faq-panel p {
  margin: 0.75rem 0 0;
}

.chive-about-grid,
.chive-pay-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.chive-pay-grid > * {
  min-width: 0;
}

.chive-about-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--chive-muted);
  line-height: 1.7;
}

.chive-faq-wrap {
  max-width: 900px;
}

.chive-faq-row {
  overflow: hidden;
}

.chive-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  border: none;
  background: transparent;
  color: var(--chive-text);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.chive-faq-trigger span:last-child {
  color: var(--chive-accent);
  font-size: 1.3rem;
}

.chive-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.chive-faq-panel-inner {
  padding: 0 1.35rem 1.2rem;
}

.chive-legal-grid {
  grid-template-columns: minmax(0, 1fr);
}

.chive-legal-card ul {
  padding-left: 1.15rem;
}

.chive-legal-card a,
.chive-footer a,
.chive-rg-copy a {
  color: var(--chive-muted-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.chive-top-button {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(184, 200, 232, 0.24);
  background: rgba(14, 28, 58, 0.94);
  color: var(--chive-text);
  box-shadow: var(--chive-shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.chive-top-button.chive-top-button-live {
  opacity: 1;
  pointer-events: auto;
}

.chive-top-button:hover,
.chive-top-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--chive-line-strong);
}

.chive-footer {
  border-top: 1px solid rgba(74, 128, 232, 0.2);
  background: rgba(5, 13, 31, 0.9);
}

.chive-footer-strip {
  padding: 1.4rem 0 1.7rem;
  display: grid;
  gap: 0.9rem;
}

.chive-footer-links,
.chive-footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.1rem;
  color: var(--chive-muted);
}

.chive-footer-legal {
  display: grid;
  gap: 0.6rem;
  color: var(--chive-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.chive-footer-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

@media (min-width: 1101px) {
  .chive-nav {
    display: flex;
    flex: 1;
    overflow: visible;
  }

  .chive-nav ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 0.25rem;
  }
}

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

  .chive-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: 5rem 1rem 1.5rem;
    max-width: min(320px, 85vw) !important;
  }

  .chive-nav ul {
    display: grid;
    gap: 0.35rem;
  }

  .chive-nav a {
    color: #0f1c38;
    border-radius: 8px;
  }

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

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

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

  .chive-rg-panel,
  .chive-hero-grid,
  .chive-calc-grid,
  .chive-about-grid,
  .chive-pay-grid {
    grid-template-columns: 1fr;
  }

  .chive-topstrip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .chive-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .chive-card-cta {
    max-width: 100%;
  }

  .chive-cookie-banner[data-chive-cookie-state="visible"] ~ .chive-page .chive-header {
    top: 74px;
  }
}

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

  html,
  body {
    overflow-x: clip;
  }

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

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

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

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

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

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

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

  .chive-cta-btn,
  .chive-button {
    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;
  }

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

  .chive-nav {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

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

  .chive-pay-grid,
  .chive-pay-grid > *,
  .chive-about-card {
    min-width: 0;
    max-width: 100%;
  }

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

  .chive-table-wrap table {
    table-layout: auto;
    min-width: 560px;
    width: max-content;
    max-width: none;
  }

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

  thead th {
    white-space: nowrap;
  }

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

  .chive-shell {
    width: calc(100% - 20px);
  }

  .chive-band {
    padding: 3.25rem 0;
  }

  .chive-hero {
    padding-top: 4rem;
  }

  .chive-hero-actions,
  .chive-cookie-inner,
  .chive-cookie-actions,
  .chive-footer-links,
  .chive-footer-meta,
  .chive-footer-pages {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

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

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