/* ===========================================================
   1111 bet apk - mobile-first stylesheet
   Prefix: vfc1-
   Palette: #DCDCDC | #E0F2F1 | #20B2AA | #B2DFDB | #3A3A3A
   Navigation language: centered identity bar / compact route
   panel / center-raised bottom nav / compact icon+label /
   color-toggle active / sliding indicator micro-interaction.
   English comments only.
   =========================================================== */

:root {
  --vfc1-bg-deep: #2c2c2c;
  --vfc1-bg-dark: #3A3A3A;
  --vfc1-bg-card: #454545;
  --vfc1-bg-card-2: #4f4f4f;
  --vfc1-text-light: #DCDCDC;
  --vfc1-text-mute: #b8b8b8;
  --vfc1-teal: #20B2AA;
  --vfc1-teal-dark: #1a8f89;
  --vfc1-mint: #E0F2F1;
  --vfc1-mint-soft: #B2DFDB;
  --vfc1-border: rgba(220, 220, 220, 0.12);
  --vfc1-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
  --vfc1-radius: 14px;
  --vfc1-radius-sm: 10px;
  --vfc1-header-h: 58px;
  --vfc1-bottom-h: 70px;
  --vfc1-indicator-w: 0;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--vfc1-bg-deep);
  color: var(--vfc1-text-light);
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", Roboto, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

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

a { color: var(--vfc1-mint-soft); text-decoration: none; }
a:hover { color: var(--vfc1-mint); }

/* ===== Mobile canvas frame ===== */
.vfc1-shell {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  background:
    radial-gradient(120% 40% at 50% -5%, rgba(32, 178, 170, 0.18), transparent 70%),
    linear-gradient(180deg, #303030 0%, #2c2c2c 30%, #2c2c2c 100%);
  position: relative;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.45);
  padding-bottom: calc(var(--vfc1-bottom-h) + 24px);
}

/* ===== Header (centered identity bar) ===== */
.vfc1-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--vfc1-header-h);
  background: linear-gradient(180deg, rgba(58, 58, 58, 0.96), rgba(44, 44, 44, 0.96));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--vfc1-border);
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  padding: 0 10px;
}

.vfc1-header-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--vfc1-text-light);
  cursor: pointer;
  border-radius: 12px;
  transition: background .2s, color .2s;
}
.vfc1-header-btn:hover { background: rgba(32, 178, 170, 0.18); color: var(--vfc1-mint); }
.vfc1-header-btn svg { width: 22px; height: 22px; }

.vfc1-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
.vfc1-brand-logo {
  width: 30px; height: 30px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--vfc1-teal);
}
.vfc1-brand-name {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .3px;
  color: var(--vfc1-mint);
  line-height: 1.1;
}
.vfc1-brand-name b { color: var(--vfc1-teal); }

.vfc1-header-actions {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 6px;
}

.vfc1-btn {
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  height: 32px;
  padding: 0 12px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  letter-spacing: .2px;
  transition: transform .15s, box-shadow .2s, background .2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.vfc1-btn:active { transform: translateY(1px); }
.vfc1-btn-primary {
  background: linear-gradient(135deg, var(--vfc1-teal), var(--vfc1-teal-dark));
  color: #0e2a28;
  box-shadow: 0 3px 10px rgba(32, 178, 170, 0.4);
}
.vfc1-btn-primary:hover { box-shadow: 0 5px 16px rgba(32, 178, 170, 0.55); color: #0e2a28; }
.vfc1-btn-ghost {
  background: transparent;
  color: var(--vfc1-mint);
  border: 1px solid var(--vfc1-teal);
}
.vfc1-btn-ghost:hover { background: rgba(32, 178, 170, 0.15); }

/* ===== Slide-down compact route panel ===== */
.vfc1-menu {
  position: fixed;
  top: var(--vfc1-header-h);
  left: 50%;
  transform: translate(-50%, -12px);
  width: calc(100% - 20px);
  max-width: 410px;
  background: linear-gradient(180deg, #3a3a3a, #2f2f2f);
  border: 1px solid var(--vfc1-border);
  border-radius: 16px;
  padding: 14px;
  z-index: 55;
  box-shadow: var(--vfc1-shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.vfc1-menu.vfc1-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 4px);
}
.vfc1-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.vfc1-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 4px;
  background: rgba(32, 178, 170, 0.06);
  border: 1px solid var(--vfc1-border);
  border-radius: 12px;
  color: var(--vfc1-text-light);
  font-size: 12px;
  text-align: center;
  min-height: 60px;
  justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
}
.vfc1-menu-item:hover {
  background: rgba(32, 178, 170, 0.18);
  border-color: var(--vfc1-teal);
  color: var(--vfc1-mint);
}
.vfc1-menu-item svg { width: 20px; height: 20px; color: var(--vfc1-teal); }
.vfc1-menu-title {
  font-size: 11px;
  color: var(--vfc1-text-mute);
  margin: 4px 0 8px;
  text-align: center;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.vfc1-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.vfc1-backdrop.vfc1-open { opacity: 1; pointer-events: auto; }

/* ===== Hero / carousel ===== */
.vfc1-hero {
  margin: 12px 12px 0;
  border-radius: var(--vfc1-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--vfc1-shadow);
}
.vfc1-carousel {
  position: relative;
  border-radius: var(--vfc1-radius);
  overflow: hidden;
}
.vfc1-track {
  display: flex;
  transition: transform .45s ease;
}
.vfc1-slide {
  flex: 0 0 100%;
  position: relative;
  cursor: pointer;
}
.vfc1-slide img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.vfc1-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.vfc1-slide-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--vfc1-mint);
}
.vfc1-slide-sub {
  font-size: 12.5px;
  margin: 0 0 8px;
  color: var(--vfc1-text-light);
}
.vfc1-slide-cta {
  align-self: flex-start;
  background: linear-gradient(135deg, var(--vfc1-teal), var(--vfc1-teal-dark));
  color: #0e2a28;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
}
.vfc1-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.vfc1-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: all .25s;
  cursor: pointer;
}
.vfc1-dot.vfc1-active {
  background: var(--vfc1-teal);
  width: 18px;
  border-radius: 4px;
}

