/* ==========================================================================
   Rizk Casino — riskscasino.de
   Bespoke stylesheet. Pop-art / comic-book energetic identity.
   Palette: yellow #ffe500, red #ef4136, ink black #111111, white #ffffff.
   Pure hand-written CSS, no framework.
   ========================================================================== */

:root{
  --yellow:#ffe500;
  --yellow-deep:#f5cf00;
  --red:#ef4136;
  --red-deep:#c92a20;
  --ink:#111111;
  --ink-soft:#1c1c1c;
  --paper:#fff9e6;
  --white:#ffffff;
  --grey-line:#e8e2c8;
  --shadow-hard: 6px 6px 0 var(--ink);
  --shadow-hard-sm: 4px 4px 0 var(--ink);
  --radius: 18px;
  --font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --maxw: 1200px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ -webkit-text-size-adjust: 100%; }
html, body{ max-width: 100%; overflow-x: hidden; }

body{
  margin: 0;
  font-family: var(--font-system);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-display: swap;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; }
button{ font-family: inherit; cursor: pointer; }

.container{
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ------------------------- Skip link ------------------------- */
.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--yellow);
  color: var(--ink);
  padding: 10px 16px;
  z-index: 999;
  font-weight: 800;
  border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }

/* ------------------------- Header ------------------------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 4px solid var(--yellow);
}
.site-header__bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand__logo{
  height: 34px;
  width: auto;
}
.brand__word{
  font-weight: 900;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.5px;
}
.brand__word span{ color: var(--yellow); }

.main-nav{
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav__links{
  display: flex;
  gap: 20px;
  list-style: none;
}
.main-nav__links a{
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 6px 2px;
  border-bottom: 3px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.main-nav__links a:hover,
.main-nav__links a.is-current{
  border-color: var(--yellow);
  color: var(--yellow);
}

.header-actions{
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Locale switch — segmented control, reused desktop + mobile */
.locale-switch{
  display: inline-flex;
  border: 2px solid var(--yellow);
  border-radius: 999px;
  overflow: hidden;
}
.locale-switch__item{
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 800;
  color: var(--yellow);
  min-width: 40px;
  text-align: center;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.locale-switch__item.is-active{
  background: var(--yellow);
  color: var(--ink);
}
.locale-switch__item:not(.is-active):hover{
  background: rgba(255,229,0,0.15);
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid transparent;
  min-height: 44px;
  white-space: nowrap;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:active{ transform: translateY(1px); }

.btn--ghost{
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--ghost:hover{ border-color: var(--yellow); color: var(--yellow); }

.btn--primary{
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 3px 3px 0 var(--yellow);
}
.btn--primary:hover{ background: var(--red-deep); }

.btn--hero{
  background: var(--yellow);
  color: var(--ink);
  font-size: 18px;
  padding: 16px 34px;
  border-radius: 999px;
  box-shadow: var(--shadow-hard);
  border: 3px solid var(--ink);
}
.btn--hero:hover{ background: var(--white); }

.burger{
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid var(--yellow);
  border-radius: 10px;
  background: transparent;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.burger__box{
  width: 22px;
  height: 16px;
  position: relative;
}
.burger__box span{
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.burger__box span:nth-child(1){ top: 0; }
.burger__box span:nth-child(2){ top: 7px; }
.burger__box span:nth-child(3){ top: 14px; }
.burger[aria-expanded="true"] .burger__box span:nth-child(1){ top: 7px; transform: rotate(45deg); }
.burger[aria-expanded="true"] .burger__box span:nth-child(2){ opacity: 0; }
.burger[aria-expanded="true"] .burger__box span:nth-child(3){ top: 7px; transform: rotate(-45deg); }

/* Mobile slide-menu */
.mobile-nav{
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 86vw);
  height: 100vh;
  background: var(--ink);
  border-left: 4px solid var(--yellow);
  transform: translateX(100%);
  transition: transform .25s ease;
  z-index: 200;
  overflow-y: auto;
  padding: 22px;
}
.mobile-nav.is-open{ transform: translateX(0); }
.mobile-nav__top{
  display: flex;
  justify-content: flex-end;
  margin-bottom: 18px;
}
.mobile-nav__close{
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 2px solid var(--yellow);
  background: transparent;
  color: var(--yellow);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}
.mobile-nav__links{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 22px;
}
.mobile-nav__links a{
  display: block;
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  padding: 14px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  min-height: 44px;
}
.mobile-nav__links a.is-current{ color: var(--yellow); }

.mobile-nav__label{
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.mobile-nav__locale{ margin-bottom: 26px; }
.mobile-nav__locale .locale-switch{ width: 100%; }
.mobile-nav__locale .locale-switch__item{ flex: 1; min-height: 44px; }

.mobile-nav__actions{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav__actions .btn{ width: 100%; }

.nav-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 190;
}
.nav-overlay.is-open{ opacity: 1; pointer-events: auto; }

body.nav-locked{ overflow: hidden; }

/* ------------------------- Hero ------------------------- */
.hero{
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  padding: 64px 0 84px;
}
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(239,65,54,0.35), transparent 55%),
    radial-gradient(circle at 8% 88%, rgba(255,229,0,0.20), transparent 50%);
  pointer-events: none;
}
.hero__inner{
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero__title{
  font-size: clamp(34px, 5.2vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 18px;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.4);
}
.hero__title em{
  font-style: normal;
  color: var(--ink);
  background: var(--yellow);
  padding: 2px 10px;
  border-radius: 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  transform: rotate(-1.5deg);
  display: inline-block;
}
.hero__lede{
  font-size: 18px;
  color: #f1f1f1;
  max-width: 46ch;
  margin: 0 0 28px;
}
.hero__ctas{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__note{
  margin-top: 18px;
  font-size: 13px;
  color: #b9b9b9;
}
.hero__badges{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.hero__badge{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}

.hero__art{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wheel{
  position: relative;
  width: min(360px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(
    var(--yellow) 0deg 45deg,
    var(--red) 45deg 90deg,
    var(--yellow) 90deg 135deg,
    var(--red) 135deg 180deg,
    var(--yellow) 180deg 225deg,
    var(--red) 225deg 270deg,
    var(--yellow) 270deg 315deg,
    var(--red) 315deg 360deg
  );
  border: 6px solid var(--white);
  box-shadow: 0 0 0 6px var(--ink), var(--shadow-hard);
  animation: spin 22s linear infinite;
}
@media (prefers-reduced-motion: reduce){
  .wheel{ animation: none; }
}
.wheel__hub{
  position: absolute;
  inset: 0;
  margin: auto;
  width: 34%;
  height: 34%;
  background: var(--ink);
  border-radius: 50%;
  border: 4px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wheel__hub span{
  font-weight: 900;
  color: var(--yellow);
  font-size: 15px;
  text-align: center;
  line-height: 1.1;
}
@keyframes spin{ from{ transform: rotate(0deg); } to{ transform: rotate(360deg); } }

.hero__pin{
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 22px solid var(--white);
  filter: drop-shadow(0 3px 0 var(--ink));
}

/* ------------------------- Section shell ------------------------- */
.section{ padding: 64px 0; }
.section--alt{ background: var(--white); }
.section__head{
  max-width: 640px;
  margin: 0 0 36px;
}
.section__kicker{
  display: inline-block;
  color: var(--red);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section__title{
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 900;
  margin: 0 0 12px;
  line-height: 1.15;
}
.section__desc{
  font-size: 16px;
  color: #4a4a4a;
}

/* ------------------------- Category chips ------------------------- */
.chips{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.chip{
  background: var(--ink);
  color: var(--yellow);
  font-weight: 800;
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 2px solid var(--ink);
}
.chip--outline{
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

/* ------------------------- Game grid ------------------------- */
.game-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.game-card{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-hard-sm);
  transition: transform .15s ease;
}
.game-card:hover{ transform: translateY(-4px); }
.game-card__art{
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  text-align: center;
  color: var(--ink);
  padding: 14px;
}
.game-card__badge{
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.game-card__name{
  padding: 10px 12px 14px;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}
.game-card__provider{
  display: block;
  color: #a9a9a9;
  font-size: 12px;
  font-weight: 500;
  margin-top: 2px;
}

/* palette rotation for card art */
.game-card:nth-child(8n+1) .game-card__art{ background: var(--yellow); }
.game-card:nth-child(8n+2) .game-card__art{ background: var(--red); color: var(--white); }
.game-card:nth-child(8n+3) .game-card__art{ background: #ffcf33; }
.game-card:nth-child(8n+4) .game-card__art{ background: #ff6a5e; color: var(--white); }
.game-card:nth-child(8n+5) .game-card__art{ background: var(--yellow); }
.game-card:nth-child(8n+6) .game-card__art{ background: #2a2a2a; color: var(--yellow); }
.game-card:nth-child(8n+7) .game-card__art{ background: var(--red); color: var(--white); }
.game-card:nth-child(8n+8) .game-card__art{ background: #ffcf33; }

/* ------------------------- Feature cards ------------------------- */
.feature-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card{
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-hard-sm);
}
.feature-card__icon{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
}
.feature-card__title{
  font-weight: 900;
  font-size: 18px;
  margin: 0 0 8px;
}
.feature-card__text{
  color: #4a4a4a;
  font-size: 15px;
  margin: 0;
}

/* ------------------------- Steps ------------------------- */
.steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step{
  position: relative;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px 20px 20px;
}
.step::before{
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -14px;
  left: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
}
.step__title{ font-weight: 800; font-size: 16px; margin: 8px 0 6px; }
.step__text{ font-size: 14px; color: #d6d6d6; margin: 0; }

/* ------------------------- Payment grid (index preview) ------------------------- */
.pay-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pay-pill{
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 800;
  font-size: 14px;
}

/* ------------------------- CTA banner ------------------------- */
.cta-banner{
  background: var(--red);
  color: var(--white);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-hard);
  border: 3px solid var(--ink);
}
.cta-banner__title{
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  margin: 0 0 8px;
}
.cta-banner__text{ margin: 0; color: #ffe4e1; font-size: 15px; }

/* ------------------------- Breadcrumb ------------------------- */
.breadcrumb{
  padding: 18px 0 0;
  font-size: 13px;
  color: #6b6b6b;
}
.breadcrumb a{ color: var(--red); font-weight: 700; }
.breadcrumb span[aria-hidden]{ margin: 0 6px; }

/* ------------------------- Page hero (interior pages) ------------------------- */
.page-hero{
  background: var(--ink);
  color: var(--white);
  padding: 30px 0 46px;
  position: relative;
  overflow: hidden;
}
.page-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(255,229,0,0.18), transparent 55%);
}
.page-hero__title{
  position: relative;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  margin: 10px 0 0;
  max-width: 20ch;
}

/* ------------------------- SEO article block ------------------------- */
.seo-article{
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 52px);
  max-width: 840px;
  margin: 0 auto;
}
.seo-article h1{
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 22px;
}
.seo-article h2{
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 900;
  margin: 40px 0 14px;
  padding-top: 6px;
  border-top: 3px solid var(--yellow);
}
.seo-article h2:first-of-type{ margin-top: 0; border-top: none; padding-top: 0; }
.seo-article h3{
  font-size: 18px;
  font-weight: 800;
  margin: 26px 0 10px;
  color: var(--red-deep);
}
.seo-article p{
  font-size: 16px;
  color: #2b2b2b;
  margin: 0 0 16px;
}
.seo-article ul, .seo-article ol{
  margin: 0 0 18px;
  padding-left: 22px;
}
.seo-article li{
  font-size: 16px;
  color: #2b2b2b;
  margin-bottom: 8px;
}
.seo-article strong{ color: var(--ink); }
.seo-article a{
  color: var(--red-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.seo-article em{ color: #555; }

/* Responsive SEO tables */
.seo-article table{
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin: 20px 0 26px;
  font-size: 14px;
}
.seo-article th, .seo-article td{
  border: 1px solid var(--grey-line);
  padding: 10px 12px;
  text-align: left;
  overflow-wrap: anywhere;
  vertical-align: top;
}
.seo-article thead th{
  background: var(--ink);
  color: var(--yellow);
  font-weight: 800;
}
.seo-article tbody tr:nth-child(even){ background: #fffbe9; }

@media (max-width: 560px){
  .seo-article table{ font-size: 12px; }
  .seo-article th, .seo-article td{ padding: 6px 7px; }
}

/* FAQ accordion */
.faq{
  margin-top: 10px;
}
.faq-item{
  border-bottom: 2px solid var(--grey-line);
}
.faq-item:first-child{ border-top: 2px solid var(--grey-line); }
.faq-item__q{
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  text-align: left;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  min-height: 44px;
}
.faq-item__q::after{
  content: "+";
  font-size: 22px;
  font-weight: 900;
  color: var(--red);
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq-item.is-open .faq-item__q::after{ transform: rotate(45deg); }
.faq-item__a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-item__a p{ padding: 0 4px 18px; margin: 0; color: #3a3a3a; font-size: 15px; }
.faq-item.is-open .faq-item__a{ max-height: 600px; }

/* ------------------------- Footer ------------------------- */
.site-footer{
  background: var(--ink);
  color: #cfcfcf;
  padding: 52px 0 28px;
  margin-top: 64px;
  border-top: 6px solid var(--yellow);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand img{ height: 30px; }
.footer-brand__word{ font-weight: 900; color: var(--white); font-size: 18px; }
.footer-col__title{
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer-col ul{ list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a{ font-size: 14px; color: #cfcfcf; }
.footer-col a:hover{ color: var(--yellow); }
.footer-text{ font-size: 14px; color: #a9a9a9; margin: 0 0 14px; }

.footer-locale{ margin-top: 6px; }

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-copy{ font-size: 13px; color: #9a9a9a; margin: 0; }
.footer-rg{ font-size: 13px; color: #9a9a9a; margin: 0; }
.footer-rg strong{ color: var(--yellow); }

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

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px){
  .game-grid{ grid-template-columns: repeat(3, 1fr); }
  .feature-grid{ grid-template-columns: repeat(2, 1fr); }
  .steps{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__art{ order: -1; margin-bottom: 12px; }
}

@media (max-width: 860px){
  .main-nav__links,
  .header-actions .locale-switch,
  .header-actions .btn{ display: none; }
  .burger{ display: flex; }
  .site-header__bar{ padding: 10px 16px; }
  .container{ padding: 0 16px; }
  .hero{ padding: 40px 0 56px; }
  .game-grid{ grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .section{ padding: 46px 0; }
}

@media (max-width: 640px){
  .feature-grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 26px; }
  .cta-banner{ padding: 30px 22px; flex-direction: column; align-items: flex-start; }
  .cta-banner .btn{ width: 100%; }
}

@media (max-width: 400px){
  .game-grid{ grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero__title{ font-size: 30px; }
}
