:root{
  --bg:#fbfbfd;
  --text:#0b1220;
  --muted:#b4b4b4;
  --line:rgba(15,23,42,.10);

  /* changed reds so it doesn't look same */
  --r1:#d90b2c;
  --r2:#ff2f4f;

  --shadow: 0 18px 50px rgba(15,23,42,.10);
  --radius:22px;
  --max:1120px;
  --stickyH:74px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}
img{max-width:100%; display:block}
a{color:inherit}
.small{font-size:12px}
.muted{color:var(--muted)}
.container{width:min(var(--max), calc(100% - 40px)); margin-inline:auto;}
.section{padding:56px 0}
.section__head{margin-bottom:18px}
.section__title{margin:0; font-size:32px; letter-spacing:-.02em}
.section__subtitle{margin:10px 0 0; color:var(--muted); font-size:15px}
.kicker{
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  color:rgba(15,23,42,.55);
  text-transform:uppercase;
  margin-bottom:10px;
}
@media (max-width:680px){
  .section{padding:44px 0}
  .section__title{font-size:26px}
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:999px;
  padding:10px 14px;
  border:1px solid transparent;
  text-decoration:none;
  font-weight:700;
  cursor:pointer;
  transition:transform .08s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:active{transform:translateY(1px)}
.btn--primary{
  color:#fff;
  background:linear-gradient(135deg, var(--r1), var(--r2));
  box-shadow:0 16px 34px rgba(217,11,44,.22);
}
.btn--primary:hover{box-shadow:0 18px 40px rgba(217,11,44,.26)}
.btn--ghost{
  background:rgba(255,255,255,.85);
  border-color:rgba(15,23,42,.12);
  color:var(--text);
}
.btn--lg{padding:12px 18px; font-size:15px}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  height:var(--stickyH);
  display:flex;
  align-items:center;
  background:rgba(251,251,253,.78);
  backdrop-filter: blur(12px);
  border-bottom:1px solid rgba(15,23,42,.08);
}
.header__inner{
  height:var(--stickyH);
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:-.03em;
  font-size:18px;
  text-decoration:none;
}
.brand__mark{
  width:12px;height:12px;border-radius:4px;
  background:linear-gradient(135deg, var(--r1), var(--r2));
  box-shadow:0 10px 20px rgba(217,11,44,.22);
}
.nav{display:flex; gap:10px; align-items:center}

