@charset "utf-8";
/* ============================================================
 * cb3333.click - visual-11ffcc.css
 * All custom classes / variables use the "s11f-" prefix.
 * Palette: #708090 (slate) | #CCCCCC (light) | #1E1E1E (dark)
 *          #D2691E (chocolate orange accent)
 * Mobile-first 320-430px canvas. No desktop-wide layout.
 * ============================================================ */

:root {
  --s11f-slate: #708090;
  --s11f-light: #CCCCCC;
  --s11f-dark: #1E1E1E;
  --s11f-accent: #D2691E;
  --s11f-dark-2: #141414;
  --s11f-dark-3: #232323;
  --s11f-cream: #f3f1ec;
  --s11f-muted: #9aa3ad;
  --s11f-gold: #e0b06a;
  --s11f-shadow: 0 6px 18px rgba(0,0,0,.35);
  --s11f-radius: 14px;
  --s11f-maxw: 440px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { -webkit-text-size-adjust: 100%; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--s11f-dark);
  color: var(--s11f-cream);
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Shonar Bangla", system-ui, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
}
body { min-height: 100vh; }
a { color: var(--s11f-gold); text-decoration: none; }
a:hover, a:focus { color: var(--s11f-accent); }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* Phone canvas frame for wider screens */
.s11f-canvas {
  max-width: var(--s11f-maxw);
  margin: 0 auto;
  background: var(--s11f-dark);
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 40px rgba(0,0,0,.55);
}

