/* jay99.cyou - shell-3554f9.css
 * Mobile-first gaming portal for Bangladesh (bn-BD).
 * Palette: #2C3E50 (deep slate) base, #333333 ink, #CD853F amber accent,
 * #DEB887 sand, #BC8F8F rose, #C0C0C0 silver text on dark.
 * All custom classes use the w3554- prefix.
 */
:root {
  --w3554-bg: #1a232f;
  --w3554-bg-2: #2C3E50;
  --w3554-ink: #333333;
  --w3554-silver: #C0C0C0;
  --w3554-sand: #DEB887;
  --w3554-rose: #BC8F8F;
  --w3554-amber: #CD853F;
  --w3554-amber-2: #e09b3f;
  --w3554-card: #243646;
  --w3554-card-2: #2a4051;
  --w3554-line: rgba(192, 192, 192, 0.16);
  --w3554-text: #f3ece0;
  --w3554-muted: #b7b2a8;
  --w3554-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  --w3554-radius: 12px;
  --w3554-max: 460px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--w3554-bg);
  color: var(--w3554-text);
  font-family: "Hind Siliguri", "Noto Sans Bengali", "SolaimanLipi", system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  line-height: 1.6;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(120% 60% at 50% -10%, rgba(205, 133, 63, 0.20), transparent 60%),
    radial-gradient(120% 40% at 50% 110%, rgba(188, 143, 143, 0.14), transparent 60%),
    var(--w3554-bg);
  overflow-x: hidden;
}

body.w3554-noscroll { overflow: hidden; }

a { color: var(--w3554-sand); text-decoration: none; }
a:hover, a:focus { color: var(--w3554-amber-2); text-decoration: underline; }
img { max-width: 100%; display: block; }

.w3554-wrap {
  width: 100%;
  max-width: var(--w3554-max);
  margin: 0 auto;
  padding: 0 12px;
}

/* ============= Header ============= */
.w3554-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, #1f2e3d 0%, #18232f 100%);
  border-bottom: 1px solid var(--w3554-line);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.w3554-header__inner {
  max-width: var(--w3554-max);
  margin: 0 auto;
  padding: 8px 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}
.w3554-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.w3554-brand__logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(222, 184, 135, 0.55);
  box-shadow: 0 0 0 2px rgba(205, 133, 63, 0.15);
  flex-shrink: 0;
}
.w3554-brand__text { line-height: 1.15; min-width: 0; }
.w3554-brand__name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--w3554-sand);
  white-space: nowrap;
}
.w3554-brand__tag {
  font-size: 10.5px;
  color: var(--w3554-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.w3554-header__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.w3554-btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.w3554-btn:active { transform: translateY(1px); }
.w3554-btn--login {
  background: transparent;
  color: var(--w3554-sand);
  border-color: rgba(222, 184, 135, 0.55);
}
.w3554-btn--login:hover { background: rgba(222, 184, 135, 0.12); }
.w3554-btn--register {
  background: linear-gradient(135deg, #CD853F 0%, #e09b3f 60%, #DEB887 100%);
  color: #2a1c0c;
  box-shadow: 0 4px 14px rgba(205, 133, 63, 0.35);
}
.w3554-btn--register:hover { filter: brightness(1.05); }
.w3554-iconbtn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--w3554-line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--w3554-sand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.w3554-iconbtn:hover { background: rgba(222, 184, 135, 0.14); }
.w3554-iconbtn svg { width: 20px; height: 20px; display: block; }

/* ============= Slide-up route panel ============= */
.w3554-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 18, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 50;
}
.w3554-backdrop--show { opacity: 1; pointer-events: auto; }
.w3554-menu {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: var(--w3554-max);
  margin: 0 auto;
  background: linear-gradient(180deg, #22343f 0%, #18222d 100%);
  border-top: 1px solid rgba(222, 184, 135, 0.35);
  border-radius: 18px 18px 0 0;
  transform: translateY(110%);
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 60;
  padding: 14px 16px 22px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
}
.w3554-menu--open { transform: translateY(0); }
.w3554-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.w3554-menu__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--w3554-sand);
  letter-spacing: 0.4px;
}
.w3554-menu__close {
  background: transparent;
  border: none;
  color: var(--w3554-muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}
.w3554-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.w3554-menu__list a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--w3554-line);
  color: var(--w3554-text);
  font-size: 13px;
  font-weight: 600;
}
.w3554-menu__list a:hover {
  background: rgba(205, 133, 63, 0.16);
  color: var(--w3554-sand);
  text-decoration: none;
}
.w3554-menu__cta {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* ============= Hero / Carousel ============= */
.w3554-hero {
  margin-top: 12px;
}
.w3554-carousel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--w3554-shadow);
  border: 1px solid rgba(222, 184, 135, 0.22);
  background: #0e1620;
}
.w3554-carousel__viewport {
  overflow: hidden;
  border-radius: 16px;
}
.w3554-carousel__track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}
.w3554-carousel__slide {
  flex: 0 0 100%;
  position: relative;
}
.w3554-carousel__slide img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
}
.w3554-carousel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 16, 22, 0.05) 30%, rgba(10, 16, 22, 0.78) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px 14px;
  cursor: pointer;
}
.w3554-carousel__title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 2px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
}
.w3554-carousel__sub {
  font-size: 12px;
  color: var(--w3554-sand);
  margin: 0 0 8px;
}
.w3554-carousel__cta {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #CD853F, #DEB887);
  color: #2a1c0c;
}
.w3554-carousel__dots {
  position: absolute;
  bottom: 8px;
  right: 12px;
  display: flex;
  gap: 5px;
}
.w3554-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  padding: 0;
  cursor: pointer;
}
.w3554-carousel-dot--active {
  background: var(--w3554-amber-2);
  transform: scale(1.15);
}

