:root{
  --bg:#050608;
  --ink:#fffdf0;
  --muted:#c6d7d5;
  --teal:#00d8df;
  --orange:#ff850f;
  --yellow:#ffe23b;
  --lime:#d7ff36;
  --panel:rgba(10,20,25,.82);
  --line:rgba(255,255,255,.16);
  --shadow:0 30px 80px rgba(0,0,0,.55);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:var(--bg);
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
.backdrop{
  position:fixed;inset:0;z-index:-1;
  background:
    radial-gradient(circle at 20% 10%, rgba(0,216,223,.24), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(255,133,15,.24), transparent 28%),
    radial-gradient(circle at 50% 90%, rgba(215,255,54,.13), transparent 35%),
    linear-gradient(180deg,#071217,#030405);
}
.backdrop:after{
  content:"";position:absolute;inset:0;opacity:.18;
  background-image:linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);
  background-size:38px 38px;
  mask-image:radial-gradient(circle at center,#000,transparent 80%);
}
.topbar{
  width:min(1200px,calc(100% - 28px));
  position:sticky;top:12px;z-index:20;
  margin:12px auto 0;
  display:flex;align-items:center;justify-content:space-between;
  padding:10px 12px 10px 18px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(3,6,8,.72);
  backdrop-filter:blur(18px);
  box-shadow:var(--shadow);
}
.brand{display:flex;align-items:center;gap:10px;font-weight:1000}
.brand img{width:50px}
.brand span{letter-spacing:.04em}
nav{display:flex;gap:8px}
nav a{
  padding:11px 17px;
  border-radius:999px;
  color:var(--muted);
  font-weight:950;
}
nav a:hover{background:rgba(255,255,255,.09);color:white}
main{width:min(1200px,calc(100% - 28px));margin:0 auto}
.hero{
  min-height:calc(100vh - 90px);
  display:grid;
  grid-template-columns:1fr .92fr;
  gap:32px;
  align-items:center;
  padding:52px 0 28px;
}
.hero-main-logo{
  width:min(620px, 92vw);
  margin:0 0 18px;
  filter:drop-shadow(0 22px 34px rgba(0,0,0,.58));
}
.kicker{
  color:var(--lime);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-weight:1000;
  font-size:.82rem;
  margin:0 0 13px;
}
h1,h2,p{margin-top:0}
h1{
  font-size:clamp(2.45rem,5.2vw,5rem);
  line-height:.92;
  letter-spacing:-.045em;
  margin-bottom:22px;
}
h2{
  font-size:clamp(2.5rem,5vw,5.1rem);
  line-height:.88;
  letter-spacing:-.065em;
  margin-bottom:14px;
}
.hero-sub,p{color:var(--muted);font-size:1.12rem;line-height:1.6}
.hero-sub{
  max-width:720px;
  font-size:1.08rem;
  line-height:1.62;
}
.hero-card{
  padding:20px;
  border-radius:38px;
  background:linear-gradient(135deg,rgba(0,216,223,.16),rgba(255,133,15,.12));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  transform:rotate(-1deg);
  display:grid;
  place-items:center;
}
.hero-card img{
  max-height:620px;
  width:auto;
  margin:auto;
}

.games{padding:26px 0 80px}
.section-head{
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:26px;
}
.section-head>img{
  width:min(520px, 92vw);
  filter:drop-shadow(0 18px 28px rgba(0,0,0,.5));
}
.game-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.game-card{
  position:relative;
  min-height:520px;
  border-radius:36px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#081014;
  box-shadow:var(--shadow);
  transition:transform .22s ease,border-color .22s ease,filter .22s ease;
}
.game-card:hover{transform:translateY(-10px);border-color:rgba(255,133,15,.8);filter:brightness(1.08)}
.game-ad{
  width:100%;
  height:335px;
  object-fit:contain;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.06), transparent 50%),
    #050608;
  padding:10px;
}
.game-info{
  min-height:185px;
  padding:18px 20px 20px;
  background:linear-gradient(180deg,rgba(8,16,20,.90),rgba(5,7,9,.98));
}
.game-logo{
  height:76px;
  max-width:310px;
  object-fit:contain;
  object-position:left center;
  margin-bottom:10px;
  filter:drop-shadow(0 12px 18px rgba(0,0,0,.5));
}
.game-info p{font-size:1rem;margin-bottom:15px}
.game-info span{
  display:inline-flex;
  padding:10px 13px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:var(--lime);
  font-weight:1000;
}
.zylo-card{grid-column:1 / -1}
.zylo-card .game-ad{height:430px}
.resources{padding:62px 0 90px}
.resources-card{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:28px;
  align-items:center;
  border-radius:40px;
  border:1px solid rgba(215,255,54,.35);
  background:linear-gradient(135deg,rgba(255,133,15,.12),rgba(0,216,223,.12));
  padding:28px;
  box-shadow:var(--shadow);
}
.resources-card>img{filter:drop-shadow(0 20px 30px rgba(0,0,0,.52))}
footer{
  width:min(1200px,calc(100% - 28px));
  margin:0 auto;
  display:flex;justify-content:space-between;gap:18px;
  padding:28px 0 36px;
  border-top:1px solid var(--line);
  color:var(--muted);
}
@media(max-width:900px){
  .hero,.resources-card{grid-template-columns:1fr}
  .hero{padding-top:38px}
  .game-grid{grid-template-columns:1fr}
  .zylo-card{grid-column:auto}
  .zylo-card .game-ad,.game-ad{height:330px}
}
@media(max-width:620px){
  .topbar{border-radius:24px;align-items:flex-start}
  nav{flex-direction:column;align-items:flex-end}
  nav a{padding:8px 10px}
  h1{font-size:2.65rem}
  .choice-strip{grid-template-columns:1fr}
  .section-head{display:flex}
  .section-head>img{width:100%;max-width:380px;margin-bottom:10px}
  .game-card{min-height:auto}
  .game-ad,.zylo-card .game-ad{height:260px}
  .game-logo{height:58px}
  footer{flex-direction:column;text-align:center}
}


/* v7 clean hero fixes */
.hero-wordmark{
  display:flex;
  align-items:center;
  gap:16px;
  margin:0 0 22px;
  width:max-content;
  max-width:100%;
  padding:12px 18px 12px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(135deg,rgba(0,216,223,.16),rgba(255,133,15,.12));
  box-shadow:0 22px 44px rgba(0,0,0,.42);
}
.hero-wordmark img{
  width:82px;
  height:82px;
  object-fit:contain;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.45));
}
.hero-wordmark span{
  font-size:clamp(2.3rem,5.6vw,5.8rem);
  line-height:.9;
  letter-spacing:-.06em;
  font-weight:1000;
  color:var(--ink);
  text-shadow:0 10px 22px rgba(0,0,0,.4);
}
.hero-sub{
  max-width:760px !important;
  font-size:1.08rem !important;
  line-height:1.62 !important;
}
@media(max-width:620px){
  .hero-wordmark{
    gap:10px;
    padding:10px 14px 10px 10px;
  }
  .hero-wordmark img{
    width:58px;
    height:58px;
  }
  .hero-wordmark span{
    font-size:2.35rem;
  }
}


/* v8 remove top wordmark */
.hero-wordmark{
  display:none !important;
}