/* Hero (new layout) */
.hero{
  position:relative;
  padding:62px 0 50px;
  overflow:hidden;
}
.hero__bg{position:absolute; inset:0; background-size:cover; background-position:center; transform:scale(1.03);}
.hero__overlay{
  position:absolute; inset:0;
  background:linear-gradient(95deg, rgba(11,18,32,.88), rgba(11,18,32,.48), rgba(11,18,32,.12));
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:center;
}
.hero__badgeRow{display:flex; gap:10px; flex-wrap:wrap}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.10em;
  text-transform:uppercase;
}
.pill--soft{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
}
.pill--glass{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.85);
  letter-spacing:.08em;
}
.hero__title{
  color:#fff;
  margin:14px 0 0;
  font-size:52px;
  line-height:1.03;
  letter-spacing:-.03em;
}
.hero__desc{
  margin:12px 0 0;
  color:rgba(255,255,255,.86);
  font-size:16px;
  line-height:1.7;
}
.hero__ctaRow{margin-top:18px; display:flex; gap:12px; flex-wrap:wrap}
.hero__trust{margin-top:16px; display:flex; gap:10px; align-items:center; color:#fff}
.stars{display:inline-flex; gap:2px}
.star{opacity:.95}
.hero__stats{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
}
.stat{
  padding:12px 12px;
  border-radius:16px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
}
.stat__top{font-size:12px; opacity:.8; font-weight:700}
.stat__val{font-size:14px; font-weight:900; letter-spacing:-.01em; margin-top:2px}
.hero__note{
  margin-top:14px;
  color:rgba(255,255,255,.82);
  font-size:13px;
  display:flex;
  align-items:center;
  gap:10px;
}
.dot{width:8px;height:8px;border-radius:999px;background:linear-gradient(135deg,var(--r1),var(--r2))}
.phoneFrame{
  width:100%;
  max-width:420px;
  margin-left:auto;
  border-radius:28px;
  overflow:hidden;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
}
.phoneFrame__top{
  display:flex;
  gap:7px;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.phoneFrame__dot{width:8px;height:8px;border-radius:99px;background:rgba(255,255,255,.45)}
.phoneFrame img{width:100%; height:auto}
@media (max-width:900px){
  .hero__inner{grid-template-columns:1fr; gap:20px}
  .hero__title{font-size:44px}
  .phoneFrame{margin-left:0}
}
@media (max-width:520px){
  .hero{padding:46px 0 40px}
  .hero__title{font-size:38px}
}

/* Panels */
.panel{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}
.panel--big{padding:22px}
.panel__smalltitle{
  margin:0 0 10px;
  font-size:16px;
  letter-spacing:-.02em;
}
.badge,.shield{
  display:inline-flex;
  width:22px;height:22px;
  align-items:center; justify-content:center;
  border-radius:8px;
  background:rgba(217,11,44,.10);
  color:var(--r1);
  margin-right:8px;
  font-weight:900;
}

/* Featured game (new card) */
.featureCard{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:0;
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  box-shadow:var(--shadow);
}
.featureCard__media{position:relative; min-height:260px}
.featureCard__media img{height:100%; width:100%; object-fit:cover}
.featureCard__tag{
  position:absolute;
  left:14px; top:14px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(15,23,42,.10);
  font-size:12px;
  font-weight:900;
  letter-spacing:.10em;
}
.featureCard__body{padding:22px}
.featureCard__title{margin:0; font-size:24px; letter-spacing:-.02em}
.featureCard__text{margin:10px 0 0; color:rgba(15,23,42,.78); line-height:1.75}
.chips{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}
.chip{
  padding:8px 10px;
  border-radius:999px;
  background:rgba(15,23,42,.04);
  border:1px solid rgba(15,23,42,.10);
  font-size:13px;
}
.featureCard__actions{margin-top:16px; display:grid; gap:10px}
@media (max-width:860px){
  .featureCard{grid-template-columns:1fr}
  .featureCard__media{min-height:220px}
}

/* 6 cards new look */
.grid6{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.miniCard{
  padding:18px 16px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,.98));
  border:1px solid rgba(15,23,42,.10);
  box-shadow: 0 14px 40px rgba(15,23,42,.07);
}
.miniCard__icon{
  width:40px;height:40px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(217,11,44,.08);
  border:1px solid rgba(217,11,44,.16);
  font-size:18px;
}
.miniCard__title{margin:12px 0 6px; font-size:16px; letter-spacing:-.01em}
.miniCard__text{margin:0; color:rgba(15,23,42,.72); line-height:1.6; font-size:14px}
@media (max-width:920px){ .grid6{grid-template-columns: repeat(2, 1fr)} }
@media (max-width:520px){ .grid6{grid-template-columns: 1fr} }

/* Blog layout (reading style) */
.blog__grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:18px;
  align-items:start;
}
@media (max-width:980px){
  .blog__grid{grid-template-columns:1fr}
}
.blogpost__meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.blogpost__kicker{
  font-size:11px;
  font-weight:900;
  letter-spacing:.14em;
  color:rgba(15,23,42,.55);
}
.blogpost__updated{
  font-size:12px;
  color:rgba(15,23,42,.55);
}
.blogpost__title{
  margin:10px 0 0;
  font-size:36px;
  line-height:1.12;
  letter-spacing:-.03em;
}
.blogpost__lead{
  margin:14px 0 0;
  font-size:17px;
  line-height:1.95;
  color:rgba(15,23,42,.86);
}
.blogpost__h3{
  margin:26px 0 0;
  font-size:20px;
  letter-spacing:-.02em;
}
.blogpost__h4{
  margin:18px 0 0;
  font-size:15px;
  font-weight:900;
  letter-spacing:-.01em;
}
.blogpost__p{
  margin:12px 0 0;
  font-size:15px;
  line-height:1.9;
  color:rgba(15,23,42,.82);
}
.blogpost__list{
  margin:14px 0 0;
  padding-left:18px;
  color:rgba(15,23,42,.82);
}
.blogpost__list li{margin:10px 0; line-height:1.75}
.divider{
  border:none;
  border-top:1px solid rgba(15,23,42,.10);
  margin:24px 0 6px;
}
.callout{
  margin-top:16px;
  padding:14px 14px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(15,23,42,.03);
  color:rgba(15,23,42,.82);
  line-height:1.7;
}
.takeaway{
  margin-top:16px;
  padding:14px 14px;
  border-radius:18px;
  border:1px solid rgba(217,11,44,.18);
  background:rgba(217,11,44,.06);
  color:rgba(15,23,42,.86);
  line-height:1.7;
}
@media (max-width:520px){
  .blogpost__title{font-size:28px}
}

