/* =========================================================
   okebet login - theme.css
   Mobile-first casino gaming stylesheet.
   All custom classes use the v3be- prefix.
   Palette: dark background #333333, coral accent #FF7F50.
   ========================================================= */

:root {
  --v3be-primary: #FF7F50;
  --v3be-primary-dark: #e66a3d;
  --v3be-bg: #333333;
  --v3be-bg-deep: #262626;
  --v3be-bg-soft: #3d3d3d;
  --v3be-text: #f5f5f5;
  --v3be-text-muted: #cfcfcf;
  --v3be-border: rgba(255, 127, 80, 0.35);
  --v3be-gold: #ffd27a;
  --v3be-radius: 14px;
  --v3be-radius-sm: 9px;
  --v3be-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  --v3be-header-h: 56px;
  --v3be-bottom-h: 60px;
  --v3be-maxw: 430px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", "Segoe UI", Roboto, system-ui, sans-serif;
  background: var(--v3be-bg);
  color: var(--v3be-text);
  font-size: 1.4rem;
  line-height: 1.5rem;
  max-width: var(--v3be-maxw);
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

a { color: var(--v3be-primary); text-decoration: none; }
a:hover, a:focus { color: var(--v3be-gold); }
img { max-width: 100%; display: block; }

/* ---------- Layout helpers ---------- */
.v3be-container {
  width: 100%;
  padding: 0 12px;
}
.v3be-wrapper {
  width: 100%;
  max-width: var(--v3be-maxw);
  margin: 0 auto;
  padding: 0 12px;
}
.v3be-grid {
  display: grid;
  gap: 10px;
}
.v3be-section {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ---------- Buttons ---------- */
.v3be-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 18px;
  font-size: 1.4rem;
  font-weight: 700;
  border: none;
  border-radius: var(--v3be-radius-sm);
  background: var(--v3be-primary);
  color: #1a1a1a;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 4px 12px rgba(255, 127, 80, 0.35);
}
.v3be-btn:hover, .v3be-btn:focus {
  background: var(--v3be-gold);
  transform: translateY(-1px);
}
.v3be-btn--ghost {
  background: transparent;
  color: var(--v3be-primary);
  border: 1.5px solid var(--v3be-primary);
  box-shadow: none;
}
.v3be-btn--ghost:hover { background: rgba(255, 127, 80, 0.12); color: var(--v3be-gold); }
.v3be-btn--block { width: 100%; }
.v3be-btn--lg { min-height: 50px; font-size: 1.6rem; }

/* ---------- Header ---------- */
.v3be-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--v3be-header-h);
  background: linear-gradient(180deg, #2b2b2b, #333333);
  border-bottom: 2px solid var(--v3be-primary);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.v3be-header__inner {
  width: 100%;
  max-width: var(--v3be-maxw);
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.v3be-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--v3be-text);
  letter-spacing: .3px;
}
.v3be-logo img { width: 28px; height: 28px; border-radius: 6px; }
.v3be-logo span { color: var(--v3be-primary); }
.v3be-header__spacer { flex: 1; }
.v3be-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.v3be-header__actions .v3be-btn {
  min-height: 36px;
  padding: 0 12px;
  font-size: 1.3rem;
}
.v3be-menu-btn {
  background: transparent;
  border: none;
  color: var(--v3be-text);
  font-size: 2rem;
  cursor: pointer;
  min-width: 40px;
  min-height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v3be-menu-btn:hover { background: rgba(255, 127, 80, 0.15); color: var(--v3be-primary); }

/* ---------- Mobile dropdown menu ---------- */
.v3be-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: var(--v3be-bg-deep);
  z-index: 9999;
  padding: 18px 16px;
  overflow-y: auto;
  transition: right .28s ease;
  box-shadow: -6px 0 24px rgba(0,0,0,.45);
}
.v3be-drawer.is-open { right: 0; }
.v3be-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.v3be-drawer__title { font-size: 1.6rem; font-weight: 800; color: var(--v3be-primary); }
.v3be-drawer__close {
  background: transparent; border: none; color: var(--v3be-text);
  font-size: 2rem; cursor: pointer; min-width: 40px; min-height: 40px;
}
.v3be-drawer__cta {
  display: flex; gap: 8px; margin-bottom: 16px;
}
.v3be-drawer__cta .v3be-btn { flex: 1; }
.v3be-drawer nav a {
  display: block;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: var(--v3be-text);
  font-size: 1.4rem;
  font-weight: 600;
}
.v3be-drawer nav a:hover { color: var(--v3be-primary); padding-left: 14px; }
.v3be-drawer nav i { color: var(--v3be-primary); margin-right: 8px; }
.v3be-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  z-index: 9998; opacity: 0; visibility: hidden; transition: opacity .25s;
}
.v3be-overlay.is-open { opacity: 1; visibility: visible; }