/* =========== Header (tag-style top bar) =========== */
.s11f-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: linear-gradient(180deg, #181818 0%, #1E1E1E 100%);
  border-bottom: 2px solid var(--s11f-accent);
}
.s11f-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.s11f-brand .s11f-logo {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  object-fit: cover;
  border: 1px solid var(--s11f-accent);
  background: #000;
  flex-shrink: 0;
}
.s11f-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.s11f-brand-name {
  font-weight: 800;
  font-size: 17px;
  color: var(--s11f-cream);
  letter-spacing: .5px;
  white-space: nowrap;
}
.s11f-brand-name b { color: var(--s11f-accent); }
.s11f-brand-tag {
  font-size: 10px;
  color: var(--s11f-muted);
  letter-spacing: .6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.s11f-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.s11f-btn {
  border: 0;
  border-radius: 20px;
  padding: 9px 14px;
  font-size: 12.5px;
  font-weight: 700;
  min-height: 36px;
  min-width: 44px;
  transition: transform .15s ease, filter .15s ease;
}
.s11f-btn:active { transform: scale(.96); }
.s11f-btn--login {
  background: transparent;
  color: var(--s11f-cream);
  border: 1px solid var(--s11f-slate);
}
.s11f-btn--register {
  background: linear-gradient(135deg, var(--s11f-accent) 0%, #b15613 100%);
  color: #fff;
  box-shadow: 0 3px 10px rgba(210,105,30,.45);
}
.s11f-menu-btn {
  background: transparent;
  border: 1px solid var(--s11f-slate);
  color: var(--s11f-cream);
  border-radius: 9px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.s11f-menu-btn svg { width: 18px; height: 18px; }

/* =========== Route panel (slide-up) =========== */
.s11f-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 70;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
}
.s11f-menu-backdrop--show {
  opacity: 1;
  visibility: visible;
}
.s11f-route-panel {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: linear-gradient(180deg, #1c1c1c 0%, #141414 100%);
  border-top: 3px solid var(--s11f-accent);
  border-radius: 18px 18px 0 0;
  padding: 14px 14px 22px;
  transform: translateY(110%);
  transition: transform .3s ease;
  max-width: var(--s11f-maxw);
  margin: 0 auto;
}
.s11f-route-panel--open { transform: translateY(0); }
.s11f-route-panel h3 {
  margin: 4px 2px 10px;
  font-size: 13px;
  color: var(--s11f-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.s11f-route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.s11f-route-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--s11f-dark-3);
  border: 1px solid #2c2c2c;
  border-radius: 10px;
  padding: 10px 6px;
  font-size: 12px;
  color: var(--s11f-cream);
  text-align: center;
  min-height: 64px;
  transition: background .15s ease, border-color .15s ease;
}
.s11f-route-item:active { background: #2a2a2a; }
.s11f-route-item .s11f-ico {
  width: 22px; height: 22px; color: var(--s11f-gold);
}
.s11f-route-item--promo {
  background: linear-gradient(135deg, #3a2410 0%, #1c1c1c 100%);
  border-color: var(--s11f-accent);
  color: #ffd9b0;
}

/* =========== Hero carousel =========== */
.s11f-hero {
  position: relative;
  margin: 10px;
  border-radius: var(--s11f-radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--s11f-shadow);
}
.s11f-slides { position: relative; }
.s11f-slide {
  position: relative;
  display: none;
  cursor: pointer;
}
.s11f-slide--active { display: block; }
.s11f-slide img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: var(--s11f-radius);
}
.s11f-slide-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 14px 12px;
  background: linear-gradient(0deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,0) 100%);
  color: #fff;
}
.s11f-slide-cap b { color: var(--s11f-accent); display: block; font-size: 17px; }
.s11f-slide-cap span { font-size: 12.5px; color: #f0e9df; }
.s11f-dots {
  position: absolute;
  bottom: 8px;
  right: 12px;
  display: flex;
  gap: 5px;
  z-index: 4;
}
.s11f-slide-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: 0;
  padding: 0;
}
.s11f-slide-dot--active { background: var(--s11f-accent); }

/* =========== Category quick tabs =========== */
.s11f-quicktabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 4px 10px 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.s11f-quicktabs::-webkit-scrollbar { display: none; }
.s11f-quicktab {
  flex: 0 0 auto;
  background: var(--s11f-dark-3);
  color: var(--s11f-cream);
  border: 1px solid #2c2c2c;
  padding: 7px 12px;
  border-radius: 16px;
  font-size: 12.5px;
  font-weight: 600;
}
.s11f-quicktab b { color: var(--s11f-accent); }

/* =========== Section & game grid =========== */
.s11f-section {
  margin: 14px 10px 6px;
}
.s11f-section-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.s11f-section-bar {
  width: 4px;
  height: 18px;
  background: var(--s11f-accent);
  border-radius: 2px;
}
.s11f-section-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--s11f-cream);
  margin: 0;
  flex: 1;
}
.s11f-section-title em {
  font-style: normal;
  color: var(--s11f-accent);
}
.s11f-section-more {
  font-size: 11.5px;
  color: var(--s11f-muted);
}
.s11f-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (min-width: 360px) {
  .s11f-grid { gap: 9px; }
}
@media (min-width: 400px) {
  .s11f-grid { grid-template-columns: repeat(5, 1fr); }
}
.s11f-card {
  background: var(--s11f-dark-3);
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease;
  text-align: center;
}
.s11f-card:active {
  transform: scale(.96);
  border-color: var(--s11f-accent);
}
.s11f-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #000;
  display: block;
}
.s11f-card-name {
  font-size: 11px;
  line-height: 1.25;
  color: var(--s11f-cream);
  padding: 5px 4px 6px;
  min-height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* =========== Info / supplemental modules =========== */
.s11f-info {
  margin: 14px 10px;
  background: var(--s11f-dark-2);
  border: 1px solid #2a2a2a;
  border-radius: var(--s11f-radius);
  padding: 14px;
}
.s11f-info h2 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--s11f-accent);
}
.s11f-info p {
  margin: 0 0 10px;
  color: #d8d3ca;
  font-size: 13.5px;
}
.s11f-info p:last-child { margin-bottom: 0; }
.s11f-info a { color: var(--s11f-gold); font-weight: 600; }

.s11f-styles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 10px;
}
.s11f-style-card {
  background: linear-gradient(135deg, #232323 0%, #181818 100%);
  border: 1px solid #2c2c2c;
  border-radius: 12px;
  padding: 12px;
}
.s11f-style-card b { color: var(--s11f-accent); display: block; margin-bottom: 4px; font-size: 14px; }
.s11f-style-card span { color: #cfc9bf; font-size: 12.5px; }

/* RTP mini bars */
.s11f-rtp-row {
  margin-bottom: 10px;
}
.s11f-rtp-row:last-child { margin-bottom: 0; }
.s11f-rtp-top {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  margin-bottom: 4px;
}
.s11f-rtp-top b { color: var(--s11f-cream); }
.s11f-rtp-top span { color: var(--s11f-gold); font-weight: 700; }
.s11f-rtp-bar {
  height: 7px;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
}
.s11f-rtp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--s11f-accent), var(--s11f-gold));
}

