:root {
  font-size: 62.5%;
  --pg19-primary: #ff8000;
  --pg19-secondary: #48d1cc;
  --pg19-accent: #1e90ff;
  --pg19-calm: #5f9ea0;
  --pg19-bg: #11151c;
  --pg19-bg-soft: #1d2430;
  --pg19-panel: #222936;
  --pg19-text: #f0f0f0;
  --pg19-muted: #b9c6ca;
  --pg19-line: rgba(240, 240, 240, .14);
  --pg19-shadow: 0 1.2rem 3rem rgba(0, 0, 0, .35);
  --pg19-radius: 1.8rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 20% 0%, rgba(255,128,0,.22), transparent 26rem), linear-gradient(180deg, #11151c 0%, #151b24 45%, #0f141b 100%);
  color: var(--pg19-text);
  font-family: "Noto Sans Bengali", "Hind Siliguri", Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5rem;
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
body.pg19-lock { overflow: hidden; }

.pg19-page {
  width: 100%;
  min-height: 100vh;
}
.pg19-shell {
  width: min(100%, 43rem);
  margin: 0 auto;
  background: rgba(17, 21, 28, .84);
  min-height: 100vh;
  box-shadow: 0 0 4rem rgba(0,0,0,.36);
}
.pg19-container {
  width: min(100% - 2.4rem, 40.6rem);
  margin: 0 auto;
}
.pg19-wrapper { padding: 1.4rem 0; }
.pg19-grid { display: grid; gap: 1.2rem; }

.pg19-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 43rem);
  z-index: 1000;
  background: linear-gradient(135deg, rgba(17,21,28,.98), rgba(34,41,54,.98));
  border-bottom: .1rem solid var(--pg19-line);
  backdrop-filter: blur(1.4rem);
}
.pg19-header-row {
  min-height: 6.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: .8rem 1.2rem;
}
.pg19-brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  min-width: 0;
}
.pg19-logo {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  box-shadow: 0 0 0 .2rem rgba(255,128,0,.28);
}
.pg19-brand-text {
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: .02rem;
  color: #fff;
  white-space: nowrap;
}
.pg19-header-actions {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.pg19-btn,
.pg19-menu-btn,
.pg19-ghost-btn {
  min-height: 4.4rem;
  border: 0;
  border-radius: 999rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.pg19-btn {
  padding: 0 1.2rem;
  background: linear-gradient(135deg, var(--pg19-primary), #ffc05c);
  color: #161008;
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: 0 .8rem 1.8rem rgba(255,128,0,.28);
}
.pg19-btn.pg19-btn-blue {
  background: linear-gradient(135deg, var(--pg19-accent), var(--pg19-secondary));
  color: #071014;
}
.pg19-btn:hover,
.pg19-menu-btn:hover,
.pg19-ghost-btn:hover { transform: translateY(-.15rem) scale(1.02); }
.pg19-menu-btn {
  width: 4.4rem;
  background: rgba(240,240,240,.08);
  color: var(--pg19-text);
  display: grid;
  place-items: center;
  border: .1rem solid var(--pg19-line);
}
.pg19-desktop-nav { display: none; }

.pg19-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.62);
  opacity: 0;
  pointer-events: none;
  z-index: 9998;
  transition: opacity .25s ease;
}
.pg19-overlay-open { opacity: 1; pointer-events: auto; }
.pg19-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 34rem);
  height: 100vh;
  background: linear-gradient(180deg, #202938, #11151c);
  z-index: 9999;
  transform: translateX(105%);
  transition: transform .25s ease;
  padding: 1.6rem;
  border-left: .1rem solid var(--pg19-line);
  overflow-y: auto;
}
.pg19-menu-open { transform: translateX(0); }
.pg19-menu-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.pg19-menu-title { font-size: 2rem; font-weight: 900; color: var(--pg19-secondary); }
.pg19-menu-links { display: grid; gap: .8rem; }
.pg19-menu-links a {
  padding: 1.2rem;
  border-radius: 1.4rem;
  background: rgba(255,255,255,.06);
  border: .1rem solid var(--pg19-line);
  text-decoration: none;
  font-weight: 800;
}
.pg19-menu-links a.pg19-current { color: var(--pg19-primary); border-color: rgba(255,128,0,.5); }

