@charset "UTF-8";

:root {
  --frame4b195-ink: #f8f2eb;
  --frame4b195-muted: #d8cec4;
  --frame4b195-deep: #1f2e39;
  --frame4b195-slate: #34495e;
  --frame4b195-copper: #cd853f;
  --frame4b195-violet: #ee82ee;
  --frame4b195-coffee: #6f4e37;
  --frame4b195-panel: #293c4a;
  --frame4b195-panel-soft: #3b5064;
  --frame4b195-line: rgba(238, 130, 238, 0.28);
  --frame4b195-line-warm: rgba(205, 133, 63, 0.52);
  --frame4b195-shadow: 0 14px 30px rgba(8, 15, 20, 0.32);
  --frame4b195-safe-bottom: calc(82px + env(safe-area-inset-bottom, 0px));
  --frame4b195-header-height: 118px;
  --frame4b195-title-font: "Arial Rounded MT Bold", "Noto Sans Bengali", system-ui, sans-serif;
  --frame4b195-body-font: "Noto Sans Bengali", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #18232c;
  color-scheme: dark;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-width: 320px;
  max-width: 430px;
  min-height: 100vh;
  margin: 0 auto;
  overflow-x: hidden;
  color: var(--frame4b195-ink);
  background:
    radial-gradient(circle at 92% 5%, rgba(238, 130, 238, 0.12), transparent 25rem),
    linear-gradient(180deg, #263947 0%, var(--frame4b195-deep) 24%, #18252e 100%);
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.36);
  font-family: var(--frame4b195-body-font);
  font-size: 15px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.frame4b195-menu-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--frame4b195-violet);
  outline-offset: 3px;
}

img {
  display: block;
  max-width: 100%;
}

.frame4b195-skip {
  position: fixed;
  z-index: 200;
  top: 6px;
  left: 50%;
  min-height: 44px;
  padding: 10px 16px;
  color: var(--frame4b195-deep);
  background: var(--frame4b195-violet);
  border: 2px solid #fff;
  border-radius: 6px;
  transform: translate(-50%, -140%);
  transition: transform 160ms ease;
  font-weight: 800;
  text-decoration: none;
}

.frame4b195-skip:focus {
  transform: translate(-50%, 0);
}

.frame4b195-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 50%;
  width: min(100%, 430px);
  transform: translateX(-50%);
  border-bottom: 1px solid var(--frame4b195-line-warm);
  background: rgba(31, 46, 57, 0.96);
  box-shadow: 0 8px 22px rgba(7, 13, 17, 0.34);
  backdrop-filter: blur(12px);
}

.frame4b195-brand-row {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
}

.frame4b195-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: var(--frame4b195-ink);
  font-family: var(--frame4b195-title-font);
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.frame4b195-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: cover;
  border: 2px solid var(--frame4b195-copper);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(238, 130, 238, 0.1);
}

.frame4b195-menu-button {
  display: inline-grid;
  width: 46px;
  min-width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--frame4b195-line);
  border-radius: 7px;
  color: var(--frame4b195-ink);
  background: var(--frame4b195-panel);
  cursor: pointer;
}

.frame4b195-menu-bars,
.frame4b195-menu-bars::before,
.frame4b195-menu-bars::after {
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.frame4b195-menu-bars {
  position: relative;
}

.frame4b195-menu-bars::before,
.frame4b195-menu-bars::after {
  position: absolute;
  left: 0;
  content: "";
}

.frame4b195-menu-bars::before {
  top: -7px;
}

.frame4b195-menu-bars::after {
  top: 7px;
}

.frame4b195-menu-button[aria-expanded="true"] .frame4b195-menu-bars {
  background: transparent;
}

.frame4b195-menu-button[aria-expanded="true"] .frame4b195-menu-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.frame4b195-menu-button[aria-expanded="true"] .frame4b195-menu-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.frame4b195-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 12px 9px;
}

.frame4b195-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 2px solid var(--frame4b195-copper);
  border-radius: 6px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.frame4b195-action:active {
  transform: scale(0.97);
}