/* ===== Quick promo strip ===== */
.vfc1-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
}
.vfc1-quick-card {
  background: linear-gradient(135deg, rgba(32,178,170,0.15), rgba(178,223,219,0.06));
  border: 1px solid var(--vfc1-border);
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
  cursor: pointer;
  transition: transform .15s, border-color .2s;
}
.vfc1-quick-card:active { transform: scale(.97); }
.vfc1-quick-card:hover { border-color: var(--vfc1-teal); }
.vfc1-quick-card svg { width: 22px; height: 22px; color: var(--vfc1-teal); margin: 0 auto 4px; }
.vfc1-quick-card b { display: block; color: var(--vfc1-mint); font-size: 12.5px; }
.vfc1-quick-card span { font-size: 10.5px; color: var(--vfc1-text-mute); }

/* ===== Section heading ===== */
.vfc1-section {
  padding: 6px 12px 14px;
}
.vfc1-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 14px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--vfc1-border);
}
.vfc1-section-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--vfc1-mint);
  display: flex;
  align-items: center;
  gap: 8px;
}
.vfc1-section-title::before {
  content: "";
  width: 4px; height: 18px;
  background: linear-gradient(180deg, var(--vfc1-teal), var(--vfc1-mint-soft));
  border-radius: 2px;
}
.vfc1-section-more {
  font-size: 12px;
  color: var(--vfc1-teal);
}