/* Sidebar cards */
.authorcard__row{display:flex; gap:12px; align-items:center}
.authorcard__avatar{
  width:44px;height:44px;border-radius:999px;
  background:linear-gradient(135deg, rgba(15,23,42,.10), rgba(15,23,42,.04));
  border:1px solid rgba(15,23,42,.10);
  display:flex;align-items:center;justify-content:center;
  font-weight:900;
}
.authorcard__name{font-weight:900}
.authorcard__chip{
  margin-left:auto;
  width:34px;height:34px;border-radius:12px;
  background:rgba(15,23,42,.06);
  border:1px solid rgba(15,23,42,.10);
  display:flex;align-items:center;justify-content:center;
  font-weight:900;
  color:rgba(15,23,42,.7);
}
.toc{margin:0; padding-left:16px; color:rgba(15,23,42,.72)}
.toc li{margin:9px 0}
.toc a{text-decoration:none; color:inherit}
.toc a:hover{text-decoration:underline}
.checklist{margin:0; padding-left:18px; color:rgba(15,23,42,.70)}
.checklist li{margin:8px 0}

/* Signup box (new) */
.signupBox{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  border-radius:26px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  box-shadow:var(--shadow);
  padding:20px;
}
.signupBox__actions{display:grid; gap:8px; justify-items:end}
@media (max-width:760px){
  .signupBox{flex-direction:column; align-items:flex-start}
  .signupBox__actions{justify-items:start}
}

/* Footer */
.site-footer{
  border-top:1px solid rgba(15,23,42,.10);
  background:#fff;
  padding:34px 0;
}
.footer__inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.footer__links{display:flex; flex-wrap:wrap; gap:12px 16px}
.footer__links a{text-decoration:none; color:rgba(15,23,42,.8)}
.footer__links a:hover{text-decoration:underline}
.footer__headline{
  font-weight:900;
  letter-spacing:.10em;
  font-size:12px;
  color:rgba(15,23,42,.65);
}
.footer__text{margin-top:8px; color:rgba(15,23,42,.72); font-size:13px}
.footer__copy{margin-top:10px; color:rgba(15,23,42,.55); font-size:12px}
@media (max-width:780px){ .footer__inner{grid-template-columns:1fr} }

/* Cookie bar */
.cookiebar{
  position:fixed;
  left:0; right:0;
  bottom:14px;
  z-index:60;
  display:none;
}
.cookiebar.show{display:block}
.cookiebar__inner{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  background:#fff;
  border:1px solid rgba(15,23,42,.12);
  border-radius:18px;
  padding:12px 12px;
  box-shadow: 0 18px 50px rgba(15,23,42,.14);
}
.cookiebar__text{
  margin:0;
  color:rgba(15,23,42,.78);
  font-size:13px;
  line-height:1.5;
}
.cookiebar__actions{display:flex; gap:10px; flex-shrink:0}
@media (max-width:720px){
  .cookiebar{bottom:10px}
  .cookiebar__inner{flex-direction:column; align-items:stretch}
  .cookiebar__actions{justify-content:flex-end}
}

/* =========================
   GAME MODAL CROPPING
========================= */
/* =========================
   MORE GAMES GRID
========================= */

.gamesGrid{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 1100px){
  .gamesGrid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px){
  .gamesGrid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .gamesGrid{ grid-template-columns: 1fr; }
}

.gameCard{
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 60px rgba(206, 206, 206, 0.45);
}

.gameCard__imgWrap{
  width: 100%;
  aspect-ratio: 16/10;
  background: rgba(211, 211, 211, 0.04);
  overflow: hidden;
}

.gameCard__imgWrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.gameCard__body{
  padding: 16px 16px 18px;
  display: grid;
  gap: 10px;
}

.gameCard__title{
  margin: 0;
  font-size: 18px;
  font-weight: 600; /* not too bold */
  letter-spacing: -.01em;
}

.gameCard__text{
  margin: 0;
  color: rgba(50, 50, 50, 0.72);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
}

/* =========================
   GAME MODAL (POPUP)
========================= */

.gameModal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.gameModal.is-open{ display: block; }

.gameModal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(10px);
}

