/* Amar Club Games — Mobile-first stylesheet */
:root{
  --bg:#0b0d12;
  --bg-2:#11141c;
  --surface:#161a24;
  --surface-2:#1e2330;
  --line:#252b3a;
  --text:#eef1f7;
  --muted:#9aa3b8;
  --brand:#ffb300;
  --brand-2:#ff7a00;
  --brand-3:#ffd54a;
  --accent:#00d4ff;
  --success:#22c55e;
  --danger:#ef4444;
  --radius:14px;
  --radius-sm:10px;
  --shadow:0 8px 32px rgba(0,0,0,.35);
  --max:1120px;
  --font-bn:'Hind Siliguri',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
}
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  margin:0;font-family:var(--font-bn);
  background:radial-gradient(1200px 600px at 50% -10%,#1a1f2c 0%,var(--bg) 60%) fixed;
  color:var(--text);line-height:1.7;font-size:16px;
  -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--brand-3);text-decoration:none}
a:hover{color:var(--brand);text-decoration:underline}
h1,h2,h3,h4{line-height:1.25;margin:0 0 .6em;font-weight:700;letter-spacing:-.01em}
h1{font-size:1.85rem}
h2{font-size:1.5rem;margin-top:1.6em}
h3{font-size:1.2rem;margin-top:1.4em}
p{margin:0 0 1em}
ul,ol{padding-left:1.2em;margin:0 0 1em}
li{margin-bottom:.4em}
hr{border:0;border-top:1px solid var(--line);margin:2rem 0}
.container{max-width:var(--max);margin:0 auto;padding:0 16px}
.skip{position:absolute;left:-9999px}
.skip:focus{left:8px;top:8px;background:var(--brand);color:#000;padding:.5rem 1rem;border-radius:6px;z-index:9999}

/* Top notice */
.notice{
  background:linear-gradient(90deg,var(--brand-2),var(--brand));
  color:#0b0d12;text-align:center;padding:.5rem 1rem;font-weight:600;font-size:.92rem;
}
.notice a{color:#0b0d12;text-decoration:underline}

/* Header */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(11,13,18,.85);backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:.7rem 0}
.brand{display:flex;align-items:center;gap:.6rem;font-weight:800;font-size:1.05rem;color:var(--text)}
.brand img{width:36px;height:36px;border-radius:8px}
.brand span{background:linear-gradient(90deg,var(--brand-3),var(--brand-2));-webkit-background-clip:text;background-clip:text;color:transparent}
.nav-toggle{
  appearance:none;border:1px solid var(--line);background:var(--surface);color:var(--text);
  width:42px;height:42px;border-radius:10px;display:grid;place-items:center;cursor:pointer;
}
.nav-toggle:focus-visible{outline:2px solid var(--brand)}
.nav-toggle svg{width:22px;height:22px}
.nav-list{
  display:none;list-style:none;padding:0;margin:0;
  position:absolute;left:0;right:0;top:100%;
  background:var(--surface);border-bottom:1px solid var(--line);
  flex-direction:column;
}
.nav-list.open{display:flex}
.nav-list a{display:block;padding:.9rem 1rem;border-top:1px solid var(--line);color:var(--text)}
.nav-list a:hover{background:var(--surface-2);color:var(--brand)}
.nav-cta{display:none!important}
.nav-cta-mobile{list-style:none;padding:.8rem 1rem 1rem;border-top:1px solid var(--line);background:var(--surface)}
.nav-cta-mobile a{
  display:block;text-align:center;padding:.85rem 1rem;border-radius:12px;
  background:linear-gradient(135deg,var(--brand-2),var(--brand));color:#0b0d12;
  font-weight:800;font-size:.98rem;text-decoration:none;border:0;
}
.nav-cta-mobile a:hover{text-decoration:none;color:#0b0d12;filter:brightness(1.05)}

/* Hero */
.hero{padding:1.8rem 0 1rem;text-align:center}
.hero-logo{
  width:104px;height:104px;border-radius:22px;margin:0 auto .9rem;
  box-shadow:var(--shadow);display:block;
  background:#0b0d12;
}
.hero h1{font-size:1.9rem;margin-bottom:.35em}
.hero .tagline{color:var(--muted);font-size:1.02rem;max-width:34ch;margin:0 auto 1rem}
.bonus{
  display:inline-block;background:linear-gradient(135deg,var(--brand-2),var(--brand));
  color:#0b0d12;padding:.55rem 1rem;border-radius:999px;font-weight:700;margin-bottom:1rem;
}
.cta-group{display:flex;flex-direction:column;gap:.6rem;max-width:340px;margin:0 auto}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  padding:.85rem 1.4rem;border-radius:12px;font-weight:700;font-size:1rem;
  border:0;cursor:pointer;transition:transform .12s ease,box-shadow .12s ease;
  text-decoration:none;line-height:1.2;
}
.btn:hover{transform:translateY(-1px);text-decoration:none}
.btn-primary{background:linear-gradient(135deg,var(--brand-2),var(--brand));color:#0b0d12}
.btn-secondary{background:transparent;border:1.5px solid var(--brand);color:var(--brand-3)}
.btn-download{background:linear-gradient(135deg,#0ea5e9,var(--accent));color:#0b0d12}
.btn-block{display:flex;width:100%}

/* Info table */
.info-table{
  width:100%;border-collapse:collapse;margin:1.4rem auto;max-width:520px;
  background:var(--surface);border-radius:var(--radius);overflow:hidden;
  box-shadow:var(--shadow);font-size:.95rem;
}
.info-table th,.info-table td{padding:.85rem 1rem;text-align:left;border-bottom:1px solid var(--line)}
.info-table th{background:var(--surface-2);color:var(--brand-3);width:42%;font-weight:600}
.info-table tr:last-child th,.info-table tr:last-child td{border-bottom:0}

/* Sections */
section{padding:2rem 0}
.section-title{text-align:center;margin-bottom:1.4rem}
.section-title h2{margin:0 0 .3em}
.section-title p{color:var(--muted);max-width:60ch;margin:0 auto}

/* Feature grid */
.features{display:grid;grid-template-columns:1fr;gap:1rem}
.feature{
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);
  padding:1.2rem;text-align:center;
}
.feature img{width:72px;height:72px;margin:0 auto .8rem;object-fit:contain}
.feature h3{font-size:1.08rem;margin:.2em 0}
.feature p{color:var(--muted);font-size:.94rem;margin:0}

/* Game category cards */
.game-grid{display:grid;grid-template-columns:1fr 1fr;gap:.8rem}
.game-card{
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-sm);
  padding:1rem .8rem;text-align:center;
}
.game-card .emoji{font-size:2rem;display:block;margin-bottom:.4rem}
.game-card strong{display:block;font-size:.98rem;margin-bottom:.2rem;color:var(--brand-3)}
.game-card small{color:var(--muted);font-size:.84rem;line-height:1.4;display:block}

/* Steps */
.steps{counter-reset:s;list-style:none;padding:0}
.steps li{
  counter-increment:s;background:var(--surface);border:1px solid var(--line);
  border-radius:var(--radius-sm);padding:1rem 1rem 1rem 3.4rem;margin-bottom:.7rem;
  position:relative;
}
.steps li::before{
  content:counter(s);position:absolute;left:.9rem;top:50%;transform:translateY(-50%);
  background:linear-gradient(135deg,var(--brand-2),var(--brand));color:#0b0d12;
  width:2.1rem;height:2.1rem;border-radius:50%;display:grid;place-items:center;font-weight:800;
}
.steps li strong{display:block;color:var(--brand-3);margin-bottom:.2rem}

/* Payment chips */
.pay-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:.6rem}
.pay-chip{
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-sm);
  padding:.8rem;text-align:center;font-weight:600;
}
.pay-chip small{display:block;color:var(--muted);font-weight:400;font-size:.82rem;margin-top:.15rem}