/* ============= Section / Title ============= */
.w3554-section {
  margin-top: 22px;
}
.w3554-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 10px;
  gap: 8px;
}
.w3554-section__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--w3554-sand);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.w3554-section__title::before {
  content: "";
  width: 4px;
  height: 18px;
  background: linear-gradient(180deg, var(--w3554-amber-2), var(--w3554-rose));
  border-radius: 2px;
}
.w3554-section__more {
  font-size: 12px;
  color: var(--w3554-muted);
  font-weight: 600;
}
.w3554-section__more:hover { color: var(--w3554-sand); }

.w3554-cat-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.w3554-cat-bar::-webkit-scrollbar { display: none; }
.w3554-cat-bar__chip {
  flex-shrink: 0;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--w3554-text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--w3554-line);
  border-radius: 999px;
}
.w3554-cat-bar__chip--strong {
  background: linear-gradient(135deg, #CD853F, #DEB887);
  color: #2a1c0c;
  border-color: transparent;
}

/* ============= Game grid ============= */
.w3554-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (min-width: 360px) {
  .w3554-grid { gap: 9px; }
}
@media (min-width: 400px) {
  .w3554-grid { grid-template-columns: repeat(5, 1fr); }
}
.w3554-game-card {
  background: var(--w3554-card);
  border: 1px solid var(--w3554-line);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.14s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  display: block;
  text-align: center;
  padding-bottom: 4px;
}
.w3554-game-card:hover {
  transform: translateY(-2px);
  border-color: rgba(222, 184, 135, 0.55);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  text-decoration: none;
}
.w3554-game-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #0e1620;
  display: block;
}
.w3554-game-card__name {
  font-size: 10.5px;
  line-height: 1.25;
  color: var(--w3554-silver);
  padding: 4px 4px 2px;
  margin: 0;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.w3554-game-card--flash {
  box-shadow: 0 0 0 2px rgba(222, 184, 135, 0.85), 0 0 18px rgba(205, 133, 63, 0.55);
  border-color: var(--w3554-sand);
}
.w3554-game-card__badge {
  position: absolute;
  top: 4px;
  left: 4px;
  background: linear-gradient(135deg, #CD853F, #BC8F8F);
  color: #1a120a;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 999px;
  letter-spacing: 0.3px;
}

/* ============= Promo strip ============= */
.w3554-strip {
  margin-top: 18px;
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(135deg, #2C3E50 0%, #3a2a30 100%);
  border: 1px solid rgba(222, 184, 135, 0.32);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: var(--w3554-shadow);
}
.w3554-strip__text { min-width: 0; }
.w3554-strip__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--w3554-sand);
  margin: 0 0 2px;
}
.w3554-strip__sub {
  font-size: 12px;
  color: var(--w3554-muted);
  margin: 0;
}

/* ============= Info / SEO blocks ============= */
.w3554-prose {
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--w3554-line);
  border-radius: 14px;
  padding: 16px;
  color: var(--w3554-silver);
  font-size: 13.5px;
}
.w3554-prose h2 {
  color: var(--w3554-sand);
  font-size: 16px;
  margin: 14px 0 6px;
  font-weight: 800;
}
.w3554-prose h2:first-child { margin-top: 0; }
.w3554-prose h3 {
  color: var(--w3554-amber-2);
  font-size: 14px;
  margin: 12px 0 4px;
  font-weight: 700;
}
.w3554-prose p { margin: 0 0 10px; }
.w3554-prose a { color: var(--w3554-sand); font-weight: 600; }

