:root {
  --s01-bg-top: #1a0a2e;
  --s01-bg-bottom: #12071f;
  --s01-card: #1f1035;
  --s01-card-soft: #251043;
  --s01-border: rgba(255, 215, 0, 0.15);
  --s01-gold: #fbbf24;
  --s01-gold-deep: #f59e0b;
  --s01-violet: #7c3aed;
  --s01-text: #faf5ff;
  --s01-text-soft: rgba(250, 245, 255, 0.78);
  --s01-shadow: 0 24px 60px rgba(8, 2, 17, 0.42);
  --s01-radius: 28px;
  --s01-gap: 1.5rem;
}

html {
  scroll-behavior: auto;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--s01-text);
  background: linear-gradient(180deg, var(--s01-bg-top), var(--s01-bg-bottom));
  line-height: 1.7;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
}

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

body::before {
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(124, 58, 237, 0.2),
      transparent 34%
    ),
    radial-gradient(
      circle at 82% 10%,
      rgba(251, 191, 36, 0.14),
      transparent 26%
    ),
    radial-gradient(
      circle at 50% 85%,
      rgba(124, 58, 237, 0.12),
      transparent 30%
    );
}

body::after {
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.04),
    transparent 30%,
    rgba(255, 255, 255, 0.02) 60%,
    transparent 80%
  );
  opacity: 0.7;
}

body.s01-lock-scroll {
  overflow: hidden;
}

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

img {
  max-width: 100%;
}

.s01-cookie-banner,
.s01-age-overlay,
.s01-page {
  position: relative;
  z-index: 1;
}

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

.s01-cookie-banner {
  position: sticky;
  top: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 12px 18px;
  background: rgba(20, 7, 32, 0.96);
  border-bottom: 1px solid var(--s01-border);
  backdrop-filter: blur(10px);
  box-sizing: border-box;
}

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

.s01-cookie-banner p {
  margin: 0;
  color: var(--s01-text-soft);
}

.s01-cookie-actions {
  display: flex;
  gap: 0.8rem;
}

.s01-cookie-banner button,
.s01-button,
.s01-link-button,
.s01-age-actions button {
  border: 0;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
}

.s01-cookie-banner button,
.s01-button,
.s01-link-button {
  padding: 0.95rem 1.4rem;
}

.s01-button,
.s01-link-button,
.s01-cookie-banner [data-s01-cookie-action="accept"],
.s01-age-confirm {
  color: #2e1600;
  background: linear-gradient(90deg, var(--s01-gold-deep), var(--s01-gold));
  box-shadow: 0 18px 40px rgba(245, 158, 11, 0.26);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.s01-button:hover,
.s01-link-button:hover,
.s01-cookie-banner [data-s01-cookie-action="accept"]:hover,
.s01-age-confirm:hover {
  background: linear-gradient(90deg, #f7b733, #ffd66d);
  box-shadow: 0 20px 44px rgba(251, 191, 36, 0.38);
  transform: translateY(-2px);
}

.s01-cookie-banner [data-s01-cookie-action="reject"],
.s01-age-leave {
  color: var(--s01-text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.s01-header {
  position: sticky;
  top: 0;
  z-index: 90;
  padding-top: 0;
}

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

.s01-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.s01-header.s01-header-solid .s01-header-inner {
  background: rgba(26, 10, 46, 0.88);
  border: 1px solid rgba(255, 215, 0, 0.12);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(7, 2, 14, 0.38);
  padding: 0.95rem 1.1rem;
  backdrop-filter: blur(12px);
}

.s01-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.s01-logo-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--s01-gold);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.12);
}

.s01-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.s01-logo-text strong {
  font-size: 0.95rem;
  color: var(--s01-text);
}

.s01-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.s01-nav a {
  position: relative;
  color: var(--s01-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.84rem;
  padding-bottom: 0.2rem;
}

.s01-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--s01-gold-deep), var(--s01-gold));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.s01-nav a:hover::after,
.s01-nav a:focus-visible::after {
  opacity: 1;
}

