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

body {
  margin: 0;
  background: #0A0A0B;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #00E5C0;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #33ecc9;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #0A0A0B;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.container--narrow {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.container--mid {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.top-bar {
  background: #111113;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 10px 24px;
}

.top-bar__text {
  max-width: 1240px;
  margin: 0 auto;
  color: #A0A0A8;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  font-weight: 400;
}

.top-bar__link {
  color: #00E5C0;
  font-weight: 500;
}

.header {
  background: #0A0A0B;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.header__nav-link {
  background: #161618;
  border: 1px solid rgba(255,255,255,0.08);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.header__nav-link:hover {
  background: #1C1C1F;
  color: #00E5C0;
}

.header__menu-btn {
  display: none;
  background: #161618;
  border: 1px solid rgba(255,255,255,0.08);
  color: #FFFFFF;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 20px;
  line-height: 1;
}

.hero {
  background: #0A0A0B;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: blur(6px);
  z-index: 0;
}

.hero__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__title {
  color: #FFFFFF;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__title-accent {
  color: #00E5C0;
}

.hero__text {
  color: #FFFFFF;
  opacity: 0.85;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 400;
  max-width: 560px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.badge {
  background: #161618;
  border: 1px solid rgba(255,255,255,0.08);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
}

.btn-primary {
  display: inline-block;
  background: #00E5C0;
  color: #0A0A0B;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 999px;
  transition: background 0.2s ease;
  text-align: center;
}

.btn-primary:hover {
  background: #33ecc9;
  color: #0A0A0B;
}

.featured-card {
  background: #161618;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
}

.featured-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
}

.featured-card__label {
  color: #00E5C0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.featured-card__title {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.featured-card__desc {
  color: #A0A0A8;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 400;
}

.featured-card__stats {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.featured-card__stat-value {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
}

.featured-card__stat-label {
  color: #A0A0A8;
  font-size: 12px;
  margin-top: 4px;
  font-weight: 400;
}

.leaderboard {
  background: #0A0A0B;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.leaderboard__title {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.leaderboard__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.leaderboard__row {
  display: flex;
  justify-content: space-between;
}

.leaderboard__name {
  color: #A0A0A8;
  font-size: 13px;
  font-weight: 500;
}

.leaderboard__score {
  color: #00E5C0;
  font-size: 13px;
  font-weight: 600;
}

.btn-play {
  display: block;
  text-align: center;
  background: #00E5C0;
  color: #0A0A0B;
  font-size: 15px;
  font-weight: 600;
  padding: 14px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.btn-play:hover {
  background: #33ecc9;
  color: #0A0A0B;
}

.section--alt {
  background: #111113;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.section--dark {
  background: #0A0A0B;
}

.section {
  padding: 96px 24px;
}

.section__title {
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

.section__subtitle {
  color: #A0A0A8;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 auto 48px;
  font-weight: 400;
  text-align: center;
  max-width: 680px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.game-card {
  background: #161618;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
}

.game-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.game-card__body {
  padding: 20px;
}

.game-card__title {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.game-card__desc {
  color: #A0A0A8;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 400;
}

.game-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.tag {
  background: #0A0A0B;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 999px;
}

.tag--white {
  color: #FFFFFF;
}

.tag--muted {
  color: #A0A0A8;
}

.btn-play--sm {
  display: block;
  text-align: center;
  background: #00E5C0;
  color: #0A0A0B;
  font-size: 14px;
  font-weight: 600;
  padding: 11px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.btn-play--sm:hover {
  background: #33ecc9;
  color: #0A0A0B;
}

.about__text {
  color: #FFFFFF;
  opacity: 0.85;
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 48px;
  font-weight: 400;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #161618;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
}

.feature-card__title {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card__text {
  color: #A0A0A8;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
}

.company-bar {
  max-width: 1240px;
  margin: 48px auto 0;
  background: #161618;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.company-bar__label {
  color: #A0A0A8;
  font-size: 12px;
  margin-bottom: 4px;
  font-weight: 500;
}

.company-bar__value {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
}

.map-wrap {
  max-width: 1240px;
  margin: 24px auto 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.disclaimer__title {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}

.disclaimer-card {
  background: #161618;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
}

.disclaimer-card--accent {
  border-color: rgba(0,229,192,0.28);
}

.disclaimer-card__title {
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
}

.disclaimer-card__text {
  color: #A0A0A8;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
}

.disclaimer-card--accent .disclaimer-card__text {
  color: #FFFFFF;
}

.help-title {
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.help-subtitle {
  color: #A0A0A8;
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: 400;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.help-card {
  background: #161618;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
}

.help-card--dark {
  background: #0A0A0B;
}

.help-card__logo {
  height: 20px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.help-card__logo--sm {
  height: 18px;
}

.help-card__text {
  color: #A0A0A8;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 400;
}

.footer {
  background: #111113;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 24px 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.footer__logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer__info {
  color: #A0A0A8;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 4px;
  font-weight: 400;
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer-badge {
  background: #161618;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
}

.footer-badge--white {
  color: #FFFFFF;
  font-weight: 600;
}

.footer-badge--muted {
  color: #A0A0A8;
}

.footer__col-title {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  color: #A0A0A8;
  font-size: 14px;
  font-weight: 400;
}

.footer__link:hover {
  color: #00E5C0;
}

.footer__divider {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__divider--sm {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__divider--xs {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__disclaimer-title {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer__disclaimer-text {
  color: #A0A0A8;
  font-size: 14px;
  line-height: 1.7;
  max-width: 880px;
  font-weight: 400;
}

.footer__help-title {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer__help-subtitle {
  color: #A0A0A8;
  font-size: 14px;
  line-height: 1.7;
  max-width: 880px;
  font-weight: 400;
  margin-bottom: 24px;
}

.footer__copyright {
  color: #A0A0A8;
  font-size: 13px;
  font-weight: 400;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-link {
  color: #A0A0A8;
  font-size: 14px;
  font-weight: 400;
}

.social-link:hover {
  color: #00E5C0;
}

.page-header {
  background: #111113;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 64px 24px 48px;
}

.page-header__title {
  color: #FFFFFF;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
}

.page-header__meta {
  color: #A0A0A8;
  font-size: 15px;
  font-weight: 500;
}

.page-content {
  flex: 1;
  padding: 64px 24px 96px;
}

.page-content__inner {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.page-intro {
  color: #FFFFFF;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
}

.policy-section__title {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.policy-section__text {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
}

.policy-highlight {
  background: #161618;
  border: 1px solid rgba(0,229,192,0.28);
  border-radius: 16px;
  padding: 28px 32px;
}

.policy-box {
  background: #161618;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px 24px;
}

.policy-box__title {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.policy-box__text {
  color: #A0A0A8;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
}

.policy-boxes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-card {
  background: #161618;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
}

.contact-card__label {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-card__value {
  color: #00E5C0;
  font-size: 15px;
  font-weight: 500;
}

.contact-card__text {
  color: #A0A0A8;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}

.company-details {
  background: #161618;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.company-details__name {
  color: #FFFFFF;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.company-details__info {
  color: #A0A0A8;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}

.player-support {
  background: #161618;
  border: 1px solid rgba(0,229,192,0.28);
  border-radius: 16px;
  padding: 28px 32px;
}

.player-support__title {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.player-support__text {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 400;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #161618;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  z-index: 1000;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  color: #A0A0A8;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  flex: 1;
  min-width: 280px;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.cookie-banner__btn--accept {
  background: #00E5C0;
  color: #0A0A0B;
}

.cookie-banner__btn--accept:hover {
  background: #33ecc9;
}

.cookie-banner__btn--decline {
  background: #0A0A0B;
  border: 1px solid rgba(255,255,255,0.08);
  color: #A0A0A8;
}

.cookie-banner__btn--decline:hover {
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.2);
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(10,10,11,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate.is-hidden {
  display: none;
}

.age-gate__card {
  background: #161618;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.age-gate__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: #0A0A0B;
  border: 2px solid #00E5C0;
  border-radius: 50%;
  color: #00E5C0;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}

.age-gate__title {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.age-gate__text {
  color: #A0A0A8;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 32px;
  font-weight: 400;
}

.age-gate__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.age-gate__btn {
  font-size: 16px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.age-gate__btn--confirm {
  background: #00E5C0;
  color: #0A0A0B;
}

.age-gate__btn--confirm:hover {
  background: #33ecc9;
}

.age-gate__btn--exit {
  background: #0A0A0B;
  border: 1px solid rgba(255,255,255,0.08);
  color: #A0A0A8;
}

.age-gate__btn--exit:hover {
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.2);
}

.lead-form {
  background: #161618;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
}

.lead-form__title {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.lead-form__subtitle {
  color: #A0A0A8;
  font-size: 14px;
  margin-bottom: 24px;
  font-weight: 400;
}

.lead-form__group {
  margin-bottom: 16px;
}

.lead-form__label {
  display: block;
  color: #A0A0A8;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}

.lead-form__input {
  width: 100%;
  background: #0A0A0B;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.lead-form__input:focus {
  border-color: #00E5C0;
  outline: none;
}

.lead-form__input::placeholder {
  color: #555;
}

.lead-form__textarea {
  width: 100%;
  background: #0A0A0B;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 15px;
  font-family: inherit;
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.2s ease;
}

.lead-form__textarea:focus {
  border-color: #00E5C0;
  outline: none;
}

.lead-form__textarea::placeholder {
  color: #555;
}

.lead-form__submit {
  width: 100%;
  background: #00E5C0;
  color: #0A0A0B;
  font-size: 15px;
  font-weight: 600;
  padding: 14px;
  border-radius: 999px;
  margin-top: 8px;
  transition: background 0.2s ease;
}

.lead-form__submit:hover {
  background: #33ecc9;
}

.lead-form__success {
  display: none;
  text-align: center;
  padding: 20px 0;
  color: #00E5C0;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__title {
    font-size: 40px;
  }

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

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

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .company-bar {
    gap: 24px;
  }

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

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }

  .header__nav.is-open {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 3;
  }

  .header__nav-link {
    text-align: center;
    width: 100%;
  }

  .header__menu-btn {
    display: block;
  }

  .hero {
    padding: 48px 16px;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__text {
    font-size: 15px;
  }

  .section {
    padding: 64px 16px;
  }

  .section__title {
    font-size: 28px;
  }

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

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .company-bar {
    flex-direction: column;
    gap: 16px;
  }

  .page-header__title {
    font-size: 28px;
  }

  .disclaimer__title {
    font-size: 22px;
  }

  .featured-card {
    padding: 20px;
  }

  .featured-card__img {
    height: 140px;
  }

  .top-bar {
    padding: 8px 16px;
  }

  .top-bar__text {
    font-size: 12px;
  }

  .age-gate__card {
    padding: 32px 24px;
  }

  .age-gate__title {
    font-size: 24px;
  }

  .age-gate__actions {
    flex-direction: column;
  }

  .age-gate__btn {
    width: 100%;
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }

  .map-wrap iframe {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 28px;
  }

  .btn-primary {
    padding: 14px 28px;
    font-size: 15px;
    width: 100%;
    text-align: center;
  }

  .featured-card__stats {
    flex-direction: column;
    gap: 12px;
  }

  .section__title {
    font-size: 24px;
  }

  .page-header__title {
    font-size: 24px;
  }

  .policy-section__title {
    font-size: 20px;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 14px;
  }

  .hero__title {
    font-size: 24px;
  }

  .hero__text {
    font-size: 14px;
  }

  .header__inner {
    padding: 12px 12px;
  }

  .section {
    padding: 48px 12px;
  }

  .hero {
    padding: 32px 12px;
  }

  .hero__badges {
    gap: 6px;
  }

  .badge {
    font-size: 11px;
    padding: 6px 10px;
  }

  .featured-card {
    padding: 16px;
  }

  .game-card__body {
    padding: 16px;
  }

  .footer__inner {
    padding: 40px 12px 24px;
  }

  .page-header {
    padding: 40px 12px 32px;
  }

  .page-content {
    padding: 40px 12px 60px;
  }

  .disclaimer-card {
    padding: 20px;
  }

  .policy-highlight {
    padding: 20px;
  }

  .lead-form {
    padding: 20px;
  }

  .age-gate__card {
    padding: 24px 16px;
  }

  .age-gate__badge {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .age-gate__title {
    font-size: 20px;
  }

  .map-wrap iframe {
    height: 200px;
  }
}