.w3554-testimonials {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}
.w3554-testimonial {
  background: var(--w3554-card);
  border: 1px solid var(--w3554-line);
  border-radius: 10px;
  padding: 10px 12px;
}
.w3554-testimonial__name {
  color: var(--w3554-sand);
  font-weight: 700;
  font-size: 12.5px;
  margin: 0 0 2px;
}
.w3554-testimonial__text {
  color: var(--w3554-silver);
  font-size: 12px;
  margin: 0;
}
.w3554-winners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-top: 10px;
}
.w3554-winner {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--w3554-line);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 11.5px;
}
.w3554-winner b { color: var(--w3554-amber-2); }

.w3554-faq__item {
  border-bottom: 1px solid var(--w3554-line);
  padding: 10px 0;
}
.w3554-faq__item:last-child { border-bottom: none; }
.w3554-faq__q {
  font-weight: 700;
  color: var(--w3554-sand);
  font-size: 13px;
  margin: 0 0 4px;
}
.w3554-faq__a {
  margin: 0;
  font-size: 12.5px;
  color: var(--w3554-silver);
}

/* ============= Extended footer (promo directory) ============= */
.w3554-extend {
  margin-top: 24px;
  border-top: 1px solid var(--w3554-line);
  padding-top: 18px;
}
.w3554-extend__col { margin-bottom: 16px; }
.w3554-extend__h {
  font-size: 13px;
  font-weight: 800;
  color: var(--w3554-amber-2);
  margin: 0 0 8px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.w3554-extend__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.w3554-extend__list li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--w3554-silver);
  font-size: 12.5px;
}
.w3554-extend__list li a::before {
  content: "›";
  color: var(--w3554-amber-2);
  font-weight: 800;
}
.w3554-extend__cta {
  display: grid;
  gap: 6px;
}
.w3554-extend__disclaimer {
  font-size: 11px;
  color: var(--w3554-muted);
  line-height: 1.55;
  border-top: 1px dashed var(--w3554-line);
  padding-top: 10px;
  margin-top: 6px;
}

/* ============= Footer ============= */
.w3554-footer {
  margin-top: 22px;
  padding: 18px 0 96px;
  border-top: 1px solid var(--w3554-line);
  background: rgba(8, 12, 18, 0.55);
  color: var(--w3554-muted);
  font-size: 11.5px;
}
.w3554-footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.w3554-footer__brand img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}
.w3554-footer__brand b { color: var(--w3554-sand); font-size: 13px; }
.w3554-footer__copy { margin: 0; }
.w3554-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}
.w3554-footer__links a { color: var(--w3554-silver); font-size: 11.5px; }

/* ============= Bottom nav (outlined functional cells) ============= */
.w3554-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  background: linear-gradient(180deg, #1c2832 0%, #121a23 100%);
  border-top: 1px solid rgba(222, 184, 135, 0.32);
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.35);
}
.w3554-bottom-nav__inner {
  max-width: var(--w3554-max);
  margin: 0 auto;
  padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}