/* ===== Game grid ===== */
.vfc1-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (min-width: 360px) {
  .vfc1-game-grid { gap: 10px; }
}
@media (min-width: 400px) {
  .vfc1-game-grid { grid-template-columns: repeat(5, 1fr); }
}
.vfc1-game {
  background: var(--vfc1-bg-card);
  border: 1px solid var(--vfc1-border);
  border-radius: var(--vfc1-radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: transform .15s, border-color .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.vfc1-game:hover {
  transform: translateY(-2px);
  border-color: var(--vfc1-teal);
  box-shadow: 0 6px 14px rgba(32, 178, 170, 0.25);
}
.vfc1-game-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #232323;
}
.vfc1-game-name {
  font-size: 11px;
  color: var(--vfc1-text-light);
  padding: 5px 4px 6px;
  text-align: center;
  line-height: 1.25;
  min-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vfc1-game-tag {
  display: inline-block;
  font-size: 9px;
  padding: 1px 6px;
  background: rgba(32,178,170,0.2);
  color: var(--vfc1-mint);
  border-radius: 6px;
  margin: 0 4px 6px;
  align-self: center;
}

/* ===== Article / content blocks ===== */
.vfc1-card {
  background: var(--vfc1-bg-card);
  border: 1px solid var(--vfc1-border);
  border-radius: var(--vfc1-radius);
  padding: 14px;
  margin: 12px;
}
.vfc1-card h2 {
  font-size: 17px;
  color: var(--vfc1-mint);
  margin: 0 0 8px;
}
.vfc1-card h3 {
  font-size: 14.5px;
  color: var(--vfc1-teal);
  margin: 12px 0 4px;
}
.vfc1-card p {
  margin: 0 0 10px;
  color: var(--vfc1-text-light);
  font-size: 14px;
}
.vfc1-card ul {
  margin: 6px 0 10px;
  padding-left: 20px;
}
.vfc1-card li { margin-bottom: 4px; font-size: 13.5px; }

/* ===== Feature strip (compact modules) ===== */
.vfc1-feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 0 12px 12px;
}
.vfc1-feature {
  background: linear-gradient(135deg, #3f3f3f, #353535);
  border: 1px solid var(--vfc1-border);
  border-left: 3px solid var(--vfc1-teal);
  border-radius: 12px;
  padding: 12px;
}
.vfc1-feature h3 {
  margin: 0 0 4px;
  font-size: 13.5px;
  color: var(--vfc1-mint);
}
.vfc1-feature p {
  margin: 0;
  font-size: 12px;
  color: var(--vfc1-text-mute);
  line-height: 1.5;
}

/* ===== Extended footer ===== */
.vfc1-ext-footer {
  margin: 16px 12px 0;
  background: linear-gradient(180deg, #323232, #2a2a2a);
  border: 1px solid var(--vfc1-border);
  border-radius: var(--vfc1-radius);
  padding: 16px;
}
.vfc1-ext-footer h3 {
  font-size: 14px;
  color: var(--vfc1-mint);
  margin: 12px 0 6px;
  letter-spacing: .3px;
}
.vfc1-ext-footer h3:first-child { margin-top: 0; }
.vfc1-ext-footer p {
  font-size: 12.5px;
  color: var(--vfc1-text-mute);
  margin: 0 0 8px;
  line-height: 1.55;
}
.vfc1-promo-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin: 6px 0 10px;
}
.vfc1-promo-link {
  background: rgba(32,178,170,0.08);
  border: 1px solid var(--vfc1-border);
  border-radius: 8px;
  padding: 7px 9px;
  font-size: 11.5px;
  color: var(--vfc1-mint);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.vfc1-promo-link:hover { background: rgba(32,178,170,0.2); border-color: var(--vfc1-teal); }
.vfc1-promo-link svg { width: 14px; height: 14px; color: var(--vfc1-teal); flex-shrink: 0; }

.vfc1-dir-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 10px;
  margin: 6px 0 10px;
  list-style: none;
  padding: 0;
}
.vfc1-dir-list a {
  font-size: 12px;
  color: var(--vfc1-text-light);
  padding: 3px 0;
  border-bottom: 1px dashed rgba(220,220,220,0.08);
}
.vfc1-dir-list a:hover { color: var(--vfc1-mint); }
.vfc1-disclaimer {
  font-size: 11px;
  color: var(--vfc1-text-mute);
  border-top: 1px solid var(--vfc1-border);
  padding-top: 10px;
  margin-top: 6px;
  line-height: 1.5;
}

.vfc1-copyright {
  text-align: center;
  font-size: 11.5px;
  color: var(--vfc1-text-mute);
  padding: 14px 16px 4px;
}

/* ===== Bottom navigation (center-raised) ===== */
.vfc1-bottom {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: var(--vfc1-bottom-h);
  background: linear-gradient(180deg, rgba(58,58,58,0.98), rgba(38,38,38,0.98));
  border-top: 1px solid var(--vfc1-border);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  z-index: 65;
  padding-bottom: env(safe-area-inset-bottom);
}
.vfc1-bottom-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 100%;
  color: var(--vfc1-text-mute);
  font-size: 10px;
  cursor: pointer;
  text-decoration: none;
  background: none;
  border: none;
  font-family: inherit;
  transition: color .25s;
}
.vfc1-bottom-item svg { width: 22px; height: 22px; transition: transform .25s; }
.vfc1-bottom-item span { letter-spacing: .2px; }

/* Raised center button */
.vfc1-bottom-raised {
  margin-top: -22px;
}
.vfc1-bottom-raised .vfc1-bottom-circle {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--vfc1-teal), var(--vfc1-teal-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(32, 178, 170, 0.55);
  border: 3px solid #2c2c2c;
  margin-bottom: 2px;
}
.vfc1-bottom-raised .vfc1-bottom-circle svg { width: 22px; height: 22px; color: #0e2a28; }

.vfc1-bottom-item:hover { color: var(--vfc1-mint); }
.vfc1-bottom-item:hover svg { transform: translateY(-2px); }

/* Active state - color toggle */
.vfc1-bottom-item.vfc1-current { color: var(--vfc1-teal); }
.vfc1-bottom-item.vfc1-current svg { color: var(--vfc1-teal); }

/* Sliding indicator */
.vfc1-bottom-indicator {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: var(--vfc1-indicator-w);
  background: linear-gradient(90deg, var(--vfc1-teal), var(--vfc1-mint-soft));
  border-radius: 0 0 4px 4px;
  transition: transform .3s ease, width .3s ease;
  pointer-events: none;
}

/* ===== Utility ===== */
.vfc1-hide { display: none !important; }
.vfc1-container { padding: 0 12px; }

@media (min-width: 600px) {
  body { background: #1c1c1c; }
}
