@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons+Outlined');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');
@import url('https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/tabler-icons.min.css');

:root {
  font-size: 62.5%;
  --g048-bg: #0A0A0A;
  --g048-panel: #17110f;
  --g048-panel-2: #231a19;
  --g048-primary: #6495ED;
  --g048-accent: #FF91A4;
  --g048-gold: #FFC0CB;
  --g048-earth: #8B7355;
  --g048-text: #fff7fb;
  --g048-muted: #d5c1c8;
  --g048-line: rgba(255, 192, 203, .18);
  --g048-shadow: 0 1.8rem 4rem rgba(0, 0, 0, .38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "Noto Sans Bengali", system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5rem;
  background:
    radial-gradient(circle at 18% 10%, rgba(100, 149, 237, .2), transparent 28rem),
    radial-gradient(circle at 88% 22%, rgba(255, 145, 164, .16), transparent 25rem),
    linear-gradient(180deg, #0a0a0a 0%, #120d10 46%, #070707 100%);
  color: var(--g048-text);
  overflow-x: hidden;
}
body.g048-lock { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.g048-page {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(18, 12, 14, .96), rgba(10, 10, 10, .98));
  border-left: 1px solid rgba(255,255,255,.05);
  border-right: 1px solid rgba(255,255,255,.05);
  position: relative;
}
.g048-container { width: min(100% - 2.4rem, 406px); margin: 0 auto; }
.g048-wrapper { padding: 8.4rem 0 2.4rem; }
.g048-grid { display: grid; gap: 1.2rem; }
.g048-section { padding: 1.8rem 0; }
.g048-card {
  background: linear-gradient(145deg, rgba(35,26,25,.94), rgba(14,14,14,.96));
  border: 1px solid var(--g048-line);
  border-radius: 2rem;
  box-shadow: var(--g048-shadow);
  padding: 1.6rem;
}
.g048-card-lite { background: rgba(255,255,255,.045); border: 1px solid var(--g048-line); border-radius: 1.6rem; padding: 1.2rem; }
.g048-kicker { color: var(--g048-accent); text-transform: uppercase; letter-spacing: .12rem; font-size: 1.1rem; font-weight: 800; }
.g048-title { font-size: clamp(2.4rem, 7vw, 3.4rem); line-height: 1.08; margin: .6rem 0 1rem; }
.g048-subtitle { color: var(--g048-muted); line-height: 1.62; margin: 0 0 1.2rem; }
.g048-h2 { font-size: 2.2rem; line-height: 1.18; margin: 0 0 1rem; }
.g048-h3 { font-size: 1.7rem; margin: 0 0 .6rem; color: var(--g048-gold); }
.g048-text { color: var(--g048-muted); line-height: 1.65; }
.g048-link { color: var(--g048-gold); font-weight: 800; text-decoration: underline; text-decoration-color: var(--g048-accent); }
.g048-promo-text { color: var(--g048-accent); font-weight: 900; cursor: pointer; text-decoration: underline; }

.g048-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 430px);
  z-index: 1000;
  background: rgba(10,10,10,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--g048-line);
  transition: .24s ease;
}
.g048-header-compact { box-shadow: 0 1rem 2rem rgba(0,0,0,.42); }
.g048-nav { min-height: 6.6rem; display: flex; align-items: center; gap: .8rem; padding: .8rem 1.2rem; }
.g048-brand { display: flex; align-items: center; gap: .8rem; min-width: 0; flex: 1; text-decoration: none; }
.g048-logo { width: 3.2rem; height: 3.2rem; border-radius: .9rem; box-shadow: 0 0 0 .2rem rgba(255,145,164,.25); }
.g048-brand-name { font-weight: 900; font-size: 1.45rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.g048-header-actions { display: flex; gap: .5rem; align-items: center; }
.g048-btn {
  min-height: 4.4rem;
  min-width: 4.4rem;
  border: 0;
  border-radius: 999px;
  color: #08080a;
  background: linear-gradient(135deg, var(--g048-gold), var(--g048-accent));
  font-weight: 900;
  padding: .9rem 1.15rem;
  cursor: pointer;
  box-shadow: 0 .8rem 1.8rem rgba(255,145,164,.28);
  transition: transform .2s ease, filter .2s ease;
}
.g048-btn:hover, .g048-btn:active { transform: translateY(-1px) scale(.98); filter: brightness(1.06); }
.g048-btn-alt { background: linear-gradient(135deg, var(--g048-primary), #b8cdf8); color: #061027; }
.g048-btn-ghost { background: rgba(255,255,255,.07); color: var(--g048-text); border: 1px solid var(--g048-line); box-shadow: none; }
.g048-menu-toggle { padding: .8rem; display: grid; place-items: center; }
.g048-menu-toggle i { font-size: 2.4rem; }

.g048-desktop-nav { display: none; }
.g048-mobile-menu {
  position: fixed;
  inset: 0;
  width: min(100%, 430px);
  margin: 0 auto;
  z-index: 9999;
  background: linear-gradient(180deg, rgba(10,10,10,.98), rgba(35,26,25,.98));
  transform: translateY(-105%);
  transition: transform .28s ease;
  padding: 8rem 1.6rem 2rem;
}
.g048-menu-open { transform: translateY(0); }
.g048-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.8rem;
  margin-bottom: .8rem;
  padding: 1rem 1.2rem;
  border-radius: 1.4rem;
  text-decoration: none;
  background: rgba(255,255,255,.055);
  border: 1px solid var(--g048-line);
  font-weight: 800;
}
.g048-menu-close { position: absolute; right: 1.2rem; top: 1.2rem; }

.g048-hero { padding-top: 1rem; }
.g048-hero-panel { position: relative; overflow: hidden; }
.g048-hero-panel::before { content: ""; position: absolute; inset: -40% -20% auto auto; width: 18rem; height: 18rem; border-radius: 50%; background: rgba(100,149,237,.24); filter: blur(20px); }
.g048-hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
.g048-badges { display: flex; gap: .7rem; flex-wrap: wrap; margin: 1.2rem 0; }
.g048-badge { font-size: 1.15rem; padding: .55rem .8rem; border-radius: 999px; background: rgba(100,149,237,.15); color: #dfe9ff; border: 1px solid rgba(100,149,237,.28); }

.g048-slider { position: relative; margin-top: 1.4rem; border-radius: 2rem; overflow: hidden; border: 1px solid var(--g048-line); }
.g048-slide { display: none; min-height: 17rem; position: relative; cursor: pointer; }
.g048-slide-active { display: block; }
.g048-slide img { width: 100%; height: 18rem; object-fit: cover; }
.g048-slide-caption { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; padding: 1rem; border-radius: 1.4rem; background: rgba(10,10,10,.72); backdrop-filter: blur(10px); font-weight: 900; }
.g048-dots { position: absolute; right: 1rem; top: 1rem; display: flex; gap: .5rem; }
.g048-dot { width: .9rem; height: .9rem; border-radius: 50%; border: 0; background: rgba(255,255,255,.5); padding: 0; }
.g048-dot-active { background: var(--g048-accent); }

.g048-category { margin-bottom: 1.4rem; }
.g048-category-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .9rem; }
.g048-game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.g048-game { text-decoration: none; text-align: center; min-height: 9.4rem; padding: .7rem .45rem; border-radius: 1.4rem; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.08); transition: .2s ease; }
.g048-game:hover, .g048-game:active { transform: translateY(-.2rem); border-color: rgba(255,145,164,.4); }
.g048-game img { width: 5.2rem; height: 5.2rem; margin: 0 auto .55rem; border-radius: 1.2rem; object-fit: cover; }
.g048-game span { display: block; font-size: 1.05rem; line-height: 1.18; color: var(--g048-text); }

.g048-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: .8rem; }
.g048-stat { padding: 1rem .7rem; border-radius: 1.4rem; background: linear-gradient(180deg, rgba(100,149,237,.14), rgba(255,145,164,.08)); text-align: center; }
.g048-stat strong { display: block; color: var(--g048-gold); font-size: 1.8rem; }
.g048-steps { counter-reset: g048step; display: grid; gap: .9rem; }
.g048-step { position: relative; padding-left: 4.4rem; }
.g048-step::before { counter-increment: g048step; content: counter(g048step); position: absolute; left: 0; top: 0; width: 3.2rem; height: 3.2rem; border-radius: 50%; display: grid; place-items: center; background: var(--g048-primary); color: #061027; font-weight: 900; }
.g048-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 1.4rem; font-size: 1.3rem; }
.g048-table th, .g048-table td { padding: .9rem; border-bottom: 1px solid var(--g048-line); text-align: left; }
.g048-table th { color: var(--g048-gold); background: rgba(255,255,255,.05); }
.g048-chip-row { display: flex; flex-wrap: wrap; gap: .7rem; }
.g048-chip { padding: .75rem .9rem; border-radius: 999px; background: rgba(139,115,85,.2); border: 1px solid rgba(255,192,203,.18); font-weight: 700; }
.g048-review { border-left: .3rem solid var(--g048-accent); padding-left: 1rem; }