.s01-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--s01-text);
}

.s01-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition:
    transform 0.25s,
    opacity 0.25s;
}

.s01-hero,
.s01-page-hero {
  position: relative;
  padding: 6.4rem 0 4.5rem;
  overflow: hidden;
}

.s01-hero::before,
.s01-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 50% 25%,
      rgba(124, 58, 237, 0.38),
      transparent 44%
    ),
    linear-gradient(135deg, rgba(26, 10, 46, 0.12), rgba(251, 191, 36, 0.06)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 20%);
  pointer-events: none;
}

.s01-hero-inner,
.s01-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.s01-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.16);
  color: var(--s01-gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.s01-hero h1,
.s01-page-hero h1 {
  margin: 1.25rem 0 1rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--s01-gold);
  text-shadow: 0 0 28px rgba(251, 191, 36, 0.14);
}

.s01-hero h1 span,
.s01-page-hero h1 span {
  display: inline-block;
  color: var(--s01-text);
  background: linear-gradient(
    120deg,
    rgba(251, 191, 36, 0.06),
    rgba(124, 58, 237, 0.12),
    rgba(251, 191, 36, 0.06)
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: s01-shimmer 6s linear infinite;
}

@keyframes s01-shimmer {
  from {
    background-position: 0% center;
  }
  to {
    background-position: 200% center;
  }
}

.s01-subline,
.s01-hero p,
.s01-page-hero p {
  max-width: 62ch;
  color: var(--s01-text-soft);
  font-size: 1.08rem;
}

.s01-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.s01-trustline {
  margin-top: 1.1rem;
  color: rgba(250, 245, 255, 0.66);
}

.s01-section {
  margin-bottom: 1.6rem;
  padding: 2rem;
  border-radius: var(--s01-radius);
  background: linear-gradient(
    180deg,
    rgba(31, 16, 53, 0.94),
    rgba(22, 11, 38, 0.95)
  );
  border: 1px solid var(--s01-border);
  box-shadow: var(--s01-shadow);
}

.s01-section h2,
.s01-section h3,
.s01-footer-title {
  margin-top: 0;
  font-family: "Playfair Display", serif;
}

.s01-section h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--s01-text);
}

.s01-section-intro {
  max-width: 72ch;
  color: var(--s01-text-soft);
}

.s01-card-grid,
.s01-method-grid,
.s01-glossary-grid,
.s01-about-grid,
.s01-rg-grid,
.s01-footer-grid,
.s01-legal-grid {
  display: grid;
  gap: var(--s01-gap);
}

.s01-card-grid {
  grid-template-columns: minmax(0, 430px);
  justify-content: center;
}

.s01-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.6rem;
  background: linear-gradient(
    180deg,
    rgba(31, 16, 53, 0.98),
    rgba(22, 11, 38, 0.98)
  );
  border: 1px solid var(--s01-border);
  border-left: 3px solid var(--s01-gold);
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(8, 2, 17, 0.46);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.s01-card:hover,
.s01-card[data-hover="active"] {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 30px 70px rgba(12, 4, 20, 0.52),
    0 0 0 1px rgba(251, 191, 36, 0.22);
  border-color: rgba(251, 191, 36, 0.34);
}

.s01-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.s01-logo-wrap {
  padding: 6px;
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
  flex-shrink: 0;
}

.s01-logo-wrap img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
}

.s01-brand-meta h3 {
  margin: 0;
  font-size: 1.5rem;
}

.s01-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: center;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.24);
  color: var(--s01-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.s01-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--s01-text-soft);
}

.s01-score strong {
  font-size: 2rem;
  color: var(--s01-text);
}

.s01-stars {
  letter-spacing: 0.2em;
  color: var(--s01-gold);
}

.s01-bonus {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(124, 58, 237, 0.26),
    rgba(124, 58, 237, 0.16)
  );
  border: 1px solid rgba(251, 191, 36, 0.16);
}