/* ---------- Hero / Carousel ---------- */
.v3be-hero {
  margin-top: var(--v3be-header-h);
  position: relative;
  overflow: hidden;
}
.v3be-carousel {
  position: relative;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}
.v3be-carousel__track {
  display: flex;
  transition: transform .45s ease;
}
.v3be-slide {
  min-width: 100%;
  position: relative;
  cursor: pointer;
}
.v3be-slide img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.v3be-slide__cap {
  position: absolute;
  left: 14px; bottom: 14px;
  background: rgba(0,0,0,.55);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--v3be-primary);
}
.v3be-carousel__dots {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px;
  z-index: 5;
}
.v3be-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none; cursor: pointer; padding: 0;
}
.v3be-dot.is-active { background: var(--v3be-primary); width: 22px; border-radius: 4px; }

/* ---------- Headings ---------- */
.v3be-h1 {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 2.4rem;
  margin: 16px 0 6px;
  color: var(--v3be-text);
}
.v3be-h1 b { color: var(--v3be-primary); }
.v3be-h2 {
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--v3be-text);
  display: flex; align-items: center; gap: 8px;
}
.v3be-h2 i { color: var(--v3be-primary); }
.v3be-h2 small { font-size: 1.2rem; color: var(--v3be-text-muted); font-weight: 500; margin-left: auto; }
.v3be-h3 {
  font-size: 1.45rem;
  font-weight: 700;
  margin: 14px 0 6px;
  color: var(--v3be-primary);
}
.v3be-lead {
  font-size: 1.4rem;
  color: var(--v3be-text-muted);
  margin: 0 0 12px;
}
.v3be-p { margin: 0 0 10px; color: var(--v3be-text-muted); font-size: 1.35rem; }

/* ---------- Game list / grid ---------- */
.v3be-block-title {
  display: flex; align-items: center; justify-content: space-between;
  margin: 18px 0 10px;
}
.v3be-block-title h2 {
  font-size: 1.55rem; font-weight: 800; color: var(--v3be-text); margin: 0;
  display: flex; align-items: center; gap: 8px;
}
.v3be-block-title h2 i { color: var(--v3be-primary); }
.v3be-block-title a { font-size: 1.2rem; color: var(--v3be-primary); font-weight: 600; }

