@font-face {
  font-family: "Oswald";
  src: url("/assets/fonts/oswald-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("/assets/fonts/oswald-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/roboto-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/roboto-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/roboto-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #09064b;
  --bg-deep: #000224;
  --bg-footer: #000118;
  --accent: #ba0038;
  --accent-glow: #ff52b9;
  --blue: #0200d4;
  --blue-soft: #80bcff;
  --tag-blue: #53a3ff;
  --tag-green: #38ffaf;
  --text: #ffffff;
  --text-90: rgba(255, 255, 255, 0.9);
  --text-80: rgba(255, 255, 255, 0.8);
  --text-70: rgba(255, 255, 255, 0.7);
  --radius: 14px;
  --container: 1240px;
  --pad-x: 100px;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: clip;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: normal;
  min-width: 320px;
  width: 100%;
  overflow-x: clip;
}

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

.hero__bg-img,
.hero__pattern img,
.page-hero__pattern img,
.section-why__bg img,
.about-media img,
.contact-media img,
.logo img {
  max-width: none;
}

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

ul {
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--pad-x) * 2);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* Logo */
.logo {
  position: relative;
  display: block;
  width: 194px;
  height: 44px;
  flex-shrink: 0;
}

.logo__icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  overflow: hidden;
}

.logo__flag-a {
  position: absolute;
  inset: 0 0 0 9.13%;
  width: 90.87%;
  height: 100%;
}

.logo__flag-b {
  position: absolute;
  inset: 7.71% 0 20.23% 0;
  width: 100%;
  height: 72.06%;
}

.logo__text {
  position: absolute;
  left: 53.2px;
  top: 7.44px;
  width: 140.037px;
  height: 29.988px;
}

.logo--sm {
  width: 98px;
  height: 22px;
}

.logo--sm .logo__icon {
  left: 1px;
  top: 1px;
  width: 20px;
  height: 20px;
}

.logo--sm .logo__text {
  left: 25.2px;
  top: 3.44px;
  width: 70.804px;
  height: 15.162px;
}

/* Header */
.site-header {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px var(--pad-x);
  background: rgba(0, 2, 36, 0.35);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 16px;
  white-space: nowrap;
}

.nav-desktop a {
  color: var(--text-70);
  transition: color 0.2s ease;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--text);
}

.header-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-badge img {
  width: 28px;
  height: 27px;
}

.header-badge span {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
}

.header-badge a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  padding: 0;
  position: relative;
}

.menu-toggle img {
  width: 23px;
  height: 2px;
  position: absolute;
  left: 4.5px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.menu-toggle img:nth-child(1) { top: 8px; }
.menu-toggle img:nth-child(2) { top: 15px; }
.menu-toggle img:nth-child(3) { top: 22px; }

.menu-toggle.is-open img:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}

.menu-toggle.is-open img:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open img:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 2, 36, 0.96);
  backdrop-filter: blur(12px);
  flex-direction: column;
  padding: 16px;
  gap: 16px;
  border-bottom: 1px solid rgba(2, 0, 212, 0.5);
  z-index: 40;
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  color: var(--text-70);
  padding: 8px 0;
}

.nav-mobile a.is-active,
.nav-mobile a:hover {
  color: var(--text);
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 12px 40px;
  border-radius: 40px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  text-transform: capitalize;
  color: var(--text);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  box-shadow: 0 4px 4px rgba(0, 4, 37, 0.2);
}

.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 10px 0 var(--accent-glow);
  pointer-events: none;
}

.btn--outline {
  border: 2px solid var(--accent-glow);
  background: transparent;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.btn--block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #000224;
  min-height: 503px;
  width: 100%;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero__bg picture {
  display: contents;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 2, 36, 0.55) 0%, rgba(0, 2, 36, 0.2) 42%, transparent 62%);
}

.hero__bg-img {
  position: absolute;
  left: 0;
  top: -85.58%;
  width: 100%;
  height: 194.09%;
  max-width: none;
  object-fit: fill;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  overflow: hidden;
}

.hero__pattern img {
  position: absolute;
  left: 0.03%;
  top: -11.84%;
  width: 99.98%;
  height: 89.18%;
  max-width: none;
  object-fit: fill;
}

.hero > .site-header {
  position: relative;
  z-index: 3;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 100px var(--pad-x);
  width: 100%;
  flex: 1;
}

.hero__heading {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}