.s01-bonus strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--s01-gold);
  font-size: 1.25rem;
}

.s01-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.s01-pill {
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.12);
  color: var(--s01-text);
  font-size: 0.88rem;
}

.s01-card .s01-button {
  text-align: center;
  font-weight: 600;
}

.s01-disclaimer {
  margin: 0;
  color: rgba(250, 245, 255, 0.62);
  font-size: 0.87rem;
  text-align: center;
}

.s01-editorial {
  padding: 1.6rem;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(124, 58, 237, 0.08)
  );
  border: 1px solid rgba(255, 215, 0, 0.12);
  border-left: 3px solid var(--s01-gold);
}

.s01-editorial-mark {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--s01-gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

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

.s01-method-card,
.s01-about-card,
.s01-rg-item,
.s01-glossary-item,
.s01-legal-card,
.s01-footer-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 22px;
}

.s01-method-card {
  padding: 1.35rem;
}

.s01-method-card h3 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
  color: var(--s01-gold);
}

.s01-method-icon,
.s01-small-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(251, 191, 36, 0.12);
  color: var(--s01-gold);
}

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

.s01-glossary-item {
  overflow: hidden;
}

.s01-glossary-toggle {
  width: 100%;
  padding: 1.1rem 1.2rem;
  border: 0;
  background: transparent;
  color: var(--s01-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.s01-glossary-toggle span:last-child {
  color: var(--s01-gold);
  font-size: 1.25rem;
}

.s01-glossary-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}

.s01-glossary-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.s01-glossary-content-inner {
  padding: 0 1.2rem 1.2rem;
  color: var(--s01-text-soft);
}

.s01-about-grid,
.s01-rg-grid,
.s01-footer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.s01-about-card,
.s01-rg-item {
  padding: 1.35rem;
}

.s01-role {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: var(--s01-gold);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.s01-rg-intro {
  font-size: 1.08rem;
  color: var(--s01-text);
}

.s01-rg-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.s01-rg-checklist li {
  padding-left: 1.45rem;
  position: relative;
}

.s01-rg-checklist li::before {
  content: "!";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.14);
  color: var(--s01-gold);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
}

.s01-resource-row,
.s01-footer-links,
.s01-footer-external {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.s01-resource-row a,
.s01-footer-links a,
.s01-footer-external a {
  color: var(--s01-gold);
}

.s01-reg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.14);
  color: var(--s01-gold);
  font-weight: 700;
}

.s01-footer {
  padding-bottom: 2.6rem;
}

.s01-footer-box {
  padding: 1.35rem;
}

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

.s01-footer-note {
  margin-top: 1.3rem;
  padding: 1.2rem 1.35rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.s01-footer-note p {
  margin: 0.45rem 0;
  color: var(--s01-text-soft);
}

.s01-featured-operator {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(124, 58, 237, 0.12);
}

.s01-page-hero {
  padding-bottom: 2.8rem;
}

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

.s01-legal-card {
  padding: 1.4rem;
}

.s01-legal-card h2,
.s01-legal-card h3 {
  margin-bottom: 0.7rem;
  color: var(--s01-gold);
}

.s01-disclaimer-strip {
  margin: 1rem 0 1.6rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.11);
  color: var(--s01-text-soft);
}

.s01-age-overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  min-height: 100vh !important;
  min-height: 100dvh !important;
  z-index: 2147483646 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  background: rgba(10, 0, 20, 0.92) !important;
  margin: 0 !important;
  padding: max(0.65rem, env(safe-area-inset-top)) max(0.65rem, env(safe-area-inset-right)) max(0.65rem, env(safe-area-inset-bottom)) max(0.65rem, env(safe-area-inset-left)) !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  box-sizing: border-box !important;
}

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

.s01-age-box {
  width: min(520px, calc(100% - 18px));
  max-width: 100%;
  margin-block: auto;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(31, 16, 53, 0.98),
    rgba(18, 7, 31, 0.98)
  );
  border: 1px solid rgba(255, 215, 0, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.46);
  text-align: center;
}

