/* 7i77.click - layout.css (Bengali / bn-BD market)
   Class prefix: ve70-  (ALL custom classes use this prefix)
   Palette: #FF5722 | #BDB76B | #262626 | #FF8C00 (dark = bg, light = text)
   Comments in English. */

:root {
  --ve70-primary: #FF5722;
  --ve70-secondary: #BDB76B;
  --ve70-dark: #262626;
  --ve70-accent: #FF8C00;
  --ve70-bg: #1c1c1c;
  --ve70-card: #2f2f2f;
  --ve70-text: #f5f5f5;
  --ve70-muted: #cfcfcf;
  --ve70-border: rgba(189, 183, 107, 0.25);
  --ve70-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; font-size: 62.5%; }

body {
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", system-ui, sans-serif;
  background: var(--ve70-bg);
  color: var(--ve70-text);
  font-size: 1.5rem;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a { color: var(--ve70-secondary); text-decoration: none; }
a:hover { color: var(--ve70-accent); }

/* ===== Page width cap: mobile-first up to 430px ===== */
.ve70-shell {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
}

/* ===== Header ===== */
.ve70-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--ve70-dark), #161616);
  border-bottom: 2px solid var(--ve70-primary);
  box-shadow: var(--ve70-shadow);
}
.ve70-header-inner {
  max-width: 430px;
  margin: 0 auto;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.ve70-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--ve70-text);
  font-size: 1.8rem;
}
.ve70-logo img { width: 28px; height: 28px; border-radius: 6px; }
.ve70-logo span { color: var(--ve70-primary); }

.ve70-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ve70-btn {
  border: none;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, filter 0.15s;
}
.ve70-btn:active { transform: scale(0.94); }
.ve70-btn-register {
  background: linear-gradient(90deg, var(--ve70-primary), var(--ve70-accent));
  color: #fff;
}
.ve70-btn-login {
  background: transparent;
  color: var(--ve70-secondary);
  border: 1px solid var(--ve70-secondary);
}
.ve70-menu-btn {
  background: transparent;
  border: none;
  color: var(--ve70-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 4px 6px;
}

/* ===== Expandable nav menu ===== */
.ve70-nav-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #1a1a1a;
  border-top: 1px solid var(--ve70-border);
}
.ve70-nav-open { max-height: 460px; }
.ve70-nav-menu ul { list-style: none; padding: 6px 14px; }
.ve70-nav-menu li { border-bottom: 1px dashed rgba(255, 255, 255, 0.08); }
.ve70-nav-menu li:last-child { border-bottom: none; }
.ve70-nav-menu a {
  display: block;
  padding: 10px 4px;
  color: var(--ve70-text);
  font-size: 1.4rem;
}
.ve70-nav-menu a i { color: var(--ve70-primary); margin-right: 8px; }

/* ===== Hero / Carousel ===== */
main { padding-top: 64px; }
.ve70-hero {
  position: relative;
  margin: 12px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--ve70-shadow);
}
.ve70-slides { position: relative; }
.ve70-slide {
  display: none;
  position: relative;
}
.ve70-slide-active { display: block; }
.ve70-slide img { width: 100%; height: 200px; object-fit: cover; }
.ve70-slide-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
}
.ve70-slide-cap h2 { font-size: 1.8rem; color: var(--ve70-secondary); margin-bottom: 4px; }
.ve70-slide-cap p { font-size: 1.25rem; }
.ve70-dots {
  position: absolute;
  bottom: 8px;
  right: 12px;
  display: flex;
  gap: 6px;
}
.ve70-dot {
  width: 8px; height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
.ve70-dot-active { background: var(--ve70-primary); }

/* ===== Promotion CTA banner ===== */
.ve70-cta {
  margin: 14px 12px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ve70-primary), var(--ve70-accent));
  color: #fff;
  text-align: center;
  box-shadow: var(--ve70-shadow);
}
.ve70-cta h2 { font-size: 1.7rem; margin-bottom: 4px; }
.ve70-cta p { font-size: 1.3rem; margin-bottom: 10px; }
.ve70-cta a {
  display: inline-block;
  background: #fff;
  color: var(--ve70-primary);
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 700;
}

/* ===== Section title ===== */
.ve70-section {
  margin: 18px 12px 8px;
}
.ve70-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ve70-text);
  border-left: 4px solid var(--ve70-primary);
  padding-left: 10px;
  margin-bottom: 10px;
}
.ve70-section-title i { color: var(--ve70-accent); }
.ve70-section-title a {
  margin-left: auto;
  font-size: 1.2rem;
  color: var(--ve70-secondary);
  font-weight: 400;
}

/* ===== Game grid (compact icons) ===== */
.ve70-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 12px;
}
.ve70-game-card {
  background: var(--ve70-card);
  border-radius: 10px;
  padding: 6px;
  text-align: center;
  cursor: pointer;
  border: 1px solid var(--ve70-border);
  transition: transform 0.15s, box-shadow 0.15s;
}
.ve70-game-card:hover { transform: translateY(-3px); box-shadow: var(--ve70-shadow); }
.ve70-game-card img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 4px;
}
.ve70-game-card .ve70-game-name {
  font-size: 1.15rem;
  color: var(--ve70-text);
  line-height: 1.25;
  min-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== SEO content block ===== */
.ve70-seo-text {
  margin: 18px 12px;
  padding: 14px;
  background: var(--ve70-card);
  border-radius: 12px;
  border-left: 3px solid var(--ve70-secondary);
  font-size: 1.35rem;
  color: var(--ve70-muted);
}
.ve70-seo-text h2 {
  font-size: 1.6rem;
  color: var(--ve70-text);
  margin-bottom: 6px;
}
.ve70-seo-text p { margin-bottom: 8px; }
.ve70-seo-text a { color: var(--ve70-accent); text-decoration: underline; }

/* ===== Footer ===== */
.ve70-footer {
  margin-top: 24px;
  background: #161616;
  border-top: 2px solid var(--ve70-primary);
  padding: 18px 14px 28px;
}
.ve70-footer h3 {
  color: var(--ve70-secondary);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.ve70-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 12px;
  list-style: none;
}
.ve70-footer-links a { font-size: 1.25rem; color: var(--ve70-muted); }
.ve70-footer-disclaimer {
  margin-top: 12px;
  font-size: 1.15rem;
  color: #888;
  line-height: 1.5;
}
.ve70-footer-copy {
  margin-top: 8px;
  font-size: 1.1rem;
  color: #777;
  text-align: center;
}

/* ===== Mobile bottom navigation (5 buttons) ===== */
.ve70-bottomnav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #1f1f1f, #111);
  border-top: 1px solid var(--ve70-border);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  height: 62px;
}
.ve70-bottomnav-btn {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  color: var(--ve70-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  transition: color 0.15s, transform 0.15s;
}
.ve70-bottomnav-btn i { font-size: 22px; }
.ve70-bottomnav-btn span { font-size: 11px; }
.ve70-bottomnav-btn:active { transform: scale(0.92); }
.ve70-bn-active { color: var(--ve70-primary); }
.ve70-bn-active i { color: var(--ve70-accent); }

/* Desktop: hide bottom nav */
@media (min-width: 769px) {
  .ve70-bottomnav { display: none; }
}

/* Mobile: reserve bottom padding so content is not hidden under nav */
@media (max-width: 768px) {
  main { padding-bottom: 80px; }
  .ve70-footer { padding-bottom: 90px; }
}

/* Back-to-top floating button */
.ve70-back-top {
  position: fixed;
  right: 14px;
  bottom: 74px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ve70-primary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 999;
}
.ve70-show { opacity: 1; visibility: visible; }