.hero__content-inner {
  width: 100%;
  max-width: 506px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__eyebrow {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--blue-soft);
  text-transform: uppercase;
  margin: 0;
}

.hero__title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 66px;
  line-height: 74px;
  text-transform: capitalize;
  color: var(--text);
  margin: 0;
}

.hero__text {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-90);
  margin: 0;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}

.page-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  pointer-events: none;
  overflow: hidden;
}

.page-hero__pattern img {
  position: absolute;
  left: 0.03%;
  top: -11.84%;
  width: 99.98%;
  height: 89.18%;
  object-fit: cover;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  padding: 100px var(--pad-x);
}

/* Tops / Games */
.section-tops,
.section-why,
.section-faq,
.section-reviews {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.section-tops {
  padding: 20px var(--pad-x) 80px;
}

.section-title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 52px;
  text-align: center;
  text-transform: capitalize;
  color: var(--text);
  margin-bottom: 20px;
}

.games-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.game-card {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--bg-deep);
  border-radius: var(--radius);
  min-height: 244px;
}

.game-card__cover {
  width: 208px;
  height: 204px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #0a0840;
}

.game-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
}

.game-card__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.game-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 300;
  border: 1px solid;
}

.tag--blue {
  background: rgba(83, 163, 255, 0.1);
  border-color: var(--tag-blue);
}

.tag--green {
  background: rgba(56, 255, 175, 0.1);
  border-color: var(--tag-green);
}

.game-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-90);
}

.game-card__rating img {
  width: 24px;
  height: 24px;
}

.game-card__desc {
  font-size: 16px;
  color: var(--text-90);
}

/* Why choose */
.section-why {
  position: relative;
  padding: 100px var(--pad-x);
  overflow: hidden;
  background: var(--bg-deep);
}

.section-why__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.section-why__bg img {
  position: absolute;
  left: -0.02%;
  top: -19.44%;
  width: 112.17%;
  height: 100.05%;
  object-fit: cover;
}

.section-why .section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.benefits {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: var(--radius);
  min-height: 243px;
  position: relative;
  overflow: hidden;
}

.benefit--featured {
  background: var(--accent);
}

.benefit--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background: url("/assets/tire-track.webp") center / cover no-repeat;
  pointer-events: none;
}

.benefit--bordered {
  background: rgba(2, 0, 212, 0.1);
  border: 1px solid var(--blue);
  backdrop-filter: blur(4.5px);
}

.benefit__num {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.05);
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.95);
  text-shadow: none;
  position: relative;
  z-index: 1;
}

.benefit__title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
}

.benefit__text {
  font-size: 16px;
  color: var(--text-90);
  position: relative;
  z-index: 1;
}

/* FAQ */
.section-faq {
  position: relative;
  padding: 100px var(--pad-x);
  background: var(--bg-deep);
  overflow: hidden;
}

.section-faq .section-title {
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--blue);
  background: rgba(2, 0, 212, 0.1);
  backdrop-filter: blur(4.5px);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.faq-item.is-open {
  background: var(--accent);
  border-color: var(--accent);
}

.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  text-align: left;
}

.faq-item__q {
  flex: 1;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: capitalize;
}

.faq-item__icon {
  width: 34px;
  height: 34px;
  border-radius: 30px;
  background: var(--accent);
  box-shadow: 0 4px 8px rgba(0, 4, 37, 0.2), inset 0 0 4px 0 var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.faq-item.is-open .faq-item__icon {
  background: #fff;
  box-shadow: none;
}

.faq-item__icon img {
  width: 14px;
  height: 14px;
}

.faq-item__icon .icon-minus {
  display: none;
}

.faq-item.is-open .faq-item__icon .icon-plus {
  display: none;
}

.faq-item.is-open .faq-item__icon .icon-minus {
  display: block;
}

.faq-item__a {
  display: none;
  padding: 0 20px 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 1156px;
}

.faq-item.is-open .faq-item__a {
  display: block;
}

/* Reviews */
.section-reviews {
  padding: 100px var(--pad-x);
  overflow: hidden;
}

.section-reviews .section-title {
  margin-bottom: 40px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.review-card {
  background: var(--bg-deep);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card__name {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 22px;
}

.review-card__text {
  font-size: 16px;
  color: var(--text-90);
}

.review-card__stars {
  width: 134px;
  height: 22px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 550px;
  gap: 40px;
}

.about-copy h1,
.legal-content h1,
.contact-copy h1 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 52px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.about-copy p,
.contact-copy > p {
  font-size: 16px;
  color: var(--text-90);
  margin-bottom: 16px;
}

.about-copy p:last-of-type {
  margin-bottom: 0;
}

.about-stats {
  display: flex;
  gap: 20px;
}

.stat {
  width: 190px;
}

.stat__num {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 58px;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.05);
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.95);
  line-height: 1.1;
}

.stat__label {
  font-size: 14px;
  color: var(--text-90);
  margin-top: 2px;
}

.about-media {
  height: 550px;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.contact-media {
  height: 592px;
  border-radius: var(--radius);
  overflow: hidden;
}

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

.contact-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-90);
}