.v3be-games {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.v3be-game {
  background: var(--v3be-bg-soft);
  border-radius: var(--v3be-radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform .15s ease, box-shadow .2s ease;
  border: 1px solid rgba(255,255,255,.05);
}
.v3be-game:hover, .v3be-game:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255,127,80,.25);
  border-color: var(--v3be-border);
}
.v3be-game__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #1f1f1f;
}
.v3be-game__name {
  font-size: 1.05rem;
  font-weight: 600;
  padding: 5px 6px 7px;
  text-align: center;
  color: var(--v3be-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v3be-game__tag {
  position: absolute;
  top: 4px; left: 4px;
  background: var(--v3be-primary);
  color: #1a1a1a;
  font-size: .95rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}
.v3be-game__tag.hot { background: #e6453f; color: #fff; }

/* ---------- Cards ---------- */
.v3be-card {
  background: var(--v3be-bg-soft);
  border-radius: var(--v3be-radius);
  padding: 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,.06);
}
.v3be-card--accent {
  border-left: 4px solid var(--v3be-primary);
  background: linear-gradient(135deg, #3a3a3a, #2e2e2e);
}
.v3be-card__title {
  font-size: 1.5rem; font-weight: 800; margin: 0 0 6px; color: var(--v3be-text);
  display: flex; align-items: center; gap: 8px;
}
.v3be-card__title i { color: var(--v3be-primary); }

/* ---------- Features / highlight grid ---------- */
.v3be-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.v3be-feature {
  background: var(--v3be-bg-soft);
  border-radius: var(--v3be-radius-sm);
  padding: 12px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.06);
}
.v3be-feature .material-icons,
.v3be-feature i {
  font-size: 28px;
  color: var(--v3be-primary);
  margin-bottom: 6px;
}
.v3be-feature h4 { margin: 0 0 4px; font-size: 1.25rem; color: var(--v3be-text); }
.v3be-feature p { margin: 0; font-size: 1.15rem; color: var(--v3be-text-muted); line-height: 1.4; }

/* ---------- Steps ---------- */
.v3be-steps { counter-reset: step; padding: 0; list-style: none; margin: 0; }
.v3be-steps li {
  position: relative;
  padding: 8px 8px 8px 44px;
  margin-bottom: 8px;
  background: var(--v3be-bg-soft);
  border-radius: var(--v3be-radius-sm);
  font-size: 1.3rem;
  color: var(--v3be-text-muted);
}
.v3be-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 8px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--v3be-primary);
  color: #1a1a1a;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
}
.v3be-steps b { color: var(--v3be-text); }

/* ---------- FAQ ---------- */
.v3be-faq { border-top: 1px solid rgba(255,255,255,.07); }
.v3be-faq summary {
  cursor: pointer;
  padding: 12px 4px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--v3be-text);
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.v3be-faq summary::-webkit-details-marker { display: none; }
.v3be-faq summary::after {
  content: "+";
  color: var(--v3be-primary);
  font-size: 1.8rem;
  font-weight: 700;
}
.v3be-faq[open] summary::after { content: "−"; }
.v3be-faq p { margin: 0 0 12px; color: var(--v3be-text-muted); font-size: 1.3rem; padding-right: 8px; }

/* ---------- Testimonials ---------- */
.v3be-testi {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.v3be-testi-item {
  background: var(--v3be-bg-soft);
  border-radius: var(--v3be-radius-sm);
  padding: 12px;
  border-left: 3px solid var(--v3be-primary);
}
.v3be-testi-item .v3be-stars { color: var(--v3be-gold); font-size: 1.1rem; margin-bottom: 4px; }
.v3be-testi-item p { margin: 0 0 6px; font-size: 1.25rem; color: var(--v3be-text-muted); }
.v3be-testi-item cite { font-size: 1.15rem; color: var(--v3be-primary); font-style: normal; font-weight: 700; }

/* ---------- Payment / badges ---------- */
.v3be-badges {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.v3be-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 11px;
  background: var(--v3be-bg-soft);
  border-radius: 999px;
  font-size: 1.2rem;
  border: 1px solid rgba(255,255,255,.08);
  color: var(--v3be-text);
}
.v3be-badge i { color: var(--v3be-primary); }

/* ---------- Winners ticker ---------- */
.v3be-winners {
  background: var(--v3be-bg-deep);
  border-radius: var(--v3be-radius-sm);
  padding: 10px 12px;
  margin-bottom: 12px;
  border: 1px dashed var(--v3be-border);
}
.v3be-winners h3 { margin: 0 0 8px; font-size: 1.3rem; color: var(--v3be-primary); display:flex; align-items:center; gap:6px;}
.v3be-winner-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 1.2rem;
}
.v3be-winner-row:last-child { border-bottom: none; }
.v3be-winner-row b { color: var(--v3be-gold); }