.frame4b195-action-primary {
  color: #17242d;
  background: linear-gradient(135deg, #f2a85f, var(--frame4b195-copper));
  box-shadow: 0 6px 16px rgba(205, 133, 63, 0.25);
}

.frame4b195-action-secondary {
  color: var(--frame4b195-ink);
  background: transparent;
}

.frame4b195-drawer-shade {
  position: fixed;
  z-index: 84;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(9, 15, 20, 0.68);
  transition: opacity 200ms ease, visibility 200ms ease;
}

.frame4b195-drawer-shade.frame4b195-visible {
  visibility: visible;
  opacity: 1;
}

.frame4b195-drawer {
  position: fixed;
  z-index: 90;
  top: 0;
  right: max(0px, calc((100vw - 430px) / 2));
  width: min(86vw, 348px);
  height: 100dvh;
  overflow-y: auto;
  padding: 16px 14px calc(26px + env(safe-area-inset-bottom, 0px));
  border-left: 2px solid var(--frame4b195-copper);
  background: #21313d;
  box-shadow: -16px 0 30px rgba(0, 0, 0, 0.38);
  transform: translateX(110%);
  transition: transform 240ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.frame4b195-drawer.frame4b195-open {
  transform: translateX(0);
}

.frame4b195-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--frame4b195-line);
}

.frame4b195-drawer-title {
  margin: 0;
  font-family: var(--frame4b195-title-font);
  font-size: 1.15rem;
}

.frame4b195-drawer-close {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--frame4b195-line-warm);
  border-radius: 6px;
  color: var(--frame4b195-ink);
  background: transparent;
  cursor: pointer;
  font-size: 1.5rem;
}

.frame4b195-drawer-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.frame4b195-drawer-link {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 11px;
  padding: 9px 11px;
  border: 1px solid rgba(238, 130, 238, 0.18);
  border-radius: 5px;
  color: var(--frame4b195-ink);
  background: rgba(52, 73, 94, 0.58);
  text-decoration: none;
  transition: transform 140ms ease, border-color 140ms ease;
}

.frame4b195-drawer-link:hover,
.frame4b195-drawer-link:focus-visible {
  border-color: var(--frame4b195-copper);
  transform: translateX(-3px);
}

.frame4b195-drawer-mark {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--frame4b195-copper);
  border-radius: 50%;
  color: var(--frame4b195-violet);
  font-size: 0.75rem;
  font-weight: 900;
}

.frame4b195-main {
  position: relative;
  min-height: 100vh;
  padding-top: var(--frame4b195-header-height);
  padding-bottom: var(--frame4b195-safe-bottom);
}

.frame4b195-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--frame4b195-line-warm);
  background: #101b22;
}

.frame4b195-slider {
  position: relative;
  min-height: 318px;
}

.frame4b195-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.frame4b195-slide.frame4b195-active {
  position: relative;
  visibility: visible;
  opacity: 1;
}

.frame4b195-slide-trigger {
  position: relative;
  display: block;
  width: 100%;
  min-height: 318px;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: inherit;
  background: #1d2d38;
  text-align: left;
  cursor: pointer;
}

.frame4b195-slide-image {
  width: 100%;
  height: 318px;
  object-fit: cover;
}

.frame4b195-slide-trigger::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(18, 28, 35, 0.08) 10%, rgba(16, 27, 34, 0.9) 94%);
}

.frame4b195-slide-copy {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 34px;
  left: 18px;
}

.frame4b195-slide-kicker {
  display: inline-block;
  margin-bottom: 7px;
  padding: 4px 9px;
  border: 1px solid var(--frame4b195-copper);
  border-radius: 999px;
  color: #18242c;
  background: rgba(246, 177, 106, 0.95);
  font-size: 0.74rem;
  font-weight: 900;
}

.frame4b195-slide-title {
  display: block;
  max-width: 330px;
  font-family: var(--frame4b195-title-font);
  font-size: clamp(1.25rem, 6vw, 1.72rem);
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 2px 8px #000;
}