.pg19-main { padding-top: 7.6rem; }
.pg19-hero { padding: 1.2rem 0 0; }
.pg19-slider {
  position: relative;
  border-radius: 2.2rem;
  overflow: hidden;
  min-height: 18.6rem;
  background: var(--pg19-panel);
  box-shadow: var(--pg19-shadow);
}
.pg19-slide { display: none; position: relative; }
.pg19-slide-active { display: block; animation: pg19Fade .5s ease; }
.pg19-slide img { width: 100%; aspect-ratio: 16/8.8; object-fit: cover; }
.pg19-slide-copy {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  padding: 1.1rem;
  background: rgba(17,21,28,.74);
  border: .1rem solid rgba(255,255,255,.16);
  border-radius: 1.4rem;
  backdrop-filter: blur(.9rem);
}
.pg19-slide-copy strong { color: var(--pg19-primary); font-size: 1.7rem; }
.pg19-slide-copy span { display: block; color: var(--pg19-text); margin-top: .4rem; }
.pg19-slider-controls {
  position: absolute;
  inset: 50% .8rem auto .8rem;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.pg19-round-btn {
  width: 3.8rem;
  height: 3.8rem;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  color: #fff;
  pointer-events: auto;
}
.pg19-dots { position: absolute; right: 1.2rem; top: 1.2rem; display: flex; gap: .5rem; }
.pg19-dot { width: .8rem; height: .8rem; border-radius: 50%; background: rgba(255,255,255,.45); border: 0; }
.pg19-dot-active { width: 2rem; border-radius: 2rem; background: var(--pg19-primary); }
@keyframes pg19Fade { from { opacity: .35; transform: scale(1.01); } to { opacity: 1; transform: scale(1); } }

.pg19-section { padding: 1.5rem 0; }
.pg19-section-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.pg19-kicker { color: var(--pg19-secondary); font-weight: 900; font-size: 1.2rem; letter-spacing: .08rem; text-transform: uppercase; }
.pg19-title { margin: .3rem 0 .8rem; font-size: 2.7rem; line-height: 1.15; color: #fff; }
.pg19-subtitle { color: var(--pg19-muted); line-height: 1.6; margin: 0; }
.pg19-h2 { margin: 0; font-size: 2.1rem; line-height: 1.25; color: #fff; }
.pg19-h3 { margin: 0 0 .7rem; font-size: 1.65rem; line-height: 1.3; color: var(--pg19-secondary); }
.pg19-link { color: var(--pg19-primary); font-weight: 900; text-decoration-thickness: .2rem; }
.pg19-strong { color: var(--pg19-primary); font-weight: 900; }
.pg19-card {
  border-radius: var(--pg19-radius);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border: .1rem solid var(--pg19-line);
  box-shadow: 0 .8rem 2.2rem rgba(0,0,0,.18);
  padding: 1.35rem;
}
.pg19-card-accent { border-color: rgba(255,128,0,.36); background: linear-gradient(135deg, rgba(255,128,0,.13), rgba(72,209,204,.07)); }
.pg19-pill-row { display: flex; gap: .7rem; flex-wrap: wrap; }
.pg19-pill { padding: .7rem 1rem; border-radius: 999rem; background: rgba(72,209,204,.11); border: .1rem solid rgba(72,209,204,.28); color: #dff; font-weight: 800; }
.pg19-cta-row { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1rem; }
.pg19-wide-btn { min-height: 4.8rem; display: inline-flex; align-items: center; justify-content: center; gap: .7rem; padding: 0 1.5rem; text-decoration: none; }

.pg19-games-block { margin-top: 1.2rem; }
.pg19-category-card { padding: 1.2rem; border-radius: 1.8rem; background: rgba(34,41,54,.72); border: .1rem solid var(--pg19-line); margin-bottom: 1.2rem; }
.pg19-category-title { display: flex; align-items: center; gap: .8rem; margin: 0 0 1rem; font-size: 1.8rem; color: #fff; }
.pg19-category-title i,
.pg19-category-title span { color: var(--pg19-primary); }
.pg19-game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.pg19-game-tile {
  min-height: 8.8rem;
  padding: .55rem;
  border-radius: 1.2rem;
  background: rgba(255,255,255,.055);
  border: .1rem solid rgba(255,255,255,.1);
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease;
}
.pg19-game-tile:hover { transform: translateY(-.2rem); border-color: rgba(255,128,0,.55); }
.pg19-game-tile img { width: 5.2rem; height: 5.2rem; object-fit: cover; border-radius: 1rem; margin: 0 auto .45rem; }
.pg19-game-tile span { display: block; font-size: 1.12rem; line-height: 1.25; font-weight: 800; color: #fff; }
.pg19-stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
.pg19-stat { padding: 1rem; border-radius: 1.4rem; background: rgba(30,144,255,.1); border: .1rem solid rgba(30,144,255,.2); }
.pg19-stat strong { display: block; font-size: 2rem; color: var(--pg19-primary); }
.pg19-step-list { counter-reset: pg19Step; display: grid; gap: .9rem; padding: 0; margin: 0; list-style: none; }
.pg19-step-list li { counter-increment: pg19Step; position: relative; padding: 1rem 1rem 1rem 4.4rem; border-radius: 1.4rem; background: rgba(255,255,255,.055); }
.pg19-step-list li::before { content: counter(pg19Step); position: absolute; left: 1rem; top: 1rem; width: 2.4rem; height: 2.4rem; border-radius: 50%; background: var(--pg19-primary); color: #111; display: grid; place-items: center; font-weight: 900; }
.pg19-review { display: grid; gap: .9rem; }
.pg19-quote { border-left: .35rem solid var(--pg19-secondary); padding-left: 1rem; color: #eafafa; }
.pg19-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 1.4rem; }
.pg19-table th,
.pg19-table td { padding: 1rem; border-bottom: .1rem solid var(--pg19-line); text-align: left; }
.pg19-table th { color: var(--pg19-secondary); background: rgba(255,255,255,.055); }
.pg19-payment { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.pg19-pay-item { min-height: 5.4rem; display: grid; place-items: center; border-radius: 1.2rem; background: rgba(255,255,255,.06); border: .1rem solid var(--pg19-line); font-weight: 900; }

.pg19-footer { padding: 2rem 0 8.8rem; background: linear-gradient(180deg, rgba(34,41,54,.7), #0d1117); border-top: .1rem solid var(--pg19-line); margin-top: 1.5rem; }
.pg19-footer-links { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1rem 0; }
.pg19-footer-links a { padding: .8rem 1rem; border-radius: 999rem; background: rgba(255,255,255,.06); text-decoration: none; color: var(--pg19-muted); font-weight: 800; }
.pg19-partners { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin: 1rem 0; }
.pg19-partner { border-radius: 1rem; padding: .8rem; background: rgba(255,255,255,.06); text-align: center; font-weight: 900; color: var(--pg19-secondary); }
.pg19-copy { color: var(--pg19-muted); font-size: 1.25rem; }

.pg19-bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100%, 43rem);
  height: 6.2rem;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #18202b;
  border-top: .1rem solid rgba(255,128,0,.28);
  box-shadow: 0 -1rem 2.5rem rgba(0,0,0,.38);
}
.pg19-bottom-item {
  min-width: 6rem;
  min-height: 6rem;
  border: 0;
  background: transparent;
  color: var(--pg19-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  font-weight: 900;
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform .18s ease, color .18s ease;
}
.pg19-bottom-item i,
.pg19-bottom-item ion-icon,
.pg19-bottom-item .material-icons-outlined { font-size: 2.35rem; line-height: 1; }
.pg19-bottom-item:hover,
.pg19-bottom-item.pg19-current { color: var(--pg19-primary); transform: translateY(-.25rem) scale(1.04); }
.pg19-badge { position: absolute; margin-left: 2.8rem; margin-top: -3rem; background: var(--pg19-primary); color: #111; border-radius: 999rem; font-size: .95rem; padding: .1rem .45rem; }

.pg19-faq details { border-radius: 1.3rem; background: rgba(255,255,255,.055); border: .1rem solid var(--pg19-line); padding: 1rem; margin-bottom: .8rem; }
.pg19-faq summary { cursor: pointer; font-weight: 900; color: #fff; }
.pg19-faq p { color: var(--pg19-muted); }

@media (max-width: 768px) {
  .pg19-main { padding-bottom: 8rem; }
}
@media (min-width: 769px) {
  body { background: #0f141b; }
  .pg19-shell,
  .pg19-header,
  .pg19-bottom-nav { width: min(100%, 118rem); }
  .pg19-container { width: min(100% - 4rem, 112rem); }
  .pg19-bottom-nav { display: none; }
  .pg19-menu-btn { display: none; }
  .pg19-desktop-nav { display: flex; gap: 1rem; align-items: center; }
  .pg19-desktop-nav a { color: var(--pg19-muted); text-decoration: none; font-weight: 800; }
  .pg19-game-grid { grid-template-columns: repeat(8, 1fr); }
  .pg19-stat-grid { grid-template-columns: repeat(4, 1fr); }
  .pg19-payment { grid-template-columns: repeat(6, 1fr); }
  .pg19-title { font-size: 4rem; }
  .pg19-slide img { aspect-ratio: 18/7; }
}
