/* Bruno-Salomone.com — styles matching Figma mockup */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url('/fonts/inter-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: optional;
  src: url('/fonts/inter-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: optional;
  src: url('/fonts/inter-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url('/fonts/inter-700.woff2') format('woff2');
}

:root {
  --dark: #181e3d;
  --blue: #057eff;
  --blue-70: rgba(5, 126, 255, 0.7);
  --blue-deep: #0a5fbf;
  --light-bg: #f4f9ff;
  --border: #d8e6f5;
  --border-dark: #768ca3;
  --text-muted: rgba(24, 30, 61, 0.6);
  --text-placeholder: rgba(24, 30, 61, 0.3);
  --white: #ffffff;
  --max-w: 1240px;
  --pad-x: 130px;
  --radius: 20px;
  --radius-sm: 10px;
  --radius-pill: 100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font-family: inherit;
}

/* ========== AGE GATE ========== */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(24, 30, 61, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.age-gate__modal {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 20px;
  max-width: 770px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  position: relative;
}

.age-gate__close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  line-height: 0;
}

.age-gate__title {
  font-size: 32px;
  font-weight: 700;
  color: white;
  text-align: center;
}

.age-gate__text {
  font-size: 16px;
  font-weight: 500;
  color: white;
  text-align: center;
}

.age-gate__btn {
  width: 100%;
  padding: 20px;
  border-radius: var(--radius-pill);
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
}

.age-gate__btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.age-gate__btn--yes {
  background: var(--blue-deep);
  color: white;
}

.age-gate__btn--no {
  background: transparent;
  color: white;
  border: 1px solid var(--blue-70);
}

/* ========== HEADER ========== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px var(--pad-x);
}

.header__logo {
  width: 141px;
  height: 79px;
  object-fit: contain;
}

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

.header__link {
  font-size: 12px;
  font-weight: 500;
  color: var(--dark);
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.header__link.active,
.header__link:hover {
  border-bottom-color: var(--dark);
}

.header__menu {
  display: contents;
}

.header__socials {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* Burger */
.burger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
}

.burger span {
  position: absolute;
  left: 2px;
  right: 2px;
  height: 3px;
  border-radius: 2px;
  background: var(--dark);
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}

.burger span:nth-child(1) {
  top: 11px;
}

.burger span:nth-child(2) {
  top: 20.5px;
}

.burger span:nth-child(3) {
  top: 30px;
}

.burger[aria-expanded="true"] span:nth-child(1) {
  top: 20.5px;
  transform: rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  top: 20.5px;
  transform: rotate(-45deg);
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.social-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-btn img {
  width: 24px;
  height: 24px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 828px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 100px var(--pad-x) 30px;
  gap: 40px;
}

.hero__left {
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
}

.hero__subtitle {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
}

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

.badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--dark);
  border-radius: var(--radius-pill);
  gap: 8px;
  padding: 10px 18px;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  width: fit-content;
}

.hero__right {
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-top: 20px;
}

.hero__desc {
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-deep);
  color: white;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  text-align: center;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ========== SECTIONS COMMON ========== */
.section {
  padding: 80px var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.section__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: var(--dark);
}

.section__desc {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  max-width: var(--max-w);
  color: var(--dark);
}

/* ========== WHY US ========== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: var(--max-w);
}

.why-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.why-card__icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--blue-70);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.why-card__icon--flag img {
  width: 48px;
  height: 24px;
  border-radius: 3px;
}

.badge__flag {
  flex-shrink: 0;
  width: 24px;
  height: 12px;
  border-radius: 2px;
}

.why-card__title {
  font-size: 24px;
  font-weight: 700;
}

.why-card__text {
  font-size: 16px;
  font-weight: 500;
}

.mission {
  background: var(--blue-deep);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  width: 100%;
  max-width: var(--max-w);
  color: white;
}

.mission__icon {
  width: 73px;
  height: 73px;
}

.mission__title {
  font-size: 24px;
  font-weight: 700;
}

.mission__text {
  font-size: 16px;
  font-weight: 500;
}

/* ========== TOP PICKS ========== */
.table-wrap {
  width: 100%;
  max-width: var(--max-w);
  overflow-x: auto;
}

