/* 95ok.homes - style-e6d0.css
   All custom classes use the v038- prefix for namespace isolation.
   Mobile-first design, max-width 430px viewport optimization. */

:root {
  --v038-primary: #FFB347;      /* warm amber accent */
  --v038-secondary: #EEE8AA;    /* pale gold */
  --v038-bg: #333333;           /* dark background */
  --v038-bg-deep: #262626;      /* deeper dark */
  --v038-bg-card: #3c3c3c;      /* card surface */
  --v038-text: #FAFAD2;         /* light text */
  --v038-text-muted: #cfcfa6;
  --v038-border: #555555;
  --v038-gold: #FFD27A;
  --v038-danger: #ff6b6b;
  --v038-success: #6bd08b;
}

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

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

body {
  font-family: "SolaimanLipi", "Noto Sans Bengali", "Hind Siliguri", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--v038-bg);
  color: var(--v038-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--v038-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.v038-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.v038-wrapper { min-height: 100vh; display: flex; flex-direction: column; }

/* ===== Header ===== */
.v038-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #2a2a2a 0%, #333333 100%);
  border-bottom: 2px solid var(--v038-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.v038-header-inner {
  max-width: 430px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .55rem 1rem; height: 52px;
}
.v038-logo { display: flex; align-items: center; gap: .6rem; }
.v038-logo img { width: 28px; height: 28px; border-radius: 6px; }
.v038-logo-text { font-size: 1.6rem; font-weight: 700; color: var(--v038-primary); letter-spacing: .3px; }
.v038-header-actions { display: flex; align-items: center; gap: .5rem; }
.v038-menu-btn {
  background: none; border: 0; color: var(--v038-text); font-size: 1.8rem; cursor: pointer;
  padding: .3rem .5rem; line-height: 1;
}
.v038-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem .9rem; border-radius: 20px; font-size: 1.25rem; font-weight: 600;
  border: 0; cursor: pointer; text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
  min-height: 32px; touch-action: manipulation;
}
.v038-btn:active { transform: scale(.95); }
.v038-btn-register { background: linear-gradient(90deg, var(--v038-primary), var(--v038-gold)); color: #1a1a1a; }
.v038-btn-login { background: transparent; color: var(--v038-text); border: 1px solid var(--v038-primary); }

/* ===== Mobile menu ===== */
.v038-mobile-menu {
  position: fixed; top: 52px; left: 0; right: 0; z-index: 9999;
  background: var(--v038-bg-deep);
  max-height: 0; overflow: hidden;
  transition: max-height .25s ease;
  border-bottom: 1px solid var(--v038-border);
}
.v038-menu-open { max-height: 420px; box-shadow: 0 8px 16px rgba(0,0,0,.5); }
.v038-mobile-menu ul { list-style: none; padding: .5rem 0; }
.v038-mobile-menu li a {
  display: block; padding: 1rem 1.5rem; color: var(--v038-text);
  border-bottom: 1px solid #404040; font-size: 1.35rem;
}
.v038-mobile-menu li a:hover { background: #404040; color: var(--v038-primary); text-decoration: none; }

/* ===== Main ===== */
.v038-main { flex: 1; padding-top: 52px; padding-bottom: 80px; }

/* ===== Hero carousel ===== */
.v038-hero { position: relative; width: 100%; margin: 0 0 1.2rem; }
.v038-slides { position: relative; width: 100%; height: 170px; overflow: hidden; border-radius: 12px; }
.v038-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .5s ease;
  cursor: pointer;
}
.v038-slide img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.v038-slide-active { opacity: 1; }
.v038-slide-caption {
  position: absolute; left: 1rem; bottom: 1rem; right: 1rem;
  color: #fff; font-size: 1.3rem; font-weight: 600; text-shadow: 0 1px 3px rgba(0,0,0,.7);
}
.v038-dots { display: flex; justify-content: center; gap: .5rem; margin-top: .6rem; }
.v038-dot { width: 8px; height: 8px; border-radius: 50%; background: #777; cursor: pointer; }
.v038-dot-active { background: var(--v038-primary); }

/* ===== Section ===== */
.v038-section { margin: 1.6rem 0; }
.v038-section-title {
  font-size: 1.5rem; font-weight: 700; color: var(--v038-primary);
  margin-bottom: .8rem; padding-left: .8rem; border-left: 4px solid var(--v038-primary);
}
.v038-h1 {
  font-size: 1.8rem; font-weight: 700; color: var(--v038-text);
  text-align: center; margin: 1rem 0; line-height: 2.4rem;
}
.v038-h2 {
  font-size: 1.6rem; font-weight: 700; color: var(--v038-primary);
  margin: 1.4rem 0 .8rem;
}
.v038-h3 { font-size: 1.4rem; font-weight: 600; color: var(--v038-secondary); margin: 1rem 0 .6rem; }
.v038-lead { font-size: 1.35rem; color: var(--v038-text-muted); margin-bottom: 1rem; }
.v038-p { margin-bottom: 1rem; color: var(--v038-text); }

/* ===== Category header ===== */
.v038-cat-head {
  display: flex; align-items: center; gap: .6rem;
  background: linear-gradient(90deg, var(--v038-bg-deep), transparent);
  padding: .6rem .8rem; border-radius: 8px; margin: 1.4rem 0 .8rem;
}
.v038-cat-head .v038-cat-icon { font-size: 1.8rem; color: var(--v038-primary); }
.v038-cat-head h2 { font-size: 1.5rem; color: var(--v038-primary); font-weight: 700; }

/* ===== Game grid (compact small icons) ===== */
.v038-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem;
}
.v038-game-card {
  background: var(--v038-bg-card); border-radius: 10px; overflow: hidden;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease;
  border: 1px solid #4a4a4a;
}
.v038-game-card:active { transform: scale(.95); }
.v038-game-card:hover { box-shadow: 0 4px 12px rgba(255,179,71,.25); border-color: var(--v038-primary); }
.v038-game-img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #222; }
.v038-game-name {
  font-size: 1.1rem; text-align: center; padding: .4rem .2rem .5rem;
  color: var(--v038-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ===== Promo CTA buttons ===== */
.v038-cta-row { display: flex; gap: .6rem; flex-wrap: wrap; margin: 1rem 0; }
.v038-cta {
  flex: 1; min-width: 140px; text-align: center; padding: .8rem 1rem;
  background: linear-gradient(90deg, var(--v038-primary), var(--v038-gold));
  color: #1a1a1a; border-radius: 24px; font-weight: 700; font-size: 1.3rem;
  border: 0; cursor: pointer; display: inline-block;
}
.v038-cta:hover { text-decoration: none; filter: brightness(1.08); }
.v038-cta-outline {
  background: transparent; color: var(--v038-primary); border: 1.5px solid var(--v038-primary);
}

/* ===== Info / feature cards ===== */
.v038-card {
  background: var(--v038-bg-card); border-radius: 10px; padding: 1rem;
  margin-bottom: .8rem; border: 1px solid #454545;
}
.v038-card-title { font-size: 1.3rem; font-weight: 700; color: var(--v038-primary); margin-bottom: .5rem; }
.v038-feature-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; }
.v038-feature {
  background: var(--v038-bg-card); border-radius: 10px; padding: .9rem; text-align: center;
  border: 1px solid #454545;
}
.v038-feature .v038-feature-ico { font-size: 2rem; color: var(--v038-primary); margin-bottom: .4rem; }
.v038-feature h3 { font-size: 1.25rem; color: var(--v038-secondary); margin-bottom: .3rem; }
.v038-feature p { font-size: 1.15rem; color: var(--v038-text-muted); }

/* ===== RTP compact table ===== */
.v038-rtp-table { width: 100%; border-collapse: collapse; font-size: 1.2rem; }
.v038-rtp-table th, .v038-rtp-table td { padding: .6rem .5rem; border-bottom: 1px solid #4a4a4a; text-align: left; }
.v038-rtp-table th { color: var(--v038-primary); font-weight: 700; }
.v038-rtp-table td.v038-rtp-num { color: var(--v038-success); font-weight: 700; text-align: right; }

/* ===== Winners / testimonials ===== */
.v038-winner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .6rem .8rem; background: var(--v038-bg-card); border-radius: 8px;
  margin-bottom: .5rem; border: 1px solid #454545;
}
.v038-winner-name { font-size: 1.2rem; color: var(--v038-text); }
.v038-winner-amount { font-size: 1.3rem; color: var(--v038-gold); font-weight: 700; }
.v038-testimonial { background: var(--v038-bg-card); border-radius: 10px; padding: 1rem; margin-bottom: .7rem; border-left: 3px solid var(--v038-primary); }
.v038-testimonial p { font-size: 1.2rem; color: var(--v038-text); margin-bottom: .4rem; }
.v038-testimonial .v038-testimonial-author { font-size: 1.1rem; color: var(--v038-primary); font-weight: 600; }

/* ===== Payment ===== */
.v038-pay-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.v038-pay-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--v038-bg-card); border: 1px solid #454545; border-radius: 20px;
  padding: .4rem .8rem; font-size: 1.15rem; color: var(--v038-text);
}
.v038-pay-chip i, .v038-pay-chion .material-icons { font-size: 1.4rem; color: var(--v038-primary); }

/* ===== FAQ ===== */
.v038-faq { border-bottom: 1px solid #454545; padding: .8rem 0; }
.v038-faq h3 { color: var(--v038-secondary); font-size: 1.25rem; margin-bottom: .3rem; }
.v038-faq p { font-size: 1.18rem; color: var(--v038-text-muted); }

/* ===== App download CTA ===== */
.v038-app-cta {
  background: linear-gradient(135deg, #3a3320, #2a2a2a);
  border: 1px solid var(--v038-primary); border-radius: 12px; padding: 1.2rem; text-align: center;
}
.v038-app-cta h3 { color: var(--v038-primary); font-size: 1.4rem; margin-bottom: .4rem; }
.v038-app-cta p { font-size: 1.18rem; color: var(--v038-text-muted); margin-bottom: .8rem; }

/* ===== Footer ===== */
.v038-footer {
  background: var(--v038-bg-deep); border-top: 2px solid var(--v038-primary);
  padding: 1.4rem 1.2rem 2rem; margin-top: 1.5rem;
}
.v038-footer-brand { font-size: 1.25rem; color: var(--v038-text-muted); margin-bottom: 1rem; line-height: 2rem; }
.v038-footer-links { display: flex; flex-wrap: wrap; gap: .6rem 1rem; margin-bottom: 1rem; }
.v038-footer-links a { font-size: 1.15rem; color: var(--v038-secondary); }
.v038-footer-promo { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.v038-footer-promo .v038-cta { flex: 1; min-width: 110px; font-size: 1.15rem; padding: .6rem .8rem; }
.v038-footer-copy { font-size: 1.1rem; color: #888; text-align: center; padding-top: .8rem; border-top: 1px solid #404040; }

/* ===== Mobile bottom navigation ===== */
.v038-bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  height: 60px; background: var(--v038-bg-deep);
  border-top: 2px solid var(--v038-primary);
  display: flex; justify-content: space-around; align-items: center;
  box-shadow: 0 -2px 8px rgba(0,0,0,.4);
}
.v038-bottomnav-btn {
  flex: 1; min-width: 60px; min-height: 60px;
  background: none; border: 0; color: var(--v038-text-muted);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .15rem; cursor: pointer; text-decoration: none;
  font-size: 1rem; transition: color .15s ease, transform .15s ease;
}
.v038-bottomnav-btn i, .v038-bottomnav-btn .material-icons { font-size: 22px; }
.v038-bottomnav-btn:hover { color: var(--v038-primary); text-decoration: none; }
.v038-bottomnav-btn:active { transform: scale(.9); }
.v038-bottomnav-active { color: var(--v038-primary); }
.v038-bottomnav-active i, .v038-bottomnav-active .material-icons { color: var(--v038-primary); }
.v038-bottomnav-badge {
  position: absolute; top: 4px; right: 18px;
  background: var(--v038-danger); color: #fff; font-size: .85rem;
  border-radius: 50%; width: 16px; height: 16px; display: flex; align-items: center; justify-content: center;
}

/* ===== Desktop rules ===== */
@media (min-width: 769px) {
  .v038-bottomnav { display: none; }
  .v038-main { padding-bottom: 0; }
  .v038-container { max-width: 720px; }
  .v038-grid { grid-template-columns: repeat(6, 1fr); }
  .v038-slides { height: 280px; }
}
@media (max-width: 768px) {
  .v038-main { padding-bottom: 80px; }
}

/* Utility */
.v038-text-center { text-align: center; }
.v038-mt-1 { margin-top: 1rem; }
.v038-hidden { display: none; }
.v038-textlink { color: var(--v038-primary); font-weight: 600; }
.v038-textlink:hover { text-decoration: underline; }