.g048-footer { margin-top: 2rem; padding: 2rem 1.2rem 9rem; background: #080808; border-top: 1px solid var(--g048-line); }
.g048-footer-links { display: grid; grid-template-columns: repeat(2,1fr); gap: .7rem; margin: 1.2rem 0; }
.g048-footer-links a { padding: .9rem; border-radius: 1.2rem; background: rgba(255,255,255,.05); color: var(--g048-muted); text-decoration: none; font-weight: 700; }
.g048-footer-ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.2rem 0; }
.g048-partners { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1rem; }
.g048-partner { padding: .6rem .85rem; border-radius: .9rem; background: rgba(100,149,237,.12); color: #dfe9ff; font-weight: 800; font-size: 1.15rem; }

.g048-bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100%, 430px);
  height: 62px;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #0A0A0A;
  border-top: 1px solid rgba(255,192,203,.25);
  box-shadow: 0 -1rem 2rem rgba(0,0,0,.4);
}
.g048-bottom-btn {
  min-width: 60px;
  min-height: 60px;
  border: 0;
  background: transparent;
  color: var(--g048-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  cursor: pointer;
  transition: transform .18s ease, color .18s ease;
}
.g048-bottom-btn i, .g048-bottom-btn .material-icons-outlined { font-size: 2.4rem; line-height: 1; }
.g048-bottom-btn span { font-size: 1.05rem; line-height: 1; font-weight: 800; }
.g048-bottom-btn:active { transform: scale(.92); color: var(--g048-accent); }
.g048-bottom-btn.g048-active { color: var(--g048-gold); }
.g048-bottom-btn.g048-active i { filter: drop-shadow(0 0 .8rem rgba(255,145,164,.7)); }

@media (max-width: 768px) {
  main { padding-bottom: 80px; }
}
@media (min-width: 769px) {
  .g048-page { max-width: 1100px; }
  .g048-header, .g048-bottom-nav { width: min(100%, 1100px); }
  .g048-container { width: min(100% - 4rem, 1040px); }
  .g048-desktop-nav { display: flex; gap: 1rem; align-items: center; }
  .g048-desktop-nav a { color: var(--g048-muted); text-decoration: none; font-weight: 800; }
  .g048-menu-toggle, .g048-bottom-nav { display: none; }
  .g048-game-grid { grid-template-columns: repeat(8, 1fr); }
  .g048-slide img { height: 28rem; }
  .g048-footer { padding-bottom: 2rem; }
}