.picks-table {
  width: 100%;
  min-width: 860px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.picks-table thead th {
  background: var(--blue-deep);
  color: white;
  font-size: 20px;
  font-weight: 700;
  padding: 20px;
  text-align: center;
}

.picks-table thead th:first-child {
  text-align: left;
  border-radius: var(--radius-sm) 0 0 0;
}

.picks-table thead th:last-child {
  border-radius: 0 var(--radius-sm) 0 0;
}

.picks-table tbody td {
  background: var(--light-bg);
  font-size: 16px;
  font-weight: 500;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.picks-table tbody tr:last-child td {
  border-bottom: none;
}

.picks-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 var(--radius-sm);
}

.picks-table tbody tr:last-child td:last-child {
  border-radius: 0 0 var(--radius-sm) 0;
}

.picks-table tbody td:first-child {
  text-align: left;
}

.badge-best {
  display: inline-flex;
  background: var(--border);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-pill);
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.disclaimer {
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  text-align: center;
  max-width: var(--max-w);
  color: var(--dark);
}

/* ========== CATEGORIES ========== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: var(--max-w);
}

.cat-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  min-height: 325px;
  background: radial-gradient(circle at center, #d8e6f5 0%, #f4f9ff 100%);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(5, 126, 255, 0.15);
}

.cat-card__img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.cat-card__title {
  font-size: 24px;
  font-weight: 700;
}

.cat-card__text {
  font-size: 16px;
  font-weight: 500;
}

/* ========== GAME ========== */
.game-section {
  position: relative;
  padding-bottom: 0;
}

.game-placeholder {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 555px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 20px;
  background: var(--dark);
}

.game-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.game-placeholder a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  font-weight: 700;
  color: white;
  text-decoration: underline;
}

/* ========== BLOG ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: var(--max-w);
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: radial-gradient(circle at center, #d8e6f5 0%, #f4f9ff 100%);
  transition: transform 0.2s;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card__img {
  width: 100%;
  height: 232px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.blog-card__title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.blog-card__text {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted);
}

.blog-card__meta span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-card__meta img {
  width: 24px;
  height: 24px;
}

/* ========== FAQ ========== */
.faq-wrap {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: var(--max-w);
  align-items: stretch;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 580px;
}

.faq-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-card__num {
  font-size: 48px;
  font-weight: 700;
  color: var(--blue-deep);
}

.faq-card__q {
  font-size: 24px;
  font-weight: 700;
}

.faq-card__line {
  height: 1px;
  background: var(--border);
  width: 100%;
}

.faq-card__a {
  font-size: 16px;
  font-weight: 500;
}

.faq-card[data-num]::after {
  content: attr(data-num);
  position: absolute;
  right: -20px;
  top: -10px;
  font-size: 200px;
  font-weight: 700;
  color: rgba(5, 126, 255, 0.15);
  line-height: 1;
  pointer-events: none;
}

.faq-img {
  flex: 1;
  min-width: 0;
  border-radius: var(--radius-sm);
  object-fit: cover;
  min-height: 400px;
}

/* ========== CONTACT ========== */
.contact-form-wrap {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: var(--max-w);
}

.contact-form {
  flex: 0 0 754px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-placeholder);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}

.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid var(--dark);
  border-radius: 5px;
  accent-color: var(--blue);
}

.form-check a {
  font-weight: 700;
  text-decoration: underline;
}

.btn-send {
  background: var(--blue-deep);
  color: white;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 50px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.2s;
}

.btn-send:hover {
  opacity: 0.9;
}

.contact-img {
  flex: 1;
  min-width: 0;
  border-radius: var(--radius-sm);
  object-fit: cover;
  min-height: 300px;
}

.contact-details-wrap {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: var(--max-w);
  margin-top: 20px;
}

.details-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.details-card h3 {
  font-size: 24px;
  font-weight: 700;
}

.details-card .line {
  height: 1px;
  background: var(--border);
}

.details-card p {
  font-size: 16px;
  font-weight: 500;
}

.details-card p strong {
  font-weight: 700;
}

.map-card {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 264px;
  position: relative;
  background: var(--light-bg);
}