.contact-list img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.contact-form__fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.contact-form__success {
  display: none;
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(56, 255, 175, 0.55);
  border-radius: 8px;
  background: rgba(56, 255, 175, 0.12);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.contact-form.is-sent .contact-form__fields {
  display: none;
}

.contact-form.is-sent .contact-form__success {
  display: block;
}

.field {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
  background: transparent;
}

.field::placeholder {
  color: var(--text-80);
}

.field--textarea {
  min-height: 146px;
  resize: vertical;
  align-items: flex-start;
}

.contact-form .btn {
  align-self: flex-start;
}

/* Legal */
.legal-content {
  max-width: 1240px;
}

.legal-content .lead,
.legal-content p,
.legal-content li {
  font-size: 16px;
  color: var(--text-90);
  margin-bottom: 16px;
}

.legal-content h2 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin: 8px 0 12px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 4px;
}

.legal-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--blue-soft);
}

/* Footer */
.site-footer {
  background: var(--bg-footer);
  padding: 40px var(--pad-x);
}

.footer-top {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 40px;
}

.footer-brand {
  width: 610px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.footer-brand__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand__info p {
  font-size: 16px;
  color: var(--text-90);
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 60px;
}

.footer-badges img {
  display: block;
}

.footer-badges .badge-18 {
  width: 40px;
  height: 40px;
}

.footer-badges .badge-gamcare {
  width: 135px;
  height: 39px;
}

.footer-badges .badge-gambleaware {
  width: 130px;
  height: 40px;
}

.footer-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 22px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col a {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-90);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-copy {
  text-align: center;
  font-size: 16px;
  font-weight: 300;
}

/* Cookie */
.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 100;
  width: min(532px, calc(100% - 32px));
  background: var(--bg-deep);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
  animation: cookieIn 0.35s ease;
}