.gameModal__panel{
  position: relative;
  width: min(1180px, calc(100vw - 40px));
  height: min(740px, calc(100vh - 40px));
  margin: 20px auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(10, 12, 16, .92);
  box-shadow: 0 28px 120px rgba(0,0,0,.7);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.gameModal__top{
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.gameModal__title{
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}

.gameModal__topActions{
  display: flex;
  gap: 12px;
  align-items: center;
}

.gameModal__openNew{
  font-size: 13px;
  color: rgba(255,255,255,.75);
  text-decoration: underline;
}

.gameModal__close{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.gameModal__note{
  padding: 12px 16px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  border-top: 1px solid rgba(255,255,255,.10);
}

/* The stage that holds the cropped iframe */
.gameStage{
  position: relative;
  padding: 14px;
}

.gameStage__crop{
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.12);
}

/*
  CROPPING TECHNIQUE:
  Make iframe wider than the visible area and slide it left/right.
  This hides left & right sidebars inside the iframe view.
*/
/* =========================
   GAME MODAL CROPPING
========================= */

.gameStage{
  padding: 16px 18px 18px;
}

.gameStage__crop{
  position: relative;
  width: 100%;
  height: min(74vh, 720px);   /* modal play area height */
  border-radius: 18px;
  overflow: hidden;          /* THIS is the crop */
  background: #000;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 55px rgba(0,0,0,.55);
}

/* The iframe is intentionally "bigger" than crop window */
#gameFrame{
  position: absolute;
  top: 0;
  left: 0;

  /* make it larger so we can crop edges */
  width: 140%;
  height: 100%;

  border: 0;
}

/* Default crop mode: hide left + right bars */
.gameStage__crop.crop-wide #gameFrame{
  /* shift left so the center content shows */
  transform: translateX(-14%) scale(1.02);
  transform-origin: center center;
}

/* More aggressive crop (optional for some games) */
.gameStage__crop.crop-tight #gameFrame{
  width: 165%;
  transform: translateX(-20%) scale(1.05);
  transform-origin: center center;
}

/* On very small screens, reduce crop to keep playable */
@media (max-width: 720px){
  .gameStage__crop{
    height: min(72vh, 640px);
  }
  .gameStage__crop.crop-wide #gameFrame{
    width: 160%;
    transform: translateX(-18%) scale(1.03);
  }
}

.gameStage{
  padding: 16px 18px 18px;
}

.gameStage__crop{
  position: relative;
  width: 100%;
  height: min(74vh, 720px);   /* modal play area height */
  border-radius: 18px;
  overflow: hidden;          /* THIS is the crop */
  background: #000;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 55px rgba(0,0,0,.55);
}

/* The iframe is intentionally "bigger" than crop window */
#gameFrame{
  position: absolute;
  top: 0;
  left: 0;

  /* make it larger so we can crop edges */
  width: 140%;
  height: 100%;

  border: 0;
}

/* Default crop mode: hide left + right bars */
.gameStage__crop.crop-wide #gameFrame{
  /* shift left so the center content shows */
  transform: translateX(-14%) scale(1.02);
  transform-origin: center center;
}

/* More aggressive crop (optional for some games) */
.gameStage__crop.crop-tight #gameFrame{
  width: 165%;
  transform: translateX(-20%) scale(1.05);
  transform-origin: center center;
}

/* On very small screens, reduce crop to keep playable */
@media (max-width: 720px){
  .gameStage__crop{
    height: min(72vh, 640px);
  }
  .gameStage__crop.crop-wide #gameFrame{
    width: 160%;
    transform: translateX(-18%) scale(1.03);
  }
}


/* =========================
   WHY MATTERS SECTION (Featured replacement)
========================= */

.whyMatter__inner{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: start;
}

.whyMatter__title{
  margin: 0 0 14px;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700; /* Inter 700 matches screenshot */
}

.whyMatter__copy{
  max-width: 640px;
  color: rgba(53, 53, 53, 0.74);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
}

.whyMatter__copy p{ margin: 0 0 14px; }
.whyMatter__muted{ color: rgba(56, 56, 56, 0.55); margin-top: 18px; }

.whyMatter__right{
  display: grid;
  gap: 18px;
}

.whyCard{
  border-radius: 18px;
  padding: 18px 18px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 55px rgba(167, 167, 167, 0.35);
}

.whyCard__icon{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;

  background: rgba(46, 229, 157, .12); /* soft green */
  color: #2ee59d;
}

.whyCard__title{
  margin: 0;
  font-size: 20px;
  font-weight: 600; /* not too bold */
  letter-spacing: -0.01em;
  color: rgba(34, 34, 34, 0.95);
}

.whyCard__text{
  margin: 4px 0 0;
  color: rgba(49, 49, 49, 0.62);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

@media (max-width: 980px){
  .whyMatter__inner{
    grid-template-columns: 1fr;
  }
  .whyMatter__copy{ max-width: 100%; }
}


/* =========================
   FULL WIDTH BANNER (AD STYLE)
========================= */

.bannerAd{
  width: 100%;
  margin: 40px 0;
  
  /* removes container restriction */
  padding: 0;
}

.bannerAd__img{
  height: auto;
  display: block;

}

/* Optional hover effect */
.bannerAd__link:hover .bannerAd__img{
  filter: brightness(1.05);
}

/* If your site uses container padding globally,
   this forces true edge-to-edge */
.bannerAd{
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}

.bannerAd__inner{
  display: flex;
    justify-content: center;
}