.map-card img,
.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  color: white;
  padding: 70px var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__logo {
  width: 141px;
  height: 79px;
  object-fit: contain;
}

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

.footer__links h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0;
}

.footer__links a {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.footer__links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer__legal {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.footer__company {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}

.footer__company strong {
  font-weight: 700;
}

.footer__follow {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

.footer__socials {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer__copy {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

/* ========== INNER PAGES ========== */
.page-header {
  padding: 40px var(--pad-x) 20px;
  background: white;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-content {
  padding: 80px var(--pad-x);
  max-width: calc(var(--max-w) + var(--pad-x) * 2);
  margin: 0 auto;
}

.page-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-content .lead {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
}

.page-content .prose {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.page-content .prose p {
  margin-bottom: 1.2em;
}

.page-content .prose h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 2em 0 0.8em;
}

/* ========== CONTAINER — content never wider than 1180 ========== */
.header,
.page-header,
.hero__content,
.page-content {
  width: 100%;
  max-width: calc(var(--max-w) + var(--pad-x) * 2);
  margin-inline: auto;
}

.section > *,
.footer > *,
.page-content > * {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
}

/* ========== FORM TOAST ========== */
.form-toast {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(24, 30, 61, 0.85);
}

.form-toast.is-open {
  display: flex;
}

.form-toast__box {
  background: var(--dark);
  color: white;
  border-radius: var(--radius);
  padding: 30px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: toast-in 0.25s ease-out;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.form-toast__title {
  font-size: 24px;
  font-weight: 700;
}

.form-toast__text {
  font-size: 16px;
  font-weight: 500;
}

.form-toast__btn {
  align-self: center;
  background: var(--blue-deep);
  color: white;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.form-toast__btn:hover {
  opacity: 0.9;
}

@media (prefers-reduced-motion: reduce) {
  .form-toast__box {
    animation: none;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1220px) {
  .burger {
    display: block;
  }

  .page-header {
    position: relative;
    z-index: 100;
  }

  .header__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 50;
    flex-direction: column;
    gap: 20px;
    padding: 20px var(--pad-x) 28px;
    max-height: calc(100dvh - 100%);
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 18px 40px rgba(24, 30, 61, 0.14);
  }

  .header__menu.is-open {
    display: flex;
  }

  .header__nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .header__link {
    font-size: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }

  .header__link.active {
    color: var(--blue);
  }

  .header__socials {
    justify-content: center;
    gap: 20px;
  }

  .social-btn {
    border: 1px solid var(--border);
  }
}

@media (max-width: 1220px) {
  :root {
    --pad-x: 40px;
  }

  .cat-grid {
    grid-template-columns: repeat(4, 295px);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 4px 0 12px;
  }

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

  .faq-wrap {
    flex-direction: column;
  }

  .faq-list {
    flex: 1;
    width: 100%;
  }

  .contact-form-wrap {
    flex-direction: column;
  }

  .contact-form {
    flex: 1;
    width: 100%;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-details-wrap {
    flex-direction: column;
  }
}

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

  .hero {
    height: auto;
    min-height: 700px;
  }

  .hero__bg {
    object-position: left top;
  }

  .hero__content {
    flex-direction: column;
    gap: 0;
    padding: 120px 16px 40px;
  }

  .hero__left,
  .hero__right {
    max-width: none;
    width: 100%;
  }

  .badge {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero__title {
    font-size: 42px;
  }

  .hero__subtitle {
    font-size: 24px;
  }

  .badge {
    font-size: 16px;
  }

  .hero__desc {
    font-size: 16px;
  }

  .btn-primary {
    font-size: 18px;
    padding: 16px 28px;
  }

  .section {
    padding: 60px 16px;
  }

  .section__title {
    font-size: 28px;
  }

  .section__desc {
    font-size: 16px;
  }

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

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

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

  .age-gate__btn {
    font-size: 18px;
    padding: 16px;
  }

  .footer {
    padding: 50px 16px;
  }

  .footer__top {
    flex-direction: column;
    gap: 30px;
  }

  .game-placeholder {
    height: 300px;
  }

  .game-placeholder a {
    font-size: 24px;
  }
}
