:root {
  --bg: #f7f7fb;
  --bg-soft: #ededf4;
  --surface: #ffffff;
  --surface-strong: #fbfbfe;
  --text: #171724;
  --text-soft: #5c5c6d;
  --border: rgba(23, 23, 36, 0.12);
  --dark: #11111f;
  --dark-soft: #1b1b2c;
  --primary: #ff267e;
  --primary-strong: #d91865;
  --secondary: #6a5cff;
  --secondary-soft: rgba(106, 92, 255, 0.13);
  --highlight: #ff92be;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 16px 36px rgba(17, 17, 31, 0.08);
  --shadow-md: 0 28px 56px rgba(17, 17, 31, 0.16);
  --shell: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 38, 126, 0.055), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  line-height: 1.65;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(255, 38, 126, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 40;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--dark);
  color: #ffffff;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(17, 17, 31, 0.08);
  backdrop-filter: blur(14px);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 170px;
  height: auto;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.05rem;
  line-height: 1.2;
}

.brand-copy span {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.3;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.96rem;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.main-nav a:hover {
  background: rgba(255, 38, 126, 0.1);
  color: var(--text);
  transform: translateY(-1px);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(255, 38, 126, 0.25);
}

.button-primary:hover {
  background: var(--primary-strong);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  border-color: rgba(17, 17, 31, 0.12);
}

.button-secondary:hover {
  box-shadow: var(--shadow-sm);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  min-height: 780px;
  background: var(--dark);
}

.hero-media,
.hero-layer {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-layer {
  background:
    linear-gradient(105deg, rgba(17, 17, 31, 0.94) 18%, rgba(17, 17, 31, 0.72) 54%, rgba(17, 17, 31, 0.34) 100%),
    linear-gradient(180deg, rgba(255, 38, 126, 0.06) 0%, rgba(17, 17, 31, 0.62) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.75fr);
  gap: 42px;
  align-items: end;
  min-height: 780px;
  padding: 110px 0 78px;
}

.hero-copy {
  max-width: 700px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.breadcrumbs a:hover {
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow-dark {
  background: rgba(255, 38, 126, 0.1);
  color: var(--primary-strong);
}

.hero h1 {
  margin: 0 0 18px;
  max-width: 12ch;
  font-size: clamp(2.8rem, 4vw, 4.7rem);
  line-height: 0.98;
}

.hero-lead {
  margin: 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.hero-actions {
  margin-top: 28px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

.hero-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  box-shadow: var(--shadow-md);
}

.panel-label {
  margin: 0 0 16px;
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-stats {
  display: grid;
  gap: 14px;
  margin: 0;
}

.hero-stats div {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.hero-stats div:first-child {
  border-top: 0;
  padding-top: 0;
}

.hero-stats dt {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.hero-stats dd {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
}

.panel-note {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.panel-note img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 22px;
}

.panel-note p {
  margin: 0;
  color: var(--text-soft);
}

.signal-strip,
.formats-band,
.games-showcase,
.review-band,
.faq-band,
.brand-rail {
  padding: 84px 0;
}

.signal-strip {
  position: relative;
  margin-top: -34px;
  z-index: 2;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.signal-card {
  padding: 26px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
}

.signal-card:nth-child(2n) {
  background: rgba(251, 251, 254, 0.96);
}

.signal-kicker {
  margin: 0 0 12px;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.signal-card h2 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.signal-card p:last-child {
  margin-bottom: 0;
  color: var(--text-soft);
}

.formats-band {
  background: linear-gradient(180deg, rgba(106, 92, 255, 0.06), rgba(106, 92, 255, 0));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading-compact {
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.06;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.02rem;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.format-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.format-index {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--secondary-soft);
  color: #5144cf;
  font-size: 0.86rem;
  font-weight: 800;
}

.format-card h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.2;
}

.format-card p {
  margin: 0;
  color: var(--text-soft);
}

.games-showcase {
  background: var(--dark);
  color: #ffffff;
}

.games-showcase .section-heading h2,
.games-showcase .section-heading p:last-child {
  color: #ffffff;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.game-card {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 220px;
  aspect-ratio: 1.42;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.game-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 31, 0.68);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.game-card__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.game-card strong {
  max-width: 100%;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.game-card__content > span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.game-card__content > span:not(.game-card__cta) {
  display: none;
}

.game-card__cta {
  width: auto;
  min-width: 96px;
  margin-top: 0;
  padding: 13px 22px;
  border-radius: 6px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(255, 38, 126, 0.32);
  opacity: 1;
  transform: none;
  transition: background-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.game-card:hover img,
.game-card:focus-visible img {
  transform: scale(1.05);
  filter: blur(4px) brightness(0.72) saturate(0.9);
}

.game-card:hover::after,
.game-card:focus-visible::after {
  opacity: 1;
}

.game-card:hover .game-card__cta,
.game-card:focus-visible .game-card__cta {
  transform: translateY(-1px);
}

.game-card:hover .game-card__cta {
  background: #ff5b9e;
  box-shadow: 0 14px 30px rgba(255, 38, 126, 0.42);
}

.game-card:hover .game-card__content,
.game-card:focus-visible .game-card__content {
  opacity: 1;
  transform: translateY(0);
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.review-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.sidebar-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.sidebar-card h2 {
  margin: 0 0 18px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.sidebar-card-accent {
  background: linear-gradient(180deg, rgba(106, 92, 255, 0.1), rgba(106, 92, 255, 0.02));
}

.sidebar-card-dark {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.08);
}

.sidebar-card-dark h2,
.sidebar-card-dark p,
.sidebar-card-dark li {
  color: rgba(255, 255, 255, 0.88);
}

.sidebar-tag {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mini-stats {
  display: grid;
  gap: 14px;
  margin: 0;
}

.mini-stats div {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.mini-stats div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.mini-stats dt {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.mini-stats dd {
  margin: 0;
  font-weight: 700;
  line-height: 1.35;
}

.sidebar-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.sidebar-list-tight {
  gap: 10px;
}

.review-content {
  display: grid;
  gap: 22px;
}

.content-block {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(17, 17, 31, 0.08);
  box-shadow: var(--shadow-sm);
}

.content-block h2 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.1;
}

.content-block p {
  margin: 0 0 16px;
  color: var(--text-soft);
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-lead {
  font-size: 1.08rem;
  line-height: 1.75;
}

.table-shell {
  overflow-x: auto;
  margin-top: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: #ffffff;
}

thead {
  background: rgba(255, 38, 126, 0.08);
}

th,
td {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(17, 17, 31, 0.08);
  text-align: left;
  vertical-align: top;
}

tbody tr:last-child td {
  border-bottom: 0;
}

th {
  color: var(--text);
  font-size: 0.94rem;
}

td {
  color: var(--text-soft);
}

.update-note {
  color: var(--primary-strong);
  font-weight: 700;
}

.page-hero .breadcrumbs {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero .breadcrumbs a:hover {
  color: #ffffff;
}

.faq-band {
  background: linear-gradient(180deg, rgba(255, 38, 126, 0.055), rgba(255, 38, 126, 0));
}

.signal-strip,
.formats-band,
.games-showcase,
.review-band,
.faq-band,
.brand-rail {
  content-visibility: auto;
  contain-intrinsic-size: auto 680px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 22px 62px 22px 24px;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.4;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 24px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 38, 126, 0.1);
  color: var(--primary-strong);
  font-size: 1.2rem;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-answer {
  padding: 0 24px 24px;
}

.faq-answer p {
  margin: 0;
  color: var(--text-soft);
}

.brand-rail {
  padding-top: 64px;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.providers-grid img,
.support-grid img {
  width: 100%;
  height: 78px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, #242438 0%, #171724 100%);
  padding: 13px 18px;
  box-shadow: 0 14px 30px rgba(17, 17, 31, 0.14);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.providers-grid img:hover,
.support-grid a:hover img {
  transform: translateY(-3px);
  border-color: rgba(255, 38, 126, 0.7);
}

.providers-grid img[src$="greentube.svg"] {
  padding: 8px 10px;
  object-position: center;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.support-grid a {
  display: block;
}

.site-footer {
  color: #ffffff;
  background: linear-gradient(180deg, #171724 0%, #10101b 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 0.7fr;
  gap: 28px;
  align-items: start;
  padding: 54px 0 28px;
}

.brand-footer img {
  width: 160px;
  height: auto;
  background: transparent;
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.age-badge {
  width: fit-content;
  min-width: 68px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 38, 126, 0.16);
  color: #ff9bc5;
  font-weight: 800;
  text-align: center;
}

.footer-copy p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.74);
}

.footer-copy p:last-child {
  margin-bottom: 0;
}

.footer-links {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

.inner-main {
  padding: 72px 0 96px;
}

.page-hero {
  margin-bottom: 24px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1b1b2c 0%, #11111f 100%);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.page-hero h1 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.page-hero p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.content-page {
  display: grid;
  gap: 22px;
}

.content-panel {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(17, 17, 31, 0.08);
  box-shadow: var(--shadow-sm);
}

.content-panel h2 {
  margin: 0 0 14px;
  font-size: 1.5rem;
  line-height: 1.15;
}

.content-panel p,
.content-panel li {
  color: var(--text-soft);
}

.content-panel p:last-child {
  margin-bottom: 0;
}

.content-panel ul {
  margin: 0;
  padding-left: 20px;
}

.notice-card {
  margin: 20px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--primary);
  background: linear-gradient(180deg, rgba(255, 38, 126, 0.08), rgba(255, 38, 126, 0.02));
}

@media (max-width: 1120px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 92px 0 68px;
  }

  .hero h1 {
    max-width: 12ch;
  }

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

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

  .review-layout {
    grid-template-columns: 1fr;
  }

  .review-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .providers-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .support-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .site-header {
    position: static;
  }

  .header-row {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(2.4rem, 8vw, 4rem);
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .signal-strip,
  .formats-band,
  .games-showcase,
  .review-band,
  .faq-band,
  .brand-rail {
    padding: 68px 0;
  }

  .section-heading h2 {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }

  .review-sidebar {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .shell {
    width: min(var(--shell), calc(100% - 20px));
  }

  .header-actions,
  .hero-actions {
    width: 100%;
  }

  .header-actions .button,
  .hero-actions .button {
    flex: 1 1 0;
  }

  .brand {
    width: 100%;
  }

  .brand img {
    width: 142px;
    height: auto;
  }

  .hero-grid {
    padding: 72px 0 56px;
    gap: 24px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .signal-grid,
  .format-grid,
  .games-grid,
  .providers-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .signal-strip {
    margin-top: -22px;
  }

  .signal-card,
  .format-card,
  .content-block,
  .sidebar-card,
  .hero-panel,
  .page-hero,
  .content-panel {
    border-radius: 18px;
  }

  .content-block,
  .sidebar-card,
  .hero-panel,
  .page-hero,
  .content-panel {
    padding: 22px;
  }

  .faq-item summary {
    padding: 20px 56px 20px 20px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }

  .panel-note {
    grid-template-columns: 1fr;
  }

  th,
  td {
    padding: 13px 14px;
  }

  .inner-main {
    padding: 56px 0 72px;
  }
}

@media (hover: none) {
  .game-card::after,
  .game-card__content {
    opacity: 1;
    transform: translateY(0);
  }

  .game-card img {
    filter: brightness(0.78) saturate(0.95);
  }

  .game-card__cta {
    opacity: 1;
    transform: translateY(0);
  }
}
