/* ===========================
   1RedBet Chile — Main Styles
   =========================== */

:root {
  --red: #e02020;
  --red-dark: #b81717;
  --red-light: #ff3333;
  --dark: #0d0d0d;
  --dark-2: #1a1a1a;
  --dark-3: #242424;
  --dark-4: #2e2e2e;
  --gray: #888;
  --gray-light: #bbb;
  --white: #fff;
  --gold: #f5c400;
  --text: #e0e0e0;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-red: 0 4px 24px rgba(224,32,32,0.35);
  --transition: 0.25s ease;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.btn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn--red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: var(--shadow-red);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

.btn--outline:hover {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 14px 36px;
  font-size: 16px;
}

.btn--xl {
  padding: 18px 48px;
  font-size: 18px;
  border-radius: var(--radius);
}

/* ===== SECTION TITLE ===== */

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 0.75rem auto 0;
}

/* ===== HEADER ===== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.logo img {
  height: 36px;
  width: auto;
}

.header__nav {
  display: flex;
  gap: 28px;
}

.header__nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color var(--transition);
}

.header__nav a:hover {
  color: var(--red);
}

/* ===== HERO ===== */

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__banner--mobile {
  display: none;
}

/* Overlay over banner */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.4) 60%, rgba(13,13,13,0.1) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
  max-width: 640px;
}

.hero__badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.hero__title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero__title span {
  color: var(--gold);
  display: block;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--gray-light);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero__terms {
  font-size: 12px;
  color: var(--gray);
}

/* ===== BONUSES ===== */

.bonuses {
  padding: 60px 0;
  background: var(--dark-2);
}

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

.bonus-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.bonus-card--featured {
  border-color: var(--red);
  background: linear-gradient(135deg, rgba(224,32,32,0.08) 0%, var(--dark-3) 100%);
  box-shadow: 0 0 0 1px rgba(224,32,32,0.3);
}

.bonus-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.bonus-card__icon {
  font-size: 2.5rem;
  line-height: 1;
}

.bonus-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.bonus-card__amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
}

.bonus-card__sub {
  font-size: 0.9rem;
  color: var(--gray-light);
  margin-top: -6px;
}

.bonus-card__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 4px 0;
}

.bonus-card__list li {
  font-size: 0.88rem;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.bonus-card__list li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
}

.bonus-card .btn {
  margin-top: auto;
  width: 100%;
}

/* ===== WHY US ===== */

.why {
  padding: 60px 0;
  background: var(--dark);
}

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

.why__item {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--transition), transform var(--transition);
}

.why__item:hover {
  border-color: rgba(224,32,32,0.3);
  transform: translateY(-3px);
}

.why__icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.why__item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.why__item p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ===== GAMES ===== */

.games {
  padding: 60px 0;
  background: var(--dark-2);
}

.games__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 2rem;
}

.game-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--dark-3);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.game-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  background-color: var(--dark-4);
}

.game-card__name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  padding: 8px 10px 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card__provider {
  font-size: 0.7rem;
  color: var(--gray);
  padding: 0 10px 10px;
}

.games__cta {
  text-align: center;
}

/* ===== SPORTS ===== */

.sports {
  padding: 60px 0;
  background: var(--dark);
}

.sports__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sports__text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.sports__text p {
  color: var(--gray-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.sports__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}

.sports__list li {
  font-size: 0.95rem;
  color: var(--text);
  padding: 10px 14px;
  background: var(--dark-3);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--red);
}

.sports__img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ===== PAYMENTS ===== */

.payments {
  padding: 60px 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.payments__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.payment-item:hover {
  opacity: 1;
}

.payment-item img,
.payment-item svg {
  height: 50px;
  width: auto;
  border-radius: 6px;
}

.payment-item span {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 600;
}

/* ===== STEPS ===== */

.steps {
  padding: 60px 0;
  background: var(--dark);
}

.steps__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.step {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 32px 28px;
  flex: 1;
  max-width: 280px;
  text-align: center;
}

.step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

.step__arrow {
  font-size: 2rem;
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== FAQ ===== */

.faq {
  padding: 60px 0;
  background: var(--dark-2);
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
  transition: background var(--transition);
}

.faq__question:hover {
  background: rgba(255,255,255,0.04);
}

.faq__question[aria-expanded="true"] {
  color: var(--red);
}

.faq__icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--red);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}

.faq__answer.open {
  max-height: 300px;
  padding-bottom: 18px;
}

.faq__answer p {
  padding: 0 20px;
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.7;
}

/* ===== FOOTER ===== */

.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 60px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand img {
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.88rem;
  color: var(--gray);
  max-width: 280px;
  line-height: 1.6;
}

.footer__links h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

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

.footer__links ul a {
  font-size: 0.88rem;
  color: var(--gray);
  transition: color var(--transition);
}

.footer__links ul a:hover {
  color: var(--red);
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
}