/* FAQ accordion */
.faq{max-width:780px;margin:0 auto}
.faq details{
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-sm);
  margin-bottom:.6rem;
}
.faq summary{
  cursor:pointer;padding:1rem 1.1rem;font-weight:600;list-style:none;
  display:flex;justify-content:space-between;align-items:center;gap:1rem;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";color:var(--brand);font-size:1.4rem;font-weight:700;transition:transform .2s}
.faq details[open] summary::after{transform:rotate(45deg)}
.faq details > div{padding:0 1.1rem 1rem;color:var(--muted)}
.faq details > div p:last-child{margin-bottom:0}

/* Boxed callouts */
.callout{
  background:linear-gradient(135deg,rgba(255,179,0,.08),rgba(0,212,255,.06));
  border:1px solid var(--line);border-radius:var(--radius);padding:1.2rem;margin:1.4rem 0;
}
.callout h3{margin-top:0}

/* Sticky download bar (mobile) */
.sticky-cta{
  position:fixed;left:8px;right:8px;bottom:8px;z-index:40;
  background:rgba(11,13,18,.92);backdrop-filter:blur(10px);
  border:1px solid var(--line);border-radius:14px;
  padding:.6rem;display:flex;gap:.5rem;box-shadow:var(--shadow);
}
.sticky-cta .btn{flex:1;padding:.7rem 1rem;font-size:.95rem}

/* Footer */
.site-footer{margin-top:3rem;padding:2rem 0 6rem;border-top:1px solid var(--line);background:var(--bg-2)}
.foot-grid{display:grid;grid-template-columns:1fr;gap:1.4rem}
.foot-grid h4{color:var(--brand-3);font-size:1rem;margin:0 0 .6em}
.foot-grid ul{list-style:none;padding:0}
.foot-grid a{color:var(--muted)}
.foot-grid a:hover{color:var(--brand)}
.copyright{text-align:center;color:var(--muted);font-size:.85rem;margin-top:1.4rem;padding-top:1.4rem;border-top:1px solid var(--line)}
.disclaimer{background:rgba(239,68,68,.06);border:1px solid rgba(239,68,68,.25);color:#ffb7b7;padding:.9rem 1rem;border-radius:10px;font-size:.86rem;margin-top:1rem}

/* Tablet */
@media (min-width:640px){
  body{font-size:17px}
  h1{font-size:2.4rem}
  h2{font-size:1.8rem}
  .hero h1{font-size:2.4rem}
  .cta-group{flex-direction:row;max-width:none;justify-content:center}
  .cta-group .btn{min-width:160px}
  .features{grid-template-columns:1fr 1fr;gap:1.2rem}
  .game-grid{grid-template-columns:repeat(3,1fr)}
  .pay-grid{grid-template-columns:repeat(3,1fr)}
  .foot-grid{grid-template-columns:repeat(3,1fr);gap:2rem}
}

/* Desktop */
@media (min-width:960px){
  .nav-toggle{display:none}
  .nav-list{
    position:static;display:flex;flex-direction:row;background:transparent;border:0;
  }
  .nav-list a{border-top:0;padding:.5rem .9rem}
  .nav-cta{display:inline-flex!important}
  .nav-cta-mobile{display:none}
  .hero{padding:3rem 0 1.5rem}
  .hero h1{font-size:2.8rem}
  .features{grid-template-columns:repeat(3,1fr)}
  .game-grid{grid-template-columns:repeat(4,1fr)}
  .pay-grid{grid-template-columns:repeat(4,1fr)}
  .sticky-cta{display:none}
  .foot-grid{grid-template-columns:2fr 1fr 1fr 1fr}
  .site-footer{padding:3rem 0 2rem}
}

/* Accessibility */
@media (prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important;scroll-behavior:auto!important}
}
:focus-visible{outline:2px solid var(--brand);outline-offset:2px;border-radius:6px}
