:root {
  font-size: 62.5%;
  --g016-primary: #ffd700;
  --g016-sky: #add8e6;
  --g016-cream: #fafad2;
  --g016-bronze: #deb887;
  --g016-bg: #2c2c2c;
  --g016-bg2: #151515;
  --g016-card: #38332b;
  --g016-text: #fffbe6;
  --g016-muted: #d8ceb3;
  --g016-border: rgba(255, 215, 0, .32);
  --g016-shadow: 0 1.6rem 4rem rgba(0, 0, 0, .36);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans Bengali", "Hind Siliguri", Arial, sans-serif;
  background: radial-gradient(circle at top left, rgba(173,216,230,.2), transparent 28rem), linear-gradient(160deg, #151515 0%, #2c2c2c 48%, #4a371f 100%);
  color: var(--g016-text);
  font-size: 1.6rem;
  line-height: 1.5rem;
  overflow-x: hidden;
}
a { color: var(--g016-primary); text-decoration: none; }
a:hover { color: var(--g016-sky); }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
.g016-page { max-width: 43rem; margin: 0 auto; min-height: 100vh; background: rgba(24,24,24,.92); box-shadow: 0 0 4rem rgba(0,0,0,.5); }
.g016-container { width: 100%; padding: 0 1.4rem; }
.g016-header { position: fixed; top: 0; left: 50%; transform: translateX(-50%); z-index: 1000; width: 100%; max-width: 43rem; background: rgba(44,44,44,.96); border-bottom: .1rem solid var(--g016-border); backdrop-filter: blur(1.2rem); }
.g016-nav { min-height: 6.4rem; display: flex; align-items: center; gap: .8rem; padding: .8rem 1rem; }
.g016-brand { display: flex; align-items: center; gap: .7rem; color: var(--g016-cream); font-weight: 900; min-width: 0; }
.g016-brand img { width: 3.2rem; height: 3.2rem; border-radius: .9rem; border: .1rem solid var(--g016-primary); }
.g016-brand span { font-size: 1.8rem; letter-spacing: .02em; }
.g016-actions { margin-left: auto; display: flex; align-items: center; gap: .55rem; }
.g016-btn { min-height: 4.4rem; border: 0; border-radius: 999rem; padding: 0 1.25rem; color: #1c1700; background: linear-gradient(135deg, var(--g016-primary), var(--g016-bronze)); font-weight: 900; cursor: pointer; box-shadow: 0 .7rem 1.5rem rgba(255,215,0,.2); transition: transform .18s ease, filter .18s ease; }
.g016-btn:hover, .g016-btn:focus { transform: translateY(-.1rem) scale(1.02); filter: brightness(1.08); }
.g016-btn.g016-login { background: linear-gradient(135deg, var(--g016-sky), var(--g016-cream)); }
.g016-menu-btn { min-width: 4.4rem; min-height: 4.4rem; border-radius: 1.4rem; border: .1rem solid var(--g016-border); background: rgba(250,250,210,.08); color: var(--g016-primary); font-size: 2.2rem; }
.g016-mobile-menu { position: fixed; top: 6.4rem; right: calc(50% - 21.5rem + 1rem); width: min(30rem, calc(100vw - 2rem)); max-height: calc(100vh - 8rem); overflow-y: auto; z-index: 9999; padding: 1rem; border: .1rem solid var(--g016-border); border-radius: 0 0 1.8rem 1.8rem; background: #201f1b; box-shadow: var(--g016-shadow); transform: translateY(-1rem); opacity: 0; pointer-events: none; transition: .2s ease; }
.g016-mobile-menu.g016-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.g016-mobile-menu a { display: flex; align-items: center; gap: .8rem; min-height: 4.4rem; padding: .8rem 1rem; color: var(--g016-cream); border-bottom: .1rem solid rgba(255,255,255,.07); }
.g016-main { padding-top: 7.4rem; }
.g016-hero { padding: 1.2rem 0 2rem; }
.g016-slider { position: relative; overflow: hidden; border-radius: 2.2rem; border: .1rem solid var(--g016-border); background: #111; min-height: 17rem; box-shadow: var(--g016-shadow); }
.g016-slide { display: none; position: relative; min-height: 17rem; cursor: pointer; }
.g016-slide.g016-active { display: block; }
.g016-slide img { width: 100%; height: 18rem; object-fit: cover; opacity: .78; }
.g016-slide-text { position: absolute; inset: auto 1.2rem 1.2rem 1.2rem; padding: 1rem; border-radius: 1.4rem; background: rgba(0,0,0,.62); border-left: .4rem solid var(--g016-primary); }
.g016-slide-text strong { display: block; color: var(--g016-primary); font-size: 2rem; line-height: 2.3rem; }
.g016-dots { position: absolute; top: 1rem; right: 1rem; display: flex; gap: .5rem; }
.g016-dot { width: .9rem; height: .9rem; border: 0; border-radius: 50%; background: rgba(255,255,255,.5); padding: 0; }
.g016-dot.g016-active { width: 2rem; border-radius: 2rem; background: var(--g016-primary); }
.g016-panel { margin: 1.4rem 0; padding: 1.5rem; border-radius: 2rem; border: .1rem solid var(--g016-border); background: linear-gradient(145deg, rgba(56,51,43,.96), rgba(35,35,35,.96)); box-shadow: 0 1rem 2rem rgba(0,0,0,.18); }
.g016-panel h1, .g016-panel h2, .g016-panel h3 { margin: 0 0 1rem; line-height: 1.22; color: var(--g016-cream); }
.g016-panel h1 { font-size: 2.55rem; color: var(--g016-primary); }
.g016-panel h2 { font-size: 2.15rem; }
.g016-panel h3 { font-size: 1.75rem; color: var(--g016-sky); }
.g016-panel p { margin: .8rem 0; color: var(--g016-muted); line-height: 2.35rem; }
.g016-kicker { color: var(--g016-sky); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: 1.15rem; }
.g016-cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.1rem; }
.g016-text-link { font-weight: 900; color: var(--g016-primary); text-decoration: underline; text-decoration-thickness: .15rem; cursor: pointer; }
.g016-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.g016-game { min-height: 11.2rem; padding: .65rem; border-radius: 1.35rem; background: rgba(250,250,210,.07); border: .1rem solid rgba(173,216,230,.16); text-align: center; cursor: pointer; transition: .18s ease; }
.g016-game:hover { transform: translateY(-.25rem); border-color: var(--g016-primary); }
.g016-game img { width: 5.8rem; height: 5.8rem; object-fit: cover; margin: 0 auto .5rem; border-radius: 1.15rem; background: #222; }
.g016-game span { display: block; color: var(--g016-cream); font-size: 1.15rem; line-height: 1.45rem; font-weight: 800; }
.g016-category-title { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin: 2rem 0 1rem; }
.g016-category-title h2 { margin: 0; font-size: 2rem; color: var(--g016-primary); }
.g016-badge { display: inline-flex; align-items: center; min-height: 2.6rem; padding: .35rem .8rem; border-radius: 99rem; background: rgba(173,216,230,.16); color: var(--g016-sky); font-weight: 900; font-size: 1.15rem; }
.g016-stat-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
.g016-stat { padding: 1rem; border-radius: 1.4rem; background: rgba(255,215,0,.08); border: .1rem solid rgba(255,215,0,.18); }
.g016-stat strong { display: block; color: var(--g016-primary); font-size: 2rem; line-height: 2.3rem; }
.g016-list { padding-left: 1.8rem; color: var(--g016-muted); }
.g016-list li { margin: .7rem 0; line-height: 2.3rem; }
.g016-payments { display: flex; flex-wrap: wrap; gap: .8rem; }
.g016-chip { display: inline-flex; align-items: center; gap: .45rem; min-height: 3.6rem; padding: .6rem 1rem; border-radius: 99rem; background: rgba(222,184,135,.12); color: var(--g016-cream); border: .1rem solid rgba(222,184,135,.25); font-weight: 800; }
.g016-review { padding: 1rem; margin: .8rem 0; border-left: .35rem solid var(--g016-sky); background: rgba(173,216,230,.08); border-radius: 1.2rem; }
.g016-footer { padding: 2rem 1.4rem 8.8rem; background: #171717; border-top: .1rem solid var(--g016-border); }
.g016-footer-logo { display: flex; align-items: center; gap: .8rem; font-weight: 900; color: var(--g016-primary); }
.g016-footer-logo img { width: 3.4rem; height: 3.4rem; border-radius: 1rem; }
.g016-footer-links { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.2rem 0; }
.g016-footer-links a { color: var(--g016-sky); font-weight: 800; }
.g016-partners { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin: 1.2rem 0; }
.g016-partner { min-height: 4rem; display: flex; align-items: center; justify-content: center; border-radius: 1.2rem; background: rgba(250,250,210,.08); color: var(--g016-cream); font-weight: 900; border: .1rem solid rgba(255,255,255,.08); }
.g016-bottom-nav { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%); z-index: 1000; width: 100%; max-width: 43rem; height: 6.2rem; display: flex; justify-content: space-around; align-items: center; background: #2c2c2c; border-top: .2rem solid var(--g016-primary); box-shadow: 0 -1rem 2.2rem rgba(0,0,0,.32); }
.g016-bottom-item { min-width: 6rem; min-height: 6rem; border: 0; background: transparent; color: var(--g016-muted); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .25rem; font-size: 1.1rem; font-weight: 800; cursor: pointer; transition: transform .18s ease, color .18s ease; position: relative; }
.g016-bottom-item i, .g016-bottom-item ion-icon, .g016-bottom-item .material-icons, .g016-bottom-item .g016-tabler { font-size: 2.4rem; line-height: 2.4rem; }
.g016-bottom-item.g016-active, .g016-bottom-item:hover { color: var(--g016-primary); transform: translateY(-.25rem) scale(1.04); }
.g016-bottom-item.g016-active::before { content: ''; position: absolute; top: .25rem; width: 2.8rem; height: .25rem; border-radius: 1rem; background: var(--g016-primary); }
.g016-mini-badge { position: absolute; top: .45rem; right: 1.1rem; min-width: 1.7rem; height: 1.7rem; border-radius: 99rem; background: var(--g016-sky); color: #111; font-size: 1rem; display: grid; place-items: center; font-weight: 900; }
.g016-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.g016-highlight { color: var(--g016-primary); font-weight: 900; }
.g016-sr-only { position: absolute; width: .1rem; height: .1rem; padding: 0; margin: -.1rem; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (min-width: 769px) { .g016-bottom-nav { display: none; } .g016-footer { padding-bottom: 2rem; } }
@media (max-width: 768px) { main { padding-bottom: 8rem; } .g016-desktop-only { display: none; } }
@media (max-width: 360px) { .g016-actions { gap: .35rem; } .g016-btn { padding: 0 .85rem; font-size: 1.25rem; } .g016-grid { grid-template-columns: repeat(3, 1fr); } .g016-panel { padding: 1.2rem; } }