.footer__disclaimer {
  font-size: 0.78rem;
  color: var(--gray);
  max-width: 760px;
  margin: 0 auto 12px;
  line-height: 1.6;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ===== HEADER ACTIVE LINK ===== */

.header__nav a.active {
  color: var(--red);
}

/* ===== HAMBURGER ===== */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  margin-left: auto;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== SEO TEXT ===== */

.seo-text {
  padding: 70px 0;
  background: var(--dark-3);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.seo-text h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  text-align: center;
}

.seo-text__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.seo-text__columns p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.seo-text__columns p:last-child {
  margin-bottom: 0;
}

.seo-text__columns strong {
  color: var(--gray-light);
  font-weight: 600;
}

/* ===== PAGE HERO (inner pages) ===== */

.page-hero {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  border-bottom: 1px solid rgba(224,32,32,0.2);
  padding: 60px 0 50px;
  text-align: center;
}

.page-hero__badge {
  display: inline-block;
  background: rgba(224,32,32,0.15);
  border: 1px solid rgba(224,32,32,0.4);
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ===== BREADCRUMB ===== */

.breadcrumb {
  padding: 14px 0;
  background: var(--dark-2);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray);
}

.breadcrumb__list a {
  color: var(--gray);
  transition: color var(--transition);
}

.breadcrumb__list a:hover {
  color: var(--red);
}

.breadcrumb__list span.sep {
  color: rgba(255,255,255,0.2);
}

.breadcrumb__list span.current {
  color: var(--gray-light);
}

/* ===== LEGAL PAGES ===== */

.legal-content {
  padding: 70px 0;
  background: var(--dark);
}

.legal-content__inner {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin: 2.5rem 0 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.legal-content h2:first-child {
  margin-top: 0;
  border-top: none;
}

.legal-content p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 0.5rem 0 1rem 1.2rem;
  list-style: disc;
}

.legal-content ul li {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.legal-content .legal-date {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--gray);
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
}

/* Responsible gambling highlight */
.rg-warning {
  background: rgba(224,32,32,0.08);
  border: 1px solid rgba(224,32,32,0.25);
  border-radius: var(--radius);
  padding: 24px;
  margin: 2rem 0;
}

.rg-warning p {
  color: var(--gray-light);
  margin: 0;
}

.rg-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 1.5rem;
}

.rg-link-item {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}

.rg-link-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.rg-link-item p {
  font-size: 0.82rem;
  color: var(--gray);
  margin: 0;
}

/* ===== RESPONSIVE ===== */

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

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .rg-links {
    grid-template-columns: 1fr;
  }

  .bonuses__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .games__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sports__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --container: 100%;
  }

  /* --- Hamburger --- */
  .hamburger {
    display: flex;
  }

  .header__nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-direction: column;
    padding: 8px 20px 16px;
    gap: 0;
    z-index: 99;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  }

  .header__nav.open {
    display: flex;
  }

  .header__nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1rem;
    color: var(--gray-light) !important;
  }

  .header__nav a:last-child {
    border-bottom: none;
  }

  .header__nav a.active,
  .header__nav a:hover {
    color: var(--red) !important;
  }

  /* --- Hero --- */
  .hero {
    min-height: auto;
  }

  .hero__bg {
    position: absolute;
    inset: 0;
    height: auto;
  }

  .hero__banner--desktop {
    display: none;
  }

  .hero__banner--mobile {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(13,13,13,0.2) 0%, rgba(13,13,13,0.8) 60%);
  }

  .hero__content {
    padding: 48px 20px 40px;
    max-width: 100%;
  }

  .hero__title {
    font-size: 1.6rem;
  }

  .hero__subtitle {
    font-size: 0.92rem;
    margin-bottom: 1.4rem;
  }

  .hero__cta {
    align-items: stretch;
  }

  .hero__cta .btn {
    text-align: center;
  }

  .btn--xl {
    padding: 14px 24px;
    font-size: 15px;
  }

  /* --- Sections spacing --- */
  .bonuses,
  .why,
  .games,
  .sports,
  .steps,
  .faq,
  .seo-text {
    padding: 44px 0;
  }

  .payments {
    padding: 36px 0;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.8rem;
  }

  /* --- Grids --- */
  .why__grid {
    grid-template-columns: 1fr;
  }

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

  .bonuses__grid {
    max-width: 100%;
  }

  /* --- Steps --- */
  .steps__grid {
    flex-direction: column;
    align-items: stretch;
  }

  .step__arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .step {
    max-width: 100%;
  }

  /* --- Sports --- */
  .sports__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* --- Footer --- */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__brand {
    grid-column: auto;
  }

  .payments__grid {
    gap: 16px;
  }

  /* --- Page hero inner pages --- */
  .page-hero {
    padding: 36px 0 30px;
  }

  .page-hero h1 {
    font-size: 1.6rem;
  }

  .page-hero p {
    font-size: 0.92rem;
  }
}

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

  .btn--xl {
    padding: 15px 30px;
    font-size: 15px;
  }

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

  .bonuses__grid {
    max-width: 100%;
  }
}
