@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400;500;600;700&family=Hind+Siliguri:wght@400;500;600;700&display=swap');

:root {
  --c19849-night: #18252f;
  --c19849-ink: #34495e;
  --c19849-orange: #ffa500;
  --c19849-cream: #f0fdff;
  --c19849-lemon: #f0e68c;
  --c19849-sand: #eee8aa;
  --c19849-muted: #aac3c7;
  --c19849-line: rgba(240, 253, 255, .12);
  --c19849-panel: rgba(52, 73, 94, .54);
  --c19849-panel-strong: #223542;
  --c19849-shadow: 0 16px 40px rgba(5, 13, 18, .28);
  --c19849-radius: 8px;
  --c19849-nav-height: 74px;
  --c19849-top-height: 72px;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--c19849-night); scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--c19849-cream);
  background:
    radial-gradient(circle at 12% 4%, rgba(255,165,0,.18), transparent 28rem),
    radial-gradient(circle at 92% 34%, rgba(240,230,140,.09), transparent 22rem),
    linear-gradient(155deg, #17232d 0%, #1d2d38 54%, #142029 100%);
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  z-index: -1;
  inset: 0;
  opacity: .2;
  pointer-events: none;
  background-image: linear-gradient(rgba(240,253,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(240,253,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
a { color: var(--c19849-lemon); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--c19849-orange); }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--c19849-orange); outline-offset: 3px; }

.c19849-page { width: 100%; max-width: 760px; margin: 0 auto; padding-bottom: calc(var(--c19849-nav-height) + 28px); }
.c19849-skip { position: fixed; top: -60px; left: 10px; z-index: 100; padding: 8px 14px; background: var(--c19849-orange); color: #17232d; font-weight: 700; border-radius: 5px; }
.c19849-skip:focus { top: 10px; }
.c19849-topbar {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 50%;
  width: min(100%, 760px);
  min-height: var(--c19849-top-height);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 10px 12px 9px 14px;
  background: rgba(20, 32, 41, .94);
  border-bottom: 1px solid rgba(240,230,140,.18);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  backdrop-filter: blur(14px);
}
.c19849-brand { display: inline-flex; align-items: center; gap: 10px; min-width: 0; color: var(--c19849-cream); text-decoration: none; }
.c19849-brand img { width: 40px; height: 40px; object-fit: cover; border-radius: 10px; border: 2px solid var(--c19849-orange); box-shadow: 4px 4px 0 rgba(240,230,140,.24); }
.c19849-brand strong { min-width: 0; overflow: hidden; font-family: 'Baloo Da 2', sans-serif; font-size: 1.42rem; line-height: 1; letter-spacing: .02em; white-space: nowrap; text-overflow: ellipsis; }
.c19849-top-actions { display: flex; align-items: center; gap: 5px; }
.c19849-top-action, .c19849-menu-toggle { min-height: 44px; border: 1px solid rgba(240,253,255,.18); border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; padding: 6px 9px; color: var(--c19849-cream); background: rgba(52,73,94,.6); font-weight: 600; font-size: .82rem; text-decoration: none; cursor: pointer; transition: transform .16s ease, background .16s ease, color .16s ease; }
.c19849-top-action:first-child { color: var(--c19849-night); background: var(--c19849-orange); border-color: var(--c19849-orange); }
.c19849-top-action:hover, .c19849-menu-toggle:hover { color: var(--c19849-night); background: var(--c19849-lemon); }
.c19849-top-action:active, .c19849-menu-toggle:active, .c19849-cta:active, .c19849-promo-link:active { transform: translateY(2px); }
.c19849-menu-toggle { width: 44px; padding: 4px; font-size: 1.25rem; line-height: 1; }
.c19849-menu-toggle[aria-expanded='true'] { color: var(--c19849-night); background: var(--c19849-lemon); }
.c19849-menu {
  position: fixed;
  z-index: 49;
  top: var(--c19849-top-height);
  left: 50%;
  width: min(100%, 760px);
  max-height: calc(100vh - var(--c19849-top-height));
  overflow: auto;
  padding: 14px;
  transform: translate(-50%, -120%);
  visibility: hidden;
  opacity: 0;
  background: #1b2a34;
  border-bottom: 2px solid var(--c19849-orange);
  box-shadow: var(--c19849-shadow);
  transition: transform .2s ease, opacity .2s ease, visibility .2s ease;
}
.c19849-menu.c19849-is-open { transform: translate(-50%, 0); visibility: visible; opacity: 1; }
.c19849-menu-heading { margin: 0 0 7px; color: var(--c19849-orange); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; }
.c19849-menu-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 7px; margin: 0; padding: 0; list-style: none; }
.c19849-menu-list a { display: flex; align-items: center; min-height: 45px; padding: 7px 9px; border-radius: 6px; color: var(--c19849-cream); background: rgba(52,73,94,.5); font-size: .9rem; line-height: 1.2; text-decoration: none; transition: background .16s ease, color .16s ease; }
.c19849-menu-list a:hover, .c19849-menu-list a[aria-current='page'] { color: var(--c19849-night); background: var(--c19849-lemon); }
.c19849-menu-shade { position: fixed; z-index: 48; inset: var(--c19849-top-height) 0 0; display: none; background: rgba(0,0,0,.48); }
.c19849-menu-shade.c19849-is-visible { display: block; }

.c19849-main { padding: calc(var(--c19849-top-height) + 16px) 12px 22px; }
.c19849-hero { position: relative; overflow: hidden; margin: 0 -2px 18px; padding: 20px 15px 18px; border: 1px solid rgba(240,230,140,.25); border-radius: 13px 5px 13px 5px; background: linear-gradient(135deg, rgba(52,73,94,.92), rgba(27,43,52,.74)); box-shadow: var(--c19849-shadow); }
.c19849-hero::after { content: ''; position: absolute; right: -45px; bottom: -62px; width: 150px; height: 150px; border: 25px solid rgba(255,165,0,.12); border-radius: 50%; }
.c19849-kicker { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 5px; color: var(--c19849-orange); font-size: .79rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.c19849-kicker::before { content: ''; display: inline-block; width: 22px; height: 3px; background: var(--c19849-orange); }
h1, h2, h3 { margin-top: 0; color: var(--c19849-cream); font-family: 'Baloo Da 2', sans-serif; font-weight: 700; line-height: 1.2; }
h1 { max-width: 15ch; margin-bottom: 12px; font-size: clamp(2rem, 9vw, 3.25rem); letter-spacing: -.015em; }
h2 { margin-bottom: 9px; font-size: clamp(1.35rem, 6vw, 2rem); }
h3 { margin-bottom: 5px; color: var(--c19849-lemon); font-size: 1.12rem; }
p { margin: 0 0 12px; }
.c19849-lead { max-width: 62ch; color: #e8f6f5; font-size: 1.04rem; }
.c19849-note { margin-top: 13px; padding: 9px 11px; border-left: 3px solid var(--c19849-orange); color: var(--c19849-sand); background: rgba(255,165,0,.08); font-size: .91rem; }
.c19849-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 15px; }
.c19849-cta { min-height: 48px; padding: 10px 12px; border: 1px solid var(--c19849-orange); border-radius: 6px; color: var(--c19849-night); background: var(--c19849-orange); font-weight: 700; text-align: center; text-decoration: none; cursor: pointer; transition: transform .16s ease, background .16s ease; }
.c19849-cta:nth-child(2) { color: var(--c19849-cream); background: transparent; border-color: rgba(240,253,255,.4); }
.c19849-cta:hover { background: var(--c19849-lemon); color: var(--c19849-night); }

.c19849-slider { position: relative; overflow: hidden; margin: 0 0 21px; border-radius: 8px; background: #101a20; box-shadow: var(--c19849-shadow); }
.c19849-slides { display: flex; width: 300%; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.c19849-slide { position: relative; width: 33.3333%; flex: 0 0 33.3333%; aspect-ratio: 16 / 7; min-height: 132px; }
.c19849-slide img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.92) contrast(1.04); }
.c19849-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,19,24,.84), transparent 70%); }
.c19849-slide-copy { position: absolute; z-index: 1; left: 14px; bottom: 14px; max-width: 70%; }
.c19849-slide-copy strong { display: block; color: var(--c19849-cream); font-family: 'Baloo Da 2', sans-serif; font-size: 1.25rem; line-height: 1.1; }
.c19849-slide-copy span { color: var(--c19849-lemon); font-size: .78rem; }
.c19849-slider-controls { position: absolute; z-index: 2; right: 9px; bottom: 8px; display: flex; gap: 5px; }
.c19849-dot { width: 12px; height: 12px; padding: 0; border: 1px solid var(--c19849-cream); border-radius: 50%; background: transparent; cursor: pointer; }
.c19849-dot.c19849-is-active { background: var(--c19849-orange); border-color: var(--c19849-orange); }