.w3554-bottom-nav__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--w3554-line);
  border-radius: 12px;
  padding: 6px 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--w3554-silver);
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.18s ease;
  text-decoration: none;
  min-height: 50px;
}
.w3554-bottom-nav__item:hover {
  background: rgba(222, 184, 135, 0.10);
  color: var(--w3554-sand);
  text-decoration: none;
}
.w3554-bottom-nav__item--active {
  background: linear-gradient(135deg, #CD853F 0%, #DEB887 100%);
  color: #1a120a;
  border-color: transparent;
  box-shadow: 0 0 0 1px rgba(222, 184, 135, 0.6), 0 4px 12px rgba(205, 133, 63, 0.32);
}
.w3554-bottom-nav__icon {
  width: 22px;
  height: 22px;
  display: block;
}
.w3554-bottom-nav__item--active .w3554-bottom-nav__icon { filter: drop-shadow(0 0 4px rgba(255, 240, 200, 0.6)); }

/* ============= Utility ============= */
.w3554-hidden { display: none !important; }
.w3554-main { padding-bottom: 12px; }

/* Keep mobile canvas on wider screens */
@media (min-width: 480px) {
  body { background-attachment: fixed; }
}

/* ===== Mobile breakpoint max-width 430px ===== */
@media (max-width: 430px) {
  body { font-size: 14px; }
  .w3554-wrap { padding: 0 10px; }
  .w3554-header__inner { padding: 7px 10px; gap: 8px; }
  .w3554-brand__logo { width: 32px; height: 32px; }
  .w3554-brand__name { font-size: 15px; }
  .w3554-brand__tag { font-size: 9.5px; }
  .w3554-btn { font-size: 12px; padding: 7px 12px; }
  .w3554-iconbtn { width: 34px; height: 34px; }
  .w3554-iconbtn svg { width: 18px; height: 18px; }
  .w3554-hero { margin-top: 10px; }
  .w3554-carousel__slide img { height: 150px; }
  .w3554-carousel__overlay { padding: 10px 12px; }
  .w3554-carousel__title { font-size: 15px; }
  .w3554-carousel__sub { font-size: 11px; }
  .w3554-carousel__cta { font-size: 11px; padding: 5px 10px; }
  .w3554-section { margin-top: 18px; }
  .w3554-section__title { font-size: 15px; }
  .w3554-section__more { font-size: 11px; }
  .w3554-cat-bar__chip { padding: 5px 10px; font-size: 11px; }
  .w3554-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .w3554-game-card__name { font-size: 9.5px; padding: 3px 3px 2px; }
  .w3554-game-card__badge { font-size: 8px; padding: 2px 5px; }
  .w3554-strip { padding: 12px; gap: 8px; }
  .w3554-strip__title { font-size: 13px; }
  .w3554-strip__sub { font-size: 11px; }
  .w3554-prose { padding: 13px; font-size: 13px; }
  .w3554-prose h2 { font-size: 14px; }
  .w3554-prose h3 { font-size: 12.5px; }
  .w3554-winners { grid-template-columns: repeat(2, 1fr); gap: 5px; }
  .w3554-winner { font-size: 11px; padding: 7px 8px; }
  .w3554-testimonial { padding: 9px 10px; }
  .w3554-testimonial__name { font-size: 12px; }
  .w3554-testimonial__text { font-size: 11px; }
  .w3554-extend__h { font-size: 12px; }
  .w3554-extend__list li a { font-size: 12px; }
  .w3554-footer { padding: 16px 0 90px; font-size: 11px; }
  .w3554-bottom-nav__inner { padding: 5px 6px calc(5px + env(safe-area-inset-bottom)); gap: 3px; }
  .w3554-bottom-nav__item { font-size: 9px; padding: 5px 2px; min-height: 46px; }
  .w3554-bottom-nav__icon { width: 20px; height: 20px; }
  .w3554-menu__list { gap: 6px; }
  .w3554-menu__list a { padding: 9px 10px; font-size: 12px; }
}