@keyframes cookieIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.cookie-banner h2 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.cookie-banner p {
  font-size: 16px;
  color: var(--text-80);
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.cookie-banner__actions .btn {
  flex: 1;
  min-width: 0;
  padding-left: 16px;
  padding-right: 16px;
}

/* Motion — avoid opacity:0 on LCP text; transform-only below the fold */
@media (prefers-reduced-motion: no-preference) {
  .game-card,
  .benefit,
  .review-card {
    animation: fadeRise 0.45s ease both;
  }

  .game-card:nth-child(2),
  .benefit:nth-child(2),
  .review-card:nth-child(2) { animation-delay: 0.06s; }
  .game-card:nth-child(3),
  .benefit:nth-child(3),
  .review-card:nth-child(3) { animation-delay: 0.12s; }
  .game-card:nth-child(4),
  .review-card:nth-child(4) { animation-delay: 0.18s; }
}

@keyframes fadeRise {
  from { transform: translateY(12px); }
  to { transform: translateY(0); }
}

/* Tablet */
@media (max-width: 1100px) {
  :root {
    --pad-x: 40px;
  }

  .hero {
    min-height: 440px;
  }

  .hero__content {
    padding: 60px var(--pad-x);
  }

  .hero__title {
    font-size: 52px;
    line-height: 60px;
  }

  .section-title,
  .about-copy h1,
  .legal-content h1,
  .contact-copy h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .game-card {
    flex-direction: column;
  }

  .game-card__cover {
    width: 100%;
    height: 180px;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-top {
    flex-wrap: wrap;
  }

  .footer-col {
    min-width: 200px;
  }

  .about-media,
  .contact-media {
    height: 420px;
  }

  .about-copy {
    min-height: 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --pad-x: 16px;
  }

  .nav-desktop {
    display: none;
  }

  .site-header {
    padding: 12px 16px;
    gap: 8px;
  }

  .site-header .logo {
    width: 98px;
    height: 22px;
    flex-shrink: 0;
  }

  .site-header .logo .logo__icon {
    left: 1px;
    top: 1px;
    width: 20px;
    height: 20px;
  }

  .site-header .logo .logo__text {
    left: 25.2px;
    top: 3.44px;
    width: 70.804px;
    height: 15.162px;
  }

  .header-badge img {
    width: 23px;
    height: 22px;
  }

  .header-badge span {
    font-size: 10px;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 220px;
  }

  .hero__bg::after {
    background: linear-gradient(90deg, rgba(0, 2, 36, 0.88) 0%, rgba(0, 2, 36, 0.62) 38%, rgba(0, 2, 36, 0.15) 58%, transparent 72%);
  }

  .hero__bg-img {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% 42%;
  }

  .hero__pattern {
    opacity: 0.45;
  }

  .hero__pattern img {
    left: 0;
    top: 0;
    width: 100%;
    height: 55%;
    object-fit: cover;
    object-position: top right;
  }

  .hero__content {
    padding: 16px 16px 24px;
    gap: 10px;
    min-height: 168px;
    justify-content: center;
  }

  .hero__content-inner {
    max-width: min(260px, 58vw);
    gap: 10px;
  }

  .hero__title {
    font-size: clamp(26px, 8.5vw, 36px);
    line-height: 1.2;
  }

  .hero__eyebrow {
    font-size: 12px;
  }

  .hero__text {
    font-size: clamp(12px, 3.4vw, 13px);
    color: rgba(255, 255, 255, 0.88);
    max-width: 22em;
  }

  .page-hero__inner {
    padding: 40px 16px;
  }

  .section-tops,
  .section-why,
  .section-faq,
  .section-reviews,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero__pattern {
    display: none;
  }

  .section-tops {
    padding-top: 10px;
    padding-bottom: 40px;
  }

  .section-why,
  .section-faq,
  .section-reviews {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-title,
  .about-copy h1,
  .legal-content h1,
  .contact-copy h1 {
    font-size: 28px;
    line-height: 34px;
    text-align: left;
  }

  .section-faq .section-title,
  .section-reviews .section-title,
  .section-why .section-title,
  .section-tops .section-title {
    text-align: center;
  }

  .games-grid,
  .benefits,
  .reviews-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .game-card {
    flex-direction: row;
    min-height: 0;
    padding: 16px;
  }

  .game-card__cover {
    width: 136px;
    height: 128px;
  }

  .game-card__body {
    gap: 12px;
  }

  .game-card .btn {
    width: 100%;
  }

  .benefit {
    min-height: 0;
  }

  .faq-item__q {
    font-size: 18px;
  }

  .about-stats {
    flex-wrap: wrap;
  }

  .stat {
    width: calc(50% - 10px);
  }

  .stat__num {
    font-size: 42px;
  }

  .about-media,
  .contact-media {
    height: 280px;
    order: -1;
  }

  .contact-grid .contact-media {
    order: -1;
  }

  .contact-form .btn {
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-brand {
    gap: 24px;
  }

  .footer-badges {
    gap: 24px;
    flex-wrap: wrap;
  }

  .footer-badges .badge-gamcare {
    width: 110px;
  }

  .footer-badges .badge-gambleaware {
    width: 110px;
  }

  .site-footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-copy {
    font-size: 14px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .game-card__tags {
    gap: 6px;
  }

  .tag {
    font-size: 12px;
    padding: 3px 8px;
  }

  .game-card__desc {
    font-size: 14px;
  }

  .header-badge span {
    display: none;
  }

  .hero__bg-img {
    object-position: 78% 40%;
  }

  .hero__content-inner {
    max-width: min(200px, 56vw);
  }

  .hero__title {
    font-size: 28px;
    line-height: 1.15;
  }

  .game-card {
    flex-direction: column;
  }

  .game-card__cover {
    width: 100%;
    height: 160px;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding: 10px 12px;
  }

  .hero__content {
    padding: 12px 12px 20px;
  }

  .hero__content-inner {
    max-width: 54vw;
  }

  .hero__title {
    font-size: 24px;
  }

  .hero__text {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .game-card__meta .game-card__tags {
    order: 0;
  }

  .game-card__body .btn {
    margin-top: auto;
  }
}