.frame4b195-slider-controls {
  position: absolute;
  z-index: 5;
  right: 12px;
  bottom: 9px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.frame4b195-slider-dots {
  display: flex;
  gap: 7px;
  pointer-events: auto;
}

.frame4b195-slider-dot {
  width: 28px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.frame4b195-slider-dot.frame4b195-active {
  background: var(--frame4b195-violet);
}

.frame4b195-slider-arrows {
  display: flex;
  gap: 6px;
  pointer-events: auto;
}

.frame4b195-slider-arrow {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  color: #fff;
  background: rgba(24, 35, 44, 0.74);
  cursor: pointer;
}

.frame4b195-intro {
  padding: 22px 16px 8px;
}

.frame4b195-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 8px;
  color: #f3ad69;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.frame4b195-eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--frame4b195-violet);
}

.frame4b195-title {
  margin: 0;
  font-family: var(--frame4b195-title-font);
  font-size: clamp(1.72rem, 8vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.frame4b195-lead {
  margin: 13px 0 0;
  color: var(--frame4b195-muted);
  font-size: 1rem;
}

.frame4b195-intro-actions {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 9px;
  margin-top: 17px;
}

.frame4b195-cta,
.frame4b195-quiet-link {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.frame4b195-cta {
  border: 2px solid var(--frame4b195-copper);
  color: #17242d;
  background: var(--frame4b195-copper);
  box-shadow: 0 8px 18px rgba(205, 133, 63, 0.23);
}

.frame4b195-quiet-link {
  border: 2px solid var(--frame4b195-line);
  color: var(--frame4b195-ink);
  background: transparent;
}

.frame4b195-cta:active,
.frame4b195-quiet-link:active {
  transform: scale(0.98);
}

.frame4b195-jumpstrip {
  display: flex;
  gap: 8px;
  margin: 13px 0 0;
  padding: 0 16px 16px;
  overflow-x: auto;
  scrollbar-width: none;
}

.frame4b195-jumpstrip::-webkit-scrollbar {
  display: none;
}

.frame4b195-jump {
  display: inline-flex;
  min-width: max-content;
  min-height: 44px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid var(--frame4b195-line-warm);
  border-radius: 999px;
  color: var(--frame4b195-ink);
  background: rgba(52, 73, 94, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.frame4b195-games {
  padding: 5px 12px 22px;
}

.frame4b195-game-band {
  margin-top: 18px;
  padding: 14px 10px 13px;
  border-top: 2px solid var(--frame4b195-copper);
  border-right: 1px solid var(--frame4b195-line);
  border-bottom: 1px solid var(--frame4b195-line);
  border-left: 1px solid var(--frame4b195-line);
  border-radius: 8px;
  background: linear-gradient(155deg, rgba(52, 73, 94, 0.82), rgba(30, 44, 54, 0.9));
  box-shadow: var(--frame4b195-shadow);
}

.frame4b195-band-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.frame4b195-band-copy {
  min-width: 0;
}

.frame4b195-band-title {
  margin: 0;
  font-family: var(--frame4b195-title-font);
  font-size: 1.22rem;
  line-height: 1.25;
}

.frame4b195-band-note {
  margin: 4px 0 0;
  color: var(--frame4b195-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.frame4b195-band-count {
  flex: 0 0 auto;
  padding: 4px 8px;
  border: 1px solid var(--frame4b195-violet);
  border-radius: 4px;
  color: var(--frame4b195-violet);
  font-size: 0.72rem;
  font-weight: 900;
}

.frame4b195-game-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px 7px;
}

.frame4b195-game-card {
  min-width: 0;
}

.frame4b195-game-button {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  color: var(--frame4b195-ink);
  background: transparent;
  cursor: pointer;
  text-align: center;
}

.frame4b195-game-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(238, 130, 238, 0.28);
  border-radius: 5px;
  background: #17242c;
  box-shadow: 0 4px 10px rgba(7, 13, 17, 0.28);
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.frame4b195-game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame4b195-game-name {
  display: -webkit-box;
  min-height: 35px;
  margin-top: 5px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #f5ede6;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.frame4b195-game-button:hover .frame4b195-game-image-wrap,
.frame4b195-game-button:focus-visible .frame4b195-game-image-wrap {
  border-color: var(--frame4b195-copper);
  box-shadow: 0 8px 16px rgba(205, 133, 63, 0.2);
  transform: translateY(-3px);
}

.frame4b195-game-button:active .frame4b195-game-image-wrap {
  transform: translateY(0) scale(0.97);
}

.frame4b195-band-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(205, 133, 63, 0.42);
}

.frame4b195-band-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 7px 8px;
  border: 1px solid rgba(238, 130, 238, 0.3);
  border-radius: 4px;
  color: var(--frame4b195-ink);
  background: rgba(31, 46, 57, 0.7);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
}

.frame4b195-band-link:hover {
  border-color: var(--frame4b195-copper);
  color: #ffc88f;
}

.frame4b195-reading {
  padding: 8px 14px 26px;
}

.frame4b195-question-block {
  position: relative;
  margin-top: 20px;
  padding: 19px 15px 17px;
  border: 1px solid var(--frame4b195-line);
  border-left: 4px solid var(--frame4b195-copper);
  border-radius: 7px;
  background: rgba(41, 60, 74, 0.84);
}

.frame4b195-question-block:nth-child(even) {
  border-right: 4px solid var(--frame4b195-violet);
  border-left: 1px solid var(--frame4b195-line);
  background: rgba(52, 73, 94, 0.64);
}

.frame4b195-question-no {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 8px;
  padding: 3px 8px;
  border: 1px solid var(--frame4b195-line-warm);
  border-radius: 4px;
  color: #fac18a;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.frame4b195-question-title {
  margin: 0 0 9px;
  font-family: var(--frame4b195-title-font);
  font-size: 1.35rem;
  line-height: 1.32;
}

.frame4b195-question-block p {
  margin: 9px 0 0;
  color: #e2d9d1;
}

.frame4b195-question-block strong {
  color: #ffd1a2;
}

.frame4b195-text-link {
  color: #ffb56e;
  font-weight: 850;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.frame4b195-text-link:hover {
  color: var(--frame4b195-violet);
}

.frame4b195-steps {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding: 0;
  counter-reset: frame4b195-step;
  list-style: none;
}

.frame4b195-step {
  position: relative;
  min-height: 55px;
  padding: 10px 10px 10px 50px;
  border: 1px solid rgba(205, 133, 63, 0.34);
  border-radius: 5px;
  background: rgba(20, 32, 40, 0.42);
  counter-increment: frame4b195-step;
}

.frame4b195-step::before {
  position: absolute;
  top: 10px;
  left: 9px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--frame4b195-violet);
  border-radius: 50%;
  color: var(--frame4b195-violet);
  content: counter(frame4b195-step, bengali);
  font-weight: 900;
}

.frame4b195-compare {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.frame4b195-compare-row {
  display: grid;
  grid-template-columns: minmax(88px, 0.72fr) 1.28fr;
  gap: 9px;
  padding: 10px;
  border-bottom: 1px solid rgba(238, 130, 238, 0.23);
  background: rgba(25, 38, 47, 0.35);
}

.frame4b195-compare-label {
  color: #ffc185;
  font-weight: 850;
}

.frame4b195-checks {
  display: grid;
  gap: 8px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.frame4b195-check {
  position: relative;
  padding: 8px 8px 8px 31px;
  border-bottom: 1px dotted rgba(238, 130, 238, 0.35);
}

.frame4b195-check::before {
  position: absolute;
  top: 9px;
  left: 4px;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 1px solid var(--frame4b195-copper);
  color: var(--frame4b195-copper);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.frame4b195-note {
  margin-top: 14px;
  padding: 12px;
  border-top: 1px solid var(--frame4b195-violet);
  border-bottom: 1px solid var(--frame4b195-violet);
  color: #eadfe7;
  background: rgba(111, 78, 55, 0.26);
}

.frame4b195-inline-cta {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 15px;
  padding: 10px 12px;
  border: 1px solid var(--frame4b195-copper);
  border-radius: 5px;
  color: var(--frame4b195-ink);
  background: linear-gradient(100deg, rgba(111, 78, 55, 0.78), rgba(52, 73, 94, 0.88));
  cursor: pointer;
  text-align: left;
}

.frame4b195-inline-cta span:last-child {
  flex: 0 0 auto;
  color: var(--frame4b195-violet);
  font-size: 1.25rem;
}

.frame4b195-responsible {
  margin: 14px;
  padding: 17px 14px;
  border: 2px solid var(--frame4b195-copper);
  border-radius: 6px;
  background: #2b3f4e;
}

.frame4b195-responsible-title {
  margin: 0 0 7px;
  font-family: var(--frame4b195-title-font);
  font-size: 1.16rem;
}

.frame4b195-responsible p {
  margin: 0;
  color: var(--frame4b195-muted);
}

.frame4b195-site-footer {
  margin: 10px 12px 0;
  border-top: 3px solid var(--frame4b195-copper);
  background: #192730;
}

.frame4b195-footer-brand {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 18px 14px 15px;
  border-bottom: 1px solid var(--frame4b195-line);
}

.frame4b195-footer-logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 2px solid var(--frame4b195-violet);
  border-radius: 50%;
}

.frame4b195-footer-brand h2 {
  margin: 0;
  font-family: var(--frame4b195-title-font);
  font-size: 1.2rem;
}

.frame4b195-footer-brand p {
  margin: 4px 0 0;
  color: var(--frame4b195-muted);
  font-size: 0.82rem;
}

.frame4b195-footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 13px;
  padding: 16px 14px;
}

.frame4b195-footer-group h3 {
  margin: 0 0 9px;
  color: #f5b779;
  font-family: var(--frame4b195-title-font);
  font-size: 0.95rem;
}

.frame4b195-footer-links {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.frame4b195-footer-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  color: #e5dcd5;
  font-size: 0.8rem;
  line-height: 1.35;
  text-decoration: none;
}

.frame4b195-footer-link:hover {
  color: var(--frame4b195-violet);
}

.frame4b195-footer-promos {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.frame4b195-footer-promo {
  min-height: 44px;
  padding: 8px;
  border: 1px solid var(--frame4b195-copper);
  border-radius: 4px;
  color: var(--frame4b195-ink);
  background: rgba(111, 78, 55, 0.45);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
}

.frame4b195-footer-promo:first-child {
  grid-column: 1 / -1;
  color: #18242c;
  background: var(--frame4b195-copper);
}

.frame4b195-disclaimer {
  padding: 14px;
  border-top: 1px solid var(--frame4b195-line);
  color: #cbc2ba;
  font-size: 0.76rem;
}

.frame4b195-copyright {
  margin: 0 12px;
  padding: 15px 10px 104px;
  color: #ada49e;
  font-size: 0.72rem;
  text-align: center;
}

.frame4b195-bottom-nav {
  position: fixed;
  z-index: 75;
  right: max(8px, calc((100vw - 430px) / 2 + 8px));
  bottom: calc(7px + env(safe-area-inset-bottom, 0px));
  left: max(8px, calc((100vw - 430px) / 2 + 8px));
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 3px;
  min-height: 68px;
  padding: 5px;
  border: 1px solid var(--frame4b195-line-warm);
  border-radius: 16px;
  background: rgba(28, 42, 52, 0.97);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(14px);
}

.frame4b195-bottom-item {
  display: flex;
  min-width: 0;
  min-height: 56px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 4px 2px;
  border: 0;
  border-radius: 11px;
  color: #d8d0c9;
  background: transparent;
  cursor: pointer;
  font-family: var(--frame4b195-body-font);
  font-size: 0.63rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
}

.frame4b195-bottom-item.frame4b195-current {
  color: #1c2a34;
  background: var(--frame4b195-violet);
}

.frame4b195-bottom-item:active {
  transform: scale(0.94);
}

.frame4b195-nav-icon {
  position: relative;
  display: block;
  width: 23px;
  height: 23px;
  color: currentColor;
}

.frame4b195-icon-home::before {
  position: absolute;
  top: 7px;
  left: 4px;
  width: 14px;
  height: 12px;
  border: 2px solid currentColor;
  content: "";
}

.frame4b195-icon-home::after {
  position: absolute;
  top: 2px;
  left: 5px;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.frame4b195-icon-flash::before {
  position: absolute;
  top: 1px;
  left: 8px;
  width: 8px;
  height: 20px;
  background: currentColor;
  clip-path: polygon(48% 0, 100% 0, 67% 40%, 100% 40%, 18% 100%, 39% 55%, 8% 55%);
  content: "";
}

.frame4b195-icon-gift::before {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 19px;
  height: 13px;
  border: 2px solid currentColor;
  content: "";
}

.frame4b195-icon-gift::after {
  position: absolute;
  top: 3px;
  left: 10px;
  width: 2px;
  height: 18px;
  background: currentColor;
  box-shadow: -5px -1px 0 -1px currentColor, 5px -1px 0 -1px currentColor;
  content: "";
}

.frame4b195-icon-download::before {
  position: absolute;
  top: 1px;
  left: 10px;
  width: 3px;
  height: 13px;
  background: currentColor;
  content: "";
}

.frame4b195-icon-download::after {
  position: absolute;
  top: 8px;
  left: 5px;
  width: 11px;
  height: 11px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.frame4b195-icon-shield::before {
  position: absolute;
  inset: 1px 3px 0;
  border: 2px solid currentColor;
  border-radius: 9px 9px 12px 12px;
  content: "";
  clip-path: polygon(50% 0, 100% 18%, 92% 70%, 50% 100%, 8% 70%, 0 18%);
}

.frame4b195-backtop {
  position: fixed;
  z-index: 72;
  right: max(15px, calc((100vw - 430px) / 2 + 15px));
  bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  display: grid;
  width: 44px;
  height: 44px;
  visibility: hidden;
  place-items: center;
  border: 1px solid var(--frame4b195-copper);
  border-radius: 50%;
  opacity: 0;
  color: var(--frame4b195-ink);
  background: #293d4b;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  transition: opacity 160ms ease, visibility 160ms ease;
}

.frame4b195-backtop.frame4b195-show {
  visibility: visible;
  opacity: 1;
}

.frame4b195-noscript {
  margin: 128px 12px 12px;
  padding: 11px;
  border: 1px solid var(--frame4b195-copper);
  color: #fff;
  background: #6f4e37;
}

@media (min-width: 375px) {
  .frame4b195-game-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .frame4b195-game-name {
    font-size: 0.7rem;
  }
}

@media (max-width: 350px) {
  :root {
    --frame4b195-header-height: 116px;
  }

  .frame4b195-brand-row {
    padding-right: 9px;
    padding-left: 9px;
  }

  .frame4b195-actions {
    padding-right: 9px;
    padding-left: 9px;
  }

  .frame4b195-intro {
    padding-right: 13px;
    padding-left: 13px;
  }

  .frame4b195-game-grid {
    gap-right: 5px;
    gap-left: 5px;
  }

  .frame4b195-bottom-item {
    font-size: 0.58rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (hover: hover) {
  .frame4b195-action:hover,
  .frame4b195-cta:hover {
    box-shadow: 0 8px 22px rgba(238, 130, 238, 0.2);
    transform: translateY(-2px);
  }

  .frame4b195-bottom-item:hover {
    color: var(--frame4b195-violet);
    background: rgba(238, 130, 238, 0.08);
  }
}

@media print {
  .frame4b195-header,
  .frame4b195-bottom-nav,
  .frame4b195-backtop,
  .frame4b195-drawer,
  .frame4b195-drawer-shade,
  .frame4b195-slider-controls {
    display: none !important;
  }

  body {
    max-width: none;
    color: #111;
    background: #fff;
    box-shadow: none;
  }

  .frame4b195-main {
    padding: 0;
  }
}