.c19849-section { margin: 18px 0; }
.c19849-section-head { display: flex; align-items: end; justify-content: space-between; gap: 10px; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--c19849-line); }
.c19849-section-head h2 { margin-bottom: 0; }
.c19849-section-head small { color: var(--c19849-muted); white-space: nowrap; }
.c19849-games { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 7px; }
.c19849-game { min-width: 0; overflow: hidden; border: 1px solid rgba(240,253,255,.1); border-radius: 7px; background: var(--c19849-panel); box-shadow: 0 5px 14px rgba(0,0,0,.16); transition: transform .16s ease, border-color .16s ease, background .16s ease; }
.c19849-game:hover { transform: translateY(-2px); border-color: var(--c19849-orange); background: var(--c19849-panel-strong); }
.c19849-game a { display: block; color: var(--c19849-cream); text-decoration: none; }
.c19849-game img { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: #34495e; }
.c19849-game-name { display: block; min-height: 38px; padding: 5px 4px 6px; color: var(--c19849-cream); font-size: .74rem; font-weight: 600; line-height: 1.18; text-align: center; overflow-wrap: anywhere; }
.c19849-game a:focus-visible { outline-offset: -3px; }

.c19849-copy-zone { display: grid; gap: 12px; margin: 22px 0; }
.c19849-copy-block { padding: 15px 14px 13px; border: 1px solid var(--c19849-line); border-radius: 7px; background: rgba(52,73,94,.37); }
.c19849-copy-block h2 { color: var(--c19849-lemon); }
.c19849-copy-block h3 { margin-top: 14px; }
.c19849-checks, .c19849-steps { display: grid; gap: 7px; margin: 10px 0 0; padding: 0; list-style: none; }
.c19849-checks li, .c19849-steps li { position: relative; padding: 8px 9px 8px 33px; border-radius: 5px; background: rgba(24,37,47,.62); color: #e4f2f2; font-size: .93rem; }
.c19849-checks li::before { content: '✓'; position: absolute; left: 10px; color: var(--c19849-orange); font-weight: 700; }
.c19849-steps { counter-reset: c19849-step; }
.c19849-steps li { padding-left: 39px; }
.c19849-steps li::before { counter-increment: c19849-step; content: counter(c19849-step, decimal-leading-zero); position: absolute; left: 10px; color: var(--c19849-orange); font-family: 'Baloo Da 2', sans-serif; font-weight: 700; }
.c19849-callout { margin: 15px 0; padding: 14px; border-radius: 7px; color: var(--c19849-night); background: var(--c19849-lemon); }
.c19849-callout strong { display: block; margin-bottom: 3px; font-family: 'Baloo Da 2', sans-serif; font-size: 1.15rem; }
.c19849-promo-link { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 8px 13px; border: 1px solid var(--c19849-orange); border-radius: 6px; color: var(--c19849-night); background: var(--c19849-orange); font-weight: 700; text-decoration: none; transition: transform .16s ease, background .16s ease; }
.c19849-promo-link:hover { color: var(--c19849-night); background: var(--c19849-lemon); }
.c19849-promo-strip { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; margin: 17px 0; padding: 13px; border-left: 4px solid var(--c19849-orange); border-radius: 0 7px 7px 0; background: rgba(255,165,0,.1); }
.c19849-promo-strip p { margin: 0; font-size: .92rem; }
.c19849-promo-strip .c19849-promo-link { white-space: nowrap; }

.c19849-home-directory { display: grid; gap: 10px; margin: 22px 0 14px; padding: 16px 14px; border: 1px solid rgba(240,230,140,.24); border-radius: 8px; background: linear-gradient(120deg, rgba(52,73,94,.7), rgba(34,53,66,.48)); }
.c19849-directory-list { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin: 0; padding: 0; list-style: none; }
.c19849-directory-list a { display: block; min-height: 42px; padding: 7px 8px; border-radius: 5px; background: rgba(24,37,47,.65); color: var(--c19849-cream); font-size: .86rem; line-height: 1.25; text-decoration: none; }
.c19849-directory-list a:hover { color: var(--c19849-night); background: var(--c19849-lemon); }
.c19849-disclaimer { padding: 12px; border: 1px dashed rgba(240,253,255,.24); border-radius: 6px; color: var(--c19849-muted); font-size: .83rem; }
.c19849-footer { padding: 18px 12px 8px; color: var(--c19849-muted); font-size: .79rem; text-align: center; }
.c19849-footer p { margin: 0; }
.c19849-bottom-nav { position: fixed; z-index: 45; bottom: 0; left: 50%; width: min(100%, 760px); transform: translateX(-50%); display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); padding: 7px 7px max(7px, env(safe-area-inset-bottom)); border-top: 1px solid rgba(240,230,140,.24); background: rgba(20,32,41,.97); box-shadow: 0 -10px 26px rgba(0,0,0,.22); backdrop-filter: blur(12px); }
.c19849-bottom-item { min-width: 0; min-height: 53px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; padding: 5px 2px; border-radius: 7px; color: var(--c19849-muted); font-size: .68rem; line-height: 1.1; text-align: center; text-decoration: none; cursor: pointer; transition: background .16s ease, color .16s ease, transform .16s ease; }
.c19849-bottom-item:hover, .c19849-bottom-item[aria-current='page'] { color: var(--c19849-night); background: var(--c19849-lemon); }
.c19849-bottom-item:active { transform: translateY(2px); }
.c19849-bottom-icon { display: block; min-height: 22px; font-family: 'Baloo Da 2', sans-serif; font-size: 1.12rem; line-height: 1.1; }
.c19849-bottom-label { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.c19849-noscript { margin: 10px 0; padding: 10px; border-radius: 5px; background: rgba(255,165,0,.14); color: var(--c19849-sand); }

@media (min-width: 560px) {
  .c19849-main { padding-left: 18px; padding-right: 18px; }
  .c19849-hero { padding: 25px 22px 21px; }
  .c19849-games { grid-template-columns: repeat(5, minmax(0,1fr)); gap: 9px; }
  .c19849-game-name { font-size: .77rem; }
}
@media (max-width: 430px) {
  .c19849-main { padding-left: 10px; padding-right: 10px; }
  .c19849-topbar { padding-left: 10px; padding-right: 10px; }
  .c19849-bottom-nav { padding-left: 4px; padding-right: 4px; }
}
@media (max-width: 355px) {
  .c19849-top-action { padding-left: 7px; padding-right: 7px; font-size: .76rem; }
  .c19849-brand strong { font-size: 1.25rem; }
  .c19849-menu-list { grid-template-columns: 1fr; }
  .c19849-games { gap: 5px; }
  .c19849-game-name { min-height: 35px; font-size: .68rem; }
  .c19849-actions { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
