@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@400;600;700;800&display=swap');

:root {
  font-size: 62.5%;
  --v589-primary: #d2691e;
  --v589-primary-soft: #ff9d4d;
  --v589-bg: #0e1621;
  --v589-panel: #182434;
  --v589-card: #213047;
  --v589-ink: #f2fff2;
  --v589-text: #d8e6db;
  --v589-muted: #999999;
  --v589-lime: #9aff9a;
  --v589-mint: #90ee90;
  --v589-line: rgba(154,255,154,.18);
  --v589-shadow: 0 1.6rem 4rem rgba(0,0,0,.32);
  --v589-radius: 2.2rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: radial-gradient(circle at top left, rgba(210,105,30,.24), transparent 28rem), linear-gradient(180deg, #0e1621 0%, #121b28 42%, #0b111a 100%);
  color: var(--v589-text);
  font-family: 'Noto Sans Bengali', Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5rem;
  overflow-x: hidden;
}
body.v589-lock { overflow: hidden; }
a { color: var(--v589-lime); text-decoration: none; font-weight: 700; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

.v589-shell { width: min(100%, 430px); margin: 0 auto; background: rgba(14,22,33,.86); min-height: 100vh; position: relative; overflow: hidden; }
.v589-container { width: calc(100% - 2.4rem); margin: 0 auto; }
.v589-wrapper { padding: 1.4rem; }
.v589-grid { display: grid; gap: 1.2rem; }
.v589-main { padding-top: 7.6rem; }
.v589-section { margin: 1.6rem 0; padding: 1.5rem; background: linear-gradient(145deg, rgba(33,48,71,.96), rgba(18,29,43,.98)); border: .1rem solid var(--v589-line); border-radius: var(--v589-radius); box-shadow: var(--v589-shadow); }
.v589-section h2, .v589-section h3 { color: var(--v589-ink); line-height: 1.25; margin: 0 0 1rem; }
.v589-section p { margin: .8rem 0; line-height: 1.7; }
.v589-kicker { color: var(--v589-lime); font-weight: 800; letter-spacing: .04rem; font-size: 1.25rem; text-transform: uppercase; }
.v589-highlight { color: var(--v589-lime); font-weight: 800; }

.v589-header { position: fixed; top: 0; left: 50%; transform: translateX(-50%); width: min(100%, 430px); z-index: 1000; background: rgba(14,22,33,.94); backdrop-filter: blur(1.2rem); border-bottom: .1rem solid var(--v589-line); }
.v589-header-inner { display: flex; align-items: center; gap: .8rem; min-height: 6.6rem; padding: .8rem 1rem; }
.v589-brand { display: flex; align-items: center; gap: .8rem; color: var(--v589-ink); min-width: 0; flex: 1; }
.v589-logo { width: 3.2rem; height: 3.2rem; border-radius: 1rem; box-shadow: 0 0 0 .2rem rgba(154,255,154,.2); }
.v589-brand-name { font-size: 2rem; font-weight: 900; color: var(--v589-lime); white-space: nowrap; }
.v589-actions { display: flex; gap: .6rem; align-items: center; }
.v589-btn { border: 0; border-radius: 999px; min-height: 4.4rem; padding: 0 1.25rem; background: linear-gradient(135deg, var(--v589-primary), #f2a64c); color: #121212; font-weight: 900; cursor: pointer; box-shadow: 0 .8rem 2rem rgba(210,105,30,.26); display: inline-flex; align-items: center; justify-content: center; gap: .45rem; }
.v589-btn:hover, .v589-btn:focus { transform: translateY(-.1rem); filter: brightness(1.08); }
.v589-btn-alt { background: transparent; color: var(--v589-lime); border: .1rem solid rgba(154,255,154,.45); box-shadow: none; }
.v589-menu-toggle { width: 4.4rem; height: 4.4rem; border-radius: 1.4rem; border: .1rem solid var(--v589-line); background: #182434; color: var(--v589-lime); font-size: 2.2rem; cursor: pointer; }
.v589-desktop-nav { display: none; gap: 1rem; align-items: center; }
.v589-mobile-menu { position: fixed; inset: 0; transform: translateY(-105%); transition: transform .28s ease; z-index: 9999; background: linear-gradient(180deg, #0e1621, #1c2a3d); padding: 8rem 1.6rem 2rem; }
.v589-mobile-menu.v589-menu-open { transform: translateY(0); }
.v589-menu-list { display: grid; gap: .9rem; }
.v589-menu-list a { min-height: 4.8rem; border-radius: 1.4rem; display: flex; align-items: center; padding: 0 1.2rem; background: rgba(255,255,255,.055); border: .1rem solid var(--v589-line); }
.v589-menu-list a.v589-active { background: rgba(210,105,30,.26); color: #fff; }

.v589-hero { padding: 1.4rem 1.2rem 0; }
.v589-slider { position: relative; border-radius: 2.4rem; overflow: hidden; border: .1rem solid var(--v589-line); background: #182434; min-height: 18rem; }
.v589-slide { display: none; position: relative; cursor: pointer; }
.v589-slide.v589-active { display: block; animation: v589Fade .55s ease; }
.v589-slide img { width: 100%; aspect-ratio: 16/8.5; object-fit: cover; }
.v589-slide-caption { position: absolute; left: 1.2rem; right: 1.2rem; bottom: 1.2rem; padding: 1rem; border-radius: 1.6rem; background: rgba(14,22,33,.78); color: #fff; }
.v589-dots { display: flex; gap: .6rem; justify-content: center; margin-top: .8rem; }
.v589-dot { width: .9rem; height: .9rem; border-radius: 50%; border: 0; background: #3c3c3c; cursor: pointer; }
.v589-dot.v589-active { background: var(--v589-lime); width: 2rem; border-radius: 999px; }
@keyframes v589Fade { from { opacity: .4; transform: scale(1.01); } to { opacity: 1; transform: scale(1); } }

.v589-title-card { margin: 1.4rem 0; padding: 1.6rem; background: linear-gradient(135deg, rgba(210,105,30,.28), rgba(154,255,154,.09)); border-radius: 2.4rem; border: .1rem solid var(--v589-line); }
.v589-title-card h1 { margin: 0 0 1rem; font-size: 2.7rem; line-height: 1.18; color: #fff; }
.v589-title-card p { line-height: 1.75; margin: 0; }
.v589-cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.2rem; }
.v589-text-link { color: var(--v589-lime); font-weight: 900; text-decoration: underline; text-decoration-thickness: .2rem; text-underline-offset: .25rem; cursor: pointer; }

.v589-card { background: rgba(255,255,255,.055); border: .1rem solid var(--v589-line); border-radius: 1.8rem; padding: 1.2rem; }
.v589-stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.v589-stat { padding: 1.2rem; border-radius: 1.6rem; background: rgba(14,22,33,.72); border: .1rem solid rgba(210,105,30,.25); }
.v589-stat strong { color: var(--v589-lime); font-size: 2rem; display: block; }
.v589-mini-list { display: grid; gap: .8rem; padding-left: 0; list-style: none; }
.v589-mini-list li { padding: .9rem 1rem; border-radius: 1.2rem; background: rgba(144,238,144,.07); border-left: .35rem solid var(--v589-primary); line-height: 1.6; }

.v589-category { margin-top: 1.4rem; }
.v589-category-title { display: flex; justify-content: space-between; align-items: center; color: #fff; margin: 0 0 .9rem; }
.v589-game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.v589-game { min-height: 10.8rem; padding: .65rem; border-radius: 1.4rem; background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); border: .1rem solid var(--v589-line); display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: .55rem; cursor: pointer; color: var(--v589-text); font-weight: 700; font-size: 1.1rem; text-align: center; line-height: 1.25; }
.v589-game img { width: 5.6rem; height: 5.6rem; border-radius: 1.2rem; object-fit: cover; box-shadow: 0 .5rem 1.4rem rgba(0,0,0,.28); }
.v589-game:hover { border-color: var(--v589-lime); transform: translateY(-.15rem); }

.v589-payment { display: flex; flex-wrap: wrap; gap: .8rem; }
.v589-chip { padding: .75rem 1rem; border-radius: 999px; background: rgba(154,255,154,.1); border: .1rem solid rgba(154,255,154,.22); font-weight: 800; color: #fff; }
.v589-review { border-left: .35rem solid var(--v589-lime); padding-left: 1rem; margin: 1rem 0; }
.v589-winners { display: grid; gap: .7rem; }
.v589-winner { display: flex; justify-content: space-between; gap: 1rem; padding: .8rem 1rem; border-radius: 1.1rem; background: rgba(0,0,0,.18); }

.v589-footer { margin-top: 2rem; padding: 2rem 1.2rem 8.8rem; background: linear-gradient(180deg, rgba(24,36,52,.92), #0b111a); border-top: .1rem solid var(--v589-line); }
.v589-footer-brand { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.v589-footer-logo { width: 4rem; height: 4rem; border-radius: 1.2rem; }
.v589-footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin: 1.2rem 0; }
.v589-footer-links a { color: var(--v589-text); background: rgba(255,255,255,.055); border-radius: 1rem; padding: .9rem; font-size: 1.3rem; }
.v589-partners { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1rem 0; }
.v589-partner { font-size: 1.2rem; padding: .65rem .8rem; border-radius: .9rem; color: #111; background: var(--v589-mint); font-weight: 900; }
.v589-copy { color: var(--v589-muted); font-size: 1.25rem; line-height: 1.6; }

.v589-bottom-nav { position: fixed; left: 50%; bottom: 0; transform: translateX(-50%); width: min(100%, 430px); height: 6.2rem; z-index: 1000; display: flex; justify-content: space-around; align-items: center; background: #0e1621; border-top: .1rem solid rgba(154,255,154,.22); box-shadow: 0 -1rem 3rem rgba(0,0,0,.35); }
.v589-bottom-btn { min-width: 6rem; min-height: 6rem; border: 0; background: transparent; color: #c6d6ce; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .25rem; font-size: 1.05rem; cursor: pointer; border-radius: 1.4rem; transition: .18s ease; }
.v589-bottom-btn i, .v589-bottom-btn .material-icons, .v589-bottom-btn ion-icon { font-size: 2.35rem; line-height: 1; }
.v589-bottom-btn svg { width: 2.4rem; height: 2.4rem; }
.v589-bottom-btn.v589-active, .v589-bottom-btn:hover { color: var(--v589-lime); transform: scale(1.06); background: rgba(210,105,30,.16); }
.v589-badge { position: absolute; margin-left: 2.4rem; margin-top: -2.2rem; background: var(--v589-primary); color: #fff; border-radius: 999px; padding: .1rem .45rem; font-size: .95rem; }

.v589-page-hero { padding: 1.6rem; border-radius: 2.4rem; background: linear-gradient(135deg, rgba(210,105,30,.32), rgba(144,238,144,.10)); border: .1rem solid var(--v589-line); }
.v589-page-hero h1 { margin: 0 0 1rem; color: #fff; font-size: 2.55rem; line-height: 1.22; }
.v589-steps { counter-reset: v589step; display: grid; gap: 1rem; }
.v589-step { counter-increment: v589step; position: relative; padding: 1.1rem 1.1rem 1.1rem 4.8rem; border-radius: 1.4rem; background: rgba(255,255,255,.055); border: .1rem solid var(--v589-line); }
.v589-step:before { content: counter(v589step); position: absolute; left: 1rem; top: 1rem; width: 2.8rem; height: 2.8rem; border-radius: 50%; display: grid; place-items: center; background: var(--v589-primary); color: #111; font-weight: 900; }
.v589-faq details { background: rgba(255,255,255,.055); border: .1rem solid var(--v589-line); border-radius: 1.3rem; padding: 1rem; margin: .9rem 0; }
.v589-faq summary { cursor: pointer; color: #fff; font-weight: 800; line-height: 1.5; }
.v589-faq p { margin: .8rem 0 0; }

@media (min-width: 769px) {
  .v589-bottom-nav { display: none; }
  .v589-shell, .v589-header { max-width: 1180px; width: 100%; }
  .v589-shell { background: rgba(14,22,33,.78); }
  .v589-container { width: min(1120px, calc(100% - 4rem)); }
  .v589-menu-toggle { display: none; }
  .v589-desktop-nav { display: flex; }
  .v589-mobile-menu { display: none; }
  .v589-main { padding-top: 8.2rem; }
  .v589-game-grid { grid-template-columns: repeat(8, 1fr); }
  .v589-section { padding: 2rem; }
  .v589-title-card h1 { font-size: 3.8rem; }
  .v589-footer { padding-bottom: 2.2rem; }
}

@media (max-width: 768px) {
  .v589-main { padding-bottom: 8rem; }
  .v589-actions .v589-btn { padding: 0 .95rem; font-size: 1.25rem; }
}

@media (max-width: 360px) {
  .v589-game-grid { grid-template-columns: repeat(3, 1fr); }
  .v589-brand-name { font-size: 1.7rem; }
  .v589-actions .v589-btn-alt { display: none; }
}
