/* Lightweight responsive styles for BotPlay.io mini-site */
:root{--accent:#00bcd4;--bg:#ffffff;--text:#0b1a2b;--muted:#6b7785;--radius:12px}
*{box-sizing:border-box}body{font-family:Inter,ui-sans-serif,system-ui,Segoe UI,Roboto,'Helvetica Neue',Arial;line-height:1.5;color:var(--text);background:var(--bg);margin:0;padding:0}
.container{max-width:1000px;margin:0 auto;padding:20px}
.site-header{border-bottom:1px solid #eef2f5;background:transparent}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:12px 20px}
.logo{height:48px}
.top-nav a{margin-left:18px;color:var(--muted);text-decoration:none;font-weight:600}
.hero{display:flex;flex-direction:column;align-items:center;gap:18px;padding:28px 12px}
.banner{max-width:100%;height:auto;border-radius:16px;box-shadow:0 6px 20px rgba(11,26,43,0.06)}
.hero-card{position:relative;margin-top:-80px;background:linear-gradient(180deg,rgba(255,255,255,0.9),#fff);padding:18px;border-radius:12px;box-shadow:0 6px 24px rgba(11,26,43,0.06);text-align:center;max-width:720px}
.hero-card h1{margin:0;font-size:28px;color:var(--text)}
.tagline{color:var(--muted);margin:8px 0 12px}
.price{font-size:18px;margin-bottom:12px}
.cta{background:var(--accent);color:#fff;padding:10px 16px;border-radius:10px;text-decoration:none;font-weight:700}
.section{padding:36px 20px}
.section h2{margin-top:0}
.benefits{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px;list-style:none;padding:0;margin:12px 0}
.benefits li{background:#fbfdff;border-radius:10px;padding:12px;border:1px solid #eef6f8;color:var(--muted)}
.small{max-width:720px}
.site-footer{border-top:1px solid #eef2f5;padding:18px;text-align:center;color:var(--muted);font-size:14px}

/* responsive tweaks */
@media(min-width:880px){
  .hero{flex-direction:row;align-items:center;justify-content:space-between;padding:40px 12px}
  .hero-card{margin-top:0;max-width:380px;text-align:left}
}