/* ---------- CTA banner ---------- */
.v3be-cta {
  background: linear-gradient(135deg, #FF7F50, #ff9d72);
  color: #1a1a1a;
  border-radius: var(--v3be-radius);
  padding: 18px;
  text-align: center;
  margin: 16px 0;
}
.v3be-cta h3 { margin: 0 0 6px; font-size: 1.7rem; color: #1a1a1a; }
.v3be-cta p { margin: 0 0 12px; font-size: 1.3rem; color: #2a2a2a; }
.v3be-cta .v3be-btn { background: #1a1a1a; color: var(--v3be-primary); }

/* ---------- Footer ---------- */
.v3be-footer {
  background: var(--v3be-bg-deep);
  padding: 22px 12px calc(var(--v3be-bottom-h) + 26px);
  margin-top: 18px;
  border-top: 2px solid var(--v3be-primary);
}
.v3be-footer__brand {
  font-size: 1.6rem; font-weight: 800; color: var(--v3be-primary); margin-bottom: 6px;
}
.v3be-footer__desc { font-size: 1.2rem; color: var(--v3be-text-muted); margin: 0 0 14px; line-height: 1.5; }
.v3be-footer__links {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 10px; margin-bottom: 14px;
}
.v3be-footer__links a {
  color: var(--v3be-text-muted);
  font-size: 1.2rem;
  padding: 4px 0;
}
.v3be-footer__links a:hover { color: var(--v3be-primary); }
.v3be-footer__promo {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px;
}
.v3be-footer__promo .v3be-btn { min-height: 38px; font-size: 1.2rem; padding: 0 12px; flex: 1 1 auto; }
.v3be-footer__copy { font-size: 1.1rem; color: var(--v3be-text-muted); border-top: 1px solid rgba(255,255,255,.07); padding-top: 10px; }

/* ---------- Mobile bottom nav ---------- */
.v3be-bottomnav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--v3be-bottom-h);
  background: linear-gradient(180deg, #2b2b2b, #1f1f1f);
  border-top: 2px solid var(--v3be-primary);
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
}
.v3be-bottomnav__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: transparent;
  border: none;
  color: var(--v3be-text-muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 2px;
  min-width: 60px;
  min-height: 60px;
  position: relative;
  transition: color .2s ease, transform .15s ease;
}
.v3be-bottomnav__btn i,
.v3be-bottomnav__btn .material-icons {
  font-size: 22px;
  transition: transform .2s ease;
}
.v3be-bottomnav__btn:hover, .v3be-bottomnav__btn:focus {
  color: var(--v3be-primary);
}
.v3be-bottomnav__btn:hover i { transform: scale(1.12); }
.v3be-bottomnav__btn.is-active { color: var(--v3be-primary); }
.v3be-bottomnav__btn.is-active::before {
  content: ""; position: absolute; top: 0; left: 25%; right: 25%;
  height: 3px; background: var(--v3be-primary); border-radius: 0 0 4px 4px;
}
.v3be-bottomnav__btn span { font-size: 1rem; line-height: 1.1; }

/* ---------- Utility ---------- */
.v3be-text-justify { text-align: justify; }
.v3be-pill {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  background: rgba(255,127,80,.15); color: var(--v3be-primary);
  font-size: 1.1rem; font-weight: 700; margin-bottom: 8px;
}
.v3be-seo-links a {
  display: inline;
  color: var(--v3be-primary);
  font-weight: 600;
}
.v3be-hidden { display: none !important; }

/* ---------- Main content padding ---------- */
main { padding-bottom: calc(var(--v3be-bottom-h) + 16px); }

/* ---------- Desktop: hide bottom nav, widen layout ---------- */
@media (min-width: 769px) {
  body { max-width: 760px; }
  .v3be-bottomnav { display: none; }
  main { padding-bottom: 24px; }
  .v3be-footer { padding-bottom: 26px; }
  .v3be-slide img { height: 280px; }
  .v3be-games { grid-template-columns: repeat(6, 1fr); }
  .v3be-features { grid-template-columns: repeat(4, 1fr); }
  .v3be-testi { grid-template-columns: repeat(2, 1fr); }
}

/* Larger phones */
@media (min-width: 414px) and (max-width: 768px) {
  .v3be-games { grid-template-columns: repeat(4, 1fr); }
}