/* Testimonials */
.s11f-reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 10px;
}
.s11f-review {
  background: var(--s11f-dark-2);
  border-left: 3px solid var(--s11f-accent);
  border-radius: 8px;
  padding: 10px 12px;
}
.s11f-review q {
  color: #d8d3ca;
  font-size: 13px;
  quotes: "\201C" "\201D";
}
.s11f-review q::before { content: open-quote; color: var(--s11f-gold); }
.s11f-review q::after { content: close-quote; color: var(--s11f-gold); }
.s11f-review cite {
  display: block;
  margin-top: 4px;
  color: var(--s11f-muted);
  font-size: 11.5px;
  font-style: normal;
}

/* =========== Extended footer =========== */
.s11f-ext-footer {
  margin: 16px 10px 8px;
  background: var(--s11f-dark-2);
  border: 1px solid #2a2a2a;
  border-radius: var(--s11f-radius);
  padding: 14px;
}
.s11f-ext-footer h2 {
  font-size: 15px;
  margin: 0 0 8px;
  color: var(--s11f-accent);
}
.s11f-ext-footer h3 {
  font-size: 13px;
  color: var(--s11f-gold);
  margin: 12px 0 6px;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.s11f-ext-footer p {
  margin: 0 0 8px;
  font-size: 12.8px;
  color: #c9c3ba;
}
.s11f-promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin: 6px 0 8px;
}
.s11f-promo-entry {
  display: block;
  background: linear-gradient(135deg, #2a1a0c 0%, #1c1c1c 100%);
  border: 1px solid var(--s11f-accent);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  color: #ffd9b0;
  font-size: 12px;
  font-weight: 700;
}
.s11f-promo-entry:active { transform: scale(.97); }
.s11f-promo-entry span { color: var(--s11f-gold); display: block; font-size: 11px; margin-top: 2px; font-weight: 500; }

.s11f-directory {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 10px;
  margin: 4px 0 8px;
}
.s11f-directory a {
  font-size: 12px;
  color: var(--s11f-cream);
  padding: 4px 0;
  border-bottom: 1px dashed #333;
}
.s11f-directory a:hover { color: var(--s11f-accent); }

.s11f-disclaimer {
  font-size: 11.5px !important;
  color: #8c857b !important;
  border-top: 1px solid #2a2a2a;
  padding-top: 10px;
  margin-top: 6px !important;
  line-height: 1.6;
}

/* =========== Page copyright bar =========== */
.s11f-copyright {
  text-align: center;
  font-size: 11.5px;
  color: var(--s11f-muted);
  padding: 10px 14px 80px;
  margin: 0;
}

/* =========== Bottom nav (brand accent belt) =========== */
.s11f-bnav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  max-width: var(--s11f-maxw);
  margin: 0 auto;
  background: linear-gradient(0deg, #0f0f0f 0%, #1c1c1c 100%);
  border-top: 2px solid var(--s11f-accent);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 5px 2px 6px;
}
.s11f-bnav-item {
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 5px 2px;
  color: var(--s11f-slate);
  font-size: 10px;
  font-weight: 600;
  min-height: 52px;
  position: relative;
  transition: color .15s ease;
}
.s11f-bnav-item svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  transition: transform .2s ease, fill .2s ease;
}
.s11f-bnav-item--active {
  color: var(--s11f-accent);
}
.s11f-bnav-item--active::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 3px;
  background: var(--s11f-accent);
  border-radius: 0 0 3px 3px;
}
.s11f-bnav-item--active svg { transform: translateY(-1px) scale(1.08); }
.s11f-bnav-item--promo { color: var(--s11f-gold); }
.s11f-bnav-item:active svg { transform: scale(1.18); }

/* =========== Utilities =========== */
.s11f-container { padding-bottom: 70px; }
.s11f-sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.s11f-hidden { display: none !important; }

/* Long-form SEO content blocks */
.s11f-seo {
  margin: 14px 10px;
  background: var(--s11f-dark-2);
  border-radius: var(--s11f-radius);
  border: 1px solid #2a2a2a;
  padding: 14px;
}
.s11f-seo h2 { color: var(--s11f-accent); font-size: 16px; margin: 0 0 8px; }
.s11f-seo h3 { color: var(--s11f-gold); font-size: 13.5px; margin: 12px 0 6px; }
.s11f-seo p { color: #d3cec5; font-size: 13.2px; margin: 0 0 9px; }
.s11f-seo ul { margin: 0 0 9px; padding-left: 18px; color: #d3cec5; font-size: 13px; }
.s11f-seo li { margin-bottom: 4px; }
.s11f-seo a { color: var(--s11f-gold); font-weight: 600; }