.s01-age-box h2 {
  margin-bottom: 0.8rem;
  font-size: 2rem;
  color: var(--s01-gold);
}

.s01-age-actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.3rem;
}

@media (max-width: 1100px) {
  .s01-method-grid,
  .s01-about-grid,
  .s01-rg-grid,
  .s01-footer-grid,
  .s01-legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .s01-cookie-banner[data-s01-cookie-state="visible"] ~ .s01-page .s01-header,
  .s01-cookie-banner[data-s01-cookie-state="visible"] ~ .s01-header {
    padding-top: 74px;
  }

  .s01-nav-toggle {
    display: inline-flex;
  }

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

  .s01-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    background: #1a0a2e;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .s01-nav.s01-nav-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .s01-method-grid,
  .s01-glossary-grid,
  .s01-about-grid,
  .s01-rg-grid,
  .s01-footer-grid,
  .s01-legal-grid {
    grid-template-columns: 1fr;
  }

  .s01-cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .s01-cookie-actions,
  .s01-age-actions,
  .s01-featured-operator {
    flex-direction: column;
  }
}

@media (max-width: 550px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }
  body {
    overflow-x: hidden;
  }
  .s01-page,
  .s01-page * {
    max-width: 100%;
  }
  .s01-page {
    width: min(1180px, calc(100% - 12px));
  }
  .s01-header-inner {
    padding: 0.65rem 0.75rem;
    gap: 0.5rem;
    position: relative;
  }
  .s01-logo {
    min-width: 0;
    align-items: center;
  }
  .s01-logo-text {
    font-size: clamp(0.58rem, 2.9vw, 0.78rem);
    letter-spacing: 0.05em;
    line-height: 1.2;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .s01-logo-icon {
    width: 2.25rem;
    height: 2.25rem;
    flex-shrink: 0;
  }
  .s01-nav {
    left: 8px;
    right: 8px;
    padding: 12px;
  }
  .s01-nav a {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    padding-block: 0.2rem;
  }
  .s01-hero,
  .s01-page-hero {
    padding: 4.75rem 0.6rem 2.5rem;
  }
  .s01-hero h1,
  .s01-page-hero h1 {
    font-size: clamp(1.05rem, 5.8vw, 2rem);
    letter-spacing: 0.055em;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .s01-kicker {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    max-width: 100%;
  }
  .s01-cta-row {
    gap: 0.65rem;
    margin-top: 1.35rem;
  }
  .s01-button,
  .s01-link-button,
  .s01-form button,
  .s01-age-actions button,
  .s01-cookie-banner button,
  .s01-back-top {
    padding: 0.72rem 1rem;
    font-size: 0.88rem;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    min-width: 0;
  }
  .s01-hero p,
  .s01-hero .s01-subline,
  .s01-page-hero p,
  .s01-page-hero .s01-subline {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    max-width: 100%;
  }
  .s01-trustline {
    font-size: 0.82rem;
    padding-inline: 0.15rem;
  }
  .s01-disclaimer-strip {
    padding: 0.7rem 0.75rem;
    font-size: 0.82rem;
  }
  .s01-section {
    padding: 0.95rem 0.75rem;
    border-radius: 18px;
    margin-bottom: 1.25rem;
  }
  .s01-section h2 {
    font-size: clamp(1.02rem, 4.8vw, 1.55rem);
    letter-spacing: 0.06em;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .s01-methodology-table,
  table {
    font-size: 0.78rem;
    table-layout: auto;
    width: max-content;
    min-width: 100%;
  }
  .s01-methodology-table thead th,
  table thead th {
    white-space: nowrap;
  }
  .s01-methodology-table th,
  .s01-methodology-table td,
  table th,
  table td {
    padding: 0.5rem 0.4rem;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
  }
  .s01-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .s01-metric {
    padding: 1rem 0.75rem;
  }
  .s01-metric-number {
    font-size: clamp(1.45rem, 7vw, 2.2rem);
  }
  .s01-card {
    padding: 0.95rem 0.75rem;
    border-radius: 18px;
  }
  .s01-card:hover,
  .s01-card[data-hover="active"] {
    transform: none;
  }
  .s01-card-top {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.55rem;
  }
  .s01-score {
    text-align: left;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    flex-shrink: 1;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .s01-badge {
    font-size: 0.65rem;
    padding: 0.32rem 0.55rem;
    max-width: 100%;
    white-space: normal;
    text-align: left;
  }
  .s01-score strong {
    font-size: 1.35rem;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .s01-card,
  .s01-card * {
    min-width: 0;
    max-width: 100%;
  }
  .s01-card h3,
  .s01-card p,
  .s01-card a,
  .s01-card .s01-bonus,
  .s01-card .s01-offer {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .s01-logo-wrap {
    width: min(140px, 100%);
    max-width: 100%;
    height: auto;
    min-height: 4.25rem;
  }
  .s01-brand-meta {
    min-width: 0;
    width: 100%;
  }
  .s01-bonus {
    padding: 0.65rem 0.7rem;
    font-size: 0.88rem;
  }
  .s01-cookie-banner {
    padding: 10px;
    gap: 10px;
    font-size: 0.84rem;
  }
  .s01-cookie-banner p {
    margin: 0;
    flex: 1 1 100%;
    text-align: center;
  }
  .s01-footer-box {
    padding: 1.15rem 0.75rem;
    border-radius: 20px;
  }
  .s01-footer-title {
    letter-spacing: 0.08em;
    font-size: clamp(0.95rem, 4vw, 1.2rem);
    word-break: break-word;
  }
  .s01-back-top {
    right: 0.45rem;
    bottom: 5.25rem;
    width: 2.65rem;
    height: 2.65rem;
    font-size: 1.05rem;
  }
  .s01-age-overlay {
    padding: max(0.5rem, env(safe-area-inset-top)) max(0.5rem, env(safe-area-inset-right)) max(0.5rem, env(safe-area-inset-bottom)) max(0.5rem, env(safe-area-inset-left));
  }
  .s01-age-box {
    padding: 1rem 0.65rem;
    width: min(520px, calc(100% - 12px));
  }
  .s01-age-box h2 {
    font-size: clamp(1rem, 4.5vw, 1.35rem);
    letter-spacing: 0.06em;
    word-break: break-word;
  }
  .s01-rg-item {
    min-width: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .s01-rg-checklist {
    gap: 0.55rem;
    padding-inline: 0;
  }
  .s01-rg-checklist li,
  .s01-rg-checklist p {
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
    min-width: 0;
  }
  .s01-reg-badge {
    white-space: normal;
    text-align: center;
    padding: 0.28rem 0.5rem;
    font-size: 0.72rem;
    max-width: 100%;
    flex-shrink: 1;
  }
  .s01-form input,
  .s01-form textarea {
    padding: 0.75rem 0.65rem;
    font-size: 0.88rem;
  }
}
@media (max-width: 380px) {
  .s01-page {
    width: min(1180px, calc(100% - 8px));
  }
  .s01-logo-text {
    font-size: 0.52rem;
    letter-spacing: 0.02em;
  }
  .s01-hero h1,
  .s01-page-hero h1 {
    font-size: clamp(1rem, 5.2vw, 1.75rem);
  }
  .s01-header-inner {
    padding: 0.55rem;
  }
  .s01-section,
  .s01-card,
  .s01-footer-box {
    padding-inline: 0.65rem;
  }
  .s01-methodology-table th,
  .s01-methodology-table td,
  table th,
  table td {
    padding: 0.42rem 0.32rem;
    font-size: 0.72rem;
  }
}
@media (max-width: 900px) {
  .s01-header-inner {
    position: relative;
  }
}
