:root {
  font-size: 62.5%;
  --g573-primary: #800080;
  --g573-secondary: #ee82ee;
  --g573-bg: #181018;
  --g573-panel: #2c2c2c;
  --g573-deep: #250025;
  --g573-accent: #ff4500;
  --g573-text: #fff7ff;
  --g573-muted: #d9b8dc;
  --g573-line: rgba(238, 130, 238, 0.22);
  --g573-shadow: 0 1.4rem 3.2rem rgba(0, 0, 0, 0.34);
}
* { 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, #4e0054 0%, var(--g573-bg) 48%, #090509 100%);
  color: var(--g573-text);
  font-size: 1.5rem;
  line-height: 1.5rem;
  overflow-x: hidden;
}
body.g573-lock { overflow: hidden; }
a { color: var(--g573-secondary); text-decoration: none; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
.g573-page { width: 100%; min-height: 100vh; }
.g573-container, .g573-wrapper { width: min(100%, 43rem); margin: 0 auto; padding: 0 1.4rem; }
.g573-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(24, 16, 24, 0.94); border-bottom: 1px solid var(--g573-line); backdrop-filter: blur(1.4rem);
}
.g573-header-row { height: 6.2rem; display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; }
.g573-brand { display: flex; align-items: center; gap: 0.8rem; min-width: 9rem; color: var(--g573-text); font-weight: 900; letter-spacing: 0.02em; }
.g573-brand-mark {
  width: 3.2rem; height: 3.2rem; display: grid; place-items: center; border-radius: 1rem; color: #fff;
  background: linear-gradient(135deg, var(--g573-primary), var(--g573-accent)); box-shadow: 0 0 1.6rem rgba(255, 69, 0, 0.45);
}
.g573-brand-text { font-size: 1.9rem; }
.g573-actions { display: flex; align-items: center; gap: 0.6rem; }
.g573-btn {
  min-height: 4.4rem; border: 0; border-radius: 999px; padding: 0 1.4rem; cursor: pointer; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--g573-accent), #ff7a3d); box-shadow: 0 0.8rem 1.8rem rgba(255, 69, 0, 0.28);
  transition: transform 0.18s ease, filter 0.18s ease;
}
.g573-btn:hover, .g573-btn:focus { transform: translateY(-0.1rem) scale(1.02); filter: brightness(1.08); }
.g573-btn-alt { background: linear-gradient(135deg, var(--g573-primary), var(--g573-secondary)); color: #fff; }
.g573-btn-small { min-height: 3.8rem; padding: 0 1.1rem; font-size: 1.25rem; }
.g573-menu-btn {
  width: 4.4rem; height: 4.4rem; border: 1px solid var(--g573-line); border-radius: 1.2rem; color: var(--g573-text);
  background: rgba(128, 0, 128, 0.25); cursor: pointer;
}
.g573-desktop-nav { display: none; gap: 1.2rem; align-items: center; }
.g573-desktop-nav a { font-weight: 800; color: var(--g573-text); opacity: 0.88; }
.g573-mobile-menu { position: fixed; inset: 0; z-index: 9999; display: none; background: rgba(8, 3, 8, 0.72); }
.g573-menu-open { display: block; }
.g573-menu-panel {
  width: min(88vw, 34rem); height: 100%; margin-left: auto; padding: 2rem; overflow-y: auto;
  background: linear-gradient(180deg, #310032, var(--g573-panel)); box-shadow: var(--g573-shadow);
}
.g573-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.4rem; }
.g573-menu-links { display: grid; gap: 1rem; }
.g573-menu-links a, .g573-menu-links button {
  min-height: 4.8rem; border: 1px solid var(--g573-line); border-radius: 1.4rem; padding: 1.2rem; text-align: left;
  color: var(--g573-text); background: rgba(255, 255, 255, 0.05); font-weight: 800;
}
.g573-main { padding-top: 7.4rem; }
.g573-hero { padding: 1.2rem 0 2rem; }
.g573-carousel {
  position: relative; height: 19rem; overflow: hidden; border-radius: 2.2rem; border: 1px solid var(--g573-line);
  box-shadow: var(--g573-shadow); background: var(--g573-deep);
}
.g573-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.45s ease; cursor: pointer; }
.g573-slide-active { opacity: 1; }
.g573-slide img { width: 100%; height: 100%; object-fit: cover; }
.g573-hero-card, .g573-card {
  border: 1px solid var(--g573-line); border-radius: 2rem;
  background: linear-gradient(180deg, rgba(128, 0, 128, 0.34), rgba(44, 44, 44, 0.92)); box-shadow: var(--g573-shadow);
}
.g573-hero-card { padding: 1.8rem; margin-top: 1.2rem; }
.g573-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem; color: var(--g573-secondary); font-size: 1.2rem;
  font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em;
}
.g573-title { margin: 1rem 0; font-size: 3rem; line-height: 3.4rem; color: #fff; }
.g573-subtitle, .g573-text { color: var(--g573-muted); line-height: 2.35rem; }
.g573-section { padding: 1.6rem 0; }
.g573-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; }
.g573-section h2, .g573-card h2, .g573-card h3 { margin: 0.4rem 0 1rem; line-height: 2.8rem; }
.g573-grid { display: grid; gap: 1rem; }
.g573-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g573-game-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.9rem; }
.g573-game {
  min-height: 10.8rem; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 0.6rem;
  padding: 0.8rem 0.5rem; border-radius: 1.4rem; border: 1px solid rgba(238, 130, 238, 0.14); color: var(--g573-text);
  background: rgba(255, 255, 255, 0.045); text-align: center; font-size: 1.15rem; font-weight: 800; line-height: 1.4rem;
}
.g573-game img { width: 5.8rem; height: 5.8rem; border-radius: 1.2rem; object-fit: cover; }
.g573-card { padding: 1.5rem; }
.g573-stack { display: grid; gap: 1rem; }
.g573-pill-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.g573-pill {
  display: inline-flex; align-items: center; gap: 0.5rem; min-height: 3.6rem; padding: 0.8rem 1rem; border-radius: 999px;
  color: var(--g573-text); background: rgba(238, 130, 238, 0.13); border: 1px solid var(--g573-line); font-weight: 800;
}
.g573-promo-link { color: #ffd9cf; font-weight: 900; text-decoration: underline; text-decoration-thickness: 0.2rem; }
.g573-stat {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem; border-radius: 1.4rem;
  background: rgba(0, 0, 0, 0.22);
}
.g573-stat strong { color: #fff; font-size: 1.8rem; }
.g573-meter { height: 0.9rem; border-radius: 999px; background: rgba(255, 255, 255, 0.12); overflow: hidden; }
.g573-meter span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--g573-secondary), var(--g573-accent)); }
.g573-footer { margin-top: 2rem; padding: 2.4rem 0 9rem; background: #110811; border-top: 1px solid var(--g573-line); }
.g573-footer-links, .g573-footer-buttons { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1.2rem 0; }
.g573-footer-links a { color: var(--g573-muted); font-weight: 700; }
.g573-partners { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.g573-partner { border: 1px solid var(--g573-line); border-radius: 1rem; padding: 0.7rem 0.9rem; color: var(--g573-secondary); background: rgba(255, 255, 255, 0.04); font-weight: 800; }
.g573-bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000; height: 6.2rem; display: flex; justify-content: space-around; align-items: center;
  background: #2c2c2c; border-top: 1px solid var(--g573-line); box-shadow: 0 -1rem 2rem rgba(0, 0, 0, 0.42);
}
.g573-bottom-item {
  min-width: 6rem; min-height: 6rem; border: 0; border-radius: 1.2rem; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 0.3rem; color: var(--g573-muted); background: transparent; font-size: 1.05rem; font-weight: 800;
  cursor: pointer; transition: transform 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.g573-bottom-item i, .g573-bottom-item ion-icon, .g573-bottom-item .material-icons, .g573-bottom-item .ti { font-size: 2.3rem; line-height: 2.3rem; }
.g573-bottom-item:active, .g573-bottom-item:hover { transform: scale(0.94); color: #fff; }
.g573-bottom-active { color: #fff; background: linear-gradient(180deg, var(--g573-primary), rgba(255, 69, 0, 0.38)); }
@media (max-width: 768px) { .g573-main { padding-bottom: 8rem; } }
@media (min-width: 769px) {
  body { font-size: 1.6rem; line-height: 2.4rem; }
  .g573-container, .g573-wrapper { width: min(112rem, calc(100% - 4rem)); max-width: none; }
  .g573-desktop-nav { display: flex; }
  .g573-menu-btn { display: none; }
  .g573-bottom-nav { display: none; }
  .g573-main { padding-top: 8rem; }
  .g573-carousel { height: 34rem; }
  .g573-game-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .g573-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .g573-footer { padding-bottom: 3rem; }
}
