/* ============================================================
 * okebet 168 - style-8694.css
 * All custom classes use the pg86- prefix.
 * Mobile-first: max-width 430px viewport optimized.
 * Comments in English only.
 * ============================================================ */

:root {
  --pg86-primary: #006400;     /* brand dark green */
  --pg86-primary-2: #0a7d0a;
  --pg86-accent: #ffd24a;      /* warm gold accent */
  --pg86-bg: #3A3A3A;          /* dark grey background */
  --pg86-bg-2: #2a2a2a;
  --pg86-bg-3: #1f1f1f;
  --pg86-text: #f5f5f5;
  --pg86-text-dim: #c8c8c8;
  --pg86-card: #454545;
  --pg86-border: #5a5a5a;
  --pg86-success: #2ecc71;
  --pg86-danger: #e74c3c;
  --pg86-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  --pg86-radius: 14px;
  --pg86-radius-sm: 10px;
}

/* Root font: 62.5% -> 1rem = 10px for easy rem math */
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }

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

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, system-ui, sans-serif;
  background: var(--pg86-bg);
  color: var(--pg86-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  overflow-x: hidden;
}

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

a { color: var(--pg86-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { color: #ffffff; line-height: 1.2; }

/* ---------- Layout helpers ---------- */
.pg86-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.4rem;
}
.pg86-wrapper { width: 100%; }
.pg86-grid {
  display: grid;
  gap: 1rem;
}
.pg86-section {
  padding: 2.2rem 0 1.6rem;
}
.pg86-section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--pg86-accent);
}
.pg86-section-sub {
  color: var(--pg86-text-dim);
  font-size: 1.35rem;
  margin-bottom: 1.2rem;
}

/* ---------- Header ---------- */
.pg86-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #004d00, var(--pg86-primary));
  border-bottom: 2px solid var(--pg86-accent);
  box-shadow: var(--pg86-shadow);
}
.pg86-header-inner {
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  min-height: 52px;
}
.pg86-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-weight: 800;
  font-size: 1.6rem;
}
.pg86-brand img { width: 28px; height: 28px; border-radius: 6px; }
.pg86-brand small {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--pg86-accent);
}

.pg86-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ---------- Buttons ---------- */
.pg86-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 38px;
  padding: 0 1.1rem;
  border: none;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
  color: #fff;
}
.pg86-btn:hover { transform: translateY(-1px); text-decoration: none; }
.pg86-btn:active { transform: scale(0.97); }

.pg86-btn-register {
  background: linear-gradient(180deg, #ffd24a, #f0a500);
  color: #2a1a00;
  box-shadow: 0 3px 10px rgba(240, 165, 0, 0.45);
}
.pg86-btn-login {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 0 0.9rem;
}
.pg86-btn-cta {
  background: linear-gradient(180deg, var(--pg86-primary-2), #004d00);
  box-shadow: 0 4px 14px rgba(0, 100, 0, 0.55);
  padding: 0.9rem 1.6rem;
  font-size: 1.5rem;
  width: 100%;
}
.pg86-btn-cta i, .pg86-btn-cta span { margin-right: 0.4rem; }

.pg86-menu-toggle {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 0 0.4rem;
  min-width: 40px;
  min-height: 40px;
}

/* ---------- Mobile slide-down menu ---------- */
.pg86-mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--pg86-bg-3);
  border-top: 1px solid var(--pg86-border);
}
.pg86-mobile-menu.pg86-menu-open {
  max-height: 480px;
  box-shadow: var(--pg86-shadow);
}
.pg86-mobile-menu-inner {
  max-width: 430px;
  margin: 0 auto;
  padding: 0.6rem 1rem 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.pg86-mobile-menu a {
  display: block;
  padding: 0.8rem 0.9rem;
  border-radius: var(--pg86-radius-sm);
  background: var(--pg86-card);
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
}
.pg86-mobile-menu a:hover { background: var(--pg86-primary); text-decoration: none; }

/* ---------- Main / spacing for fixed header + bottom nav ---------- */
.pg86-main {
  padding-top: 64px;   /* header clearance */
  padding-bottom: 24px;
}
@media (max-width: 768px) {
  .pg86-main { padding-bottom: 90px; } /* bottom nav clearance */
}

/* ---------- Hero carousel ---------- */
.pg86-hero {
  position: relative;
  border-radius: var(--pg86-radius);
  overflow: hidden;
  margin: 1.2rem 0;
  box-shadow: var(--pg86-shadow);
}
.pg86-slide {
  display: none;
  position: relative;
  cursor: pointer;
}
.pg86-slide.pg86-slide-active { display: block; }
.pg86-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.pg86-slide-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  color: #fff;
}
.pg86-slide-caption h2 { font-size: 1.7rem; color: var(--pg86-accent); }
.pg86-slide-caption p { font-size: 1.25rem; color: var(--pg86-text-dim); }
.pg86-dots {
  position: absolute;
  bottom: 8px;
  right: 12px;
  display: flex;
  gap: 6px;
}
.pg86-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.pg86-dot.pg86-dot-active { background: var(--pg86-accent); }

/* ---------- H1 hero title ---------- */
.pg86-h1 {
  font-size: 2.2rem;
  margin: 0.4rem 0 0.6rem;
  color: #fff;
}
.pg86-lead {
  color: var(--pg86-text-dim);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

/* ---------- Game grids ---------- */
.pg86-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.6rem 0 0.8rem;
}
.pg86-cat-title {
  font-size: 1.7rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pg86-cat-title i { color: var(--pg86-accent); }
.pg86-cat-more {
  font-size: 1.2rem;
  color: var(--pg86-accent);
}

.pg86-games {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.pg86-game {
  background: var(--pg86-card);
  border-radius: var(--pg86-radius-sm);
  padding: 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
  display: block;
}
.pg86-game:hover {
  transform: translateY(-2px);
  background: var(--pg86-primary);
  text-decoration: none;
}
.pg86-game img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.4rem;
}
.pg86-game-name {
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.25;
  min-height: 2.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- Cards ---------- */
.pg86-card {
  background: var(--pg86-card);
  border-radius: var(--pg86-radius);
  padding: 1.4rem;
  box-shadow: var(--pg86-shadow);
  margin-bottom: 1rem;
}
.pg86-card h3 { font-size: 1.6rem; margin-bottom: 0.6rem; color: var(--pg86-accent); }
.pg86-card p { color: var(--pg86-text-dim); font-size: 1.3rem; }
.pg86-card ul { padding-left: 1.4rem; color: var(--pg86-text-dim); }
.pg86-card li { margin-bottom: 0.4rem; font-size: 1.3rem; }

/* ---------- Steps ---------- */
.pg86-steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
}
.pg86-steps li {
  position: relative;
  padding: 0.6rem 0 0.6rem 3.4rem;
  border-bottom: 1px dashed var(--pg86-border);
  color: var(--pg86-text-dim);
  counter-increment: step;
  font-size: 1.3rem;
}
.pg86-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0.5rem;
  width: 2.6rem; height: 2.6rem;
  background: var(--pg86-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
}

/* ---------- Feature grid ---------- */
.pg86-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.pg86-feature {
  background: var(--pg86-bg-2);
  border-radius: var(--pg86-radius-sm);
  padding: 1rem;
  text-align: center;
}
.pg86-feature i { font-size: 2.4rem; color: var(--pg86-accent); margin-bottom: 0.4rem; display: block; }
.pg86-feature h4 { font-size: 1.3rem; color: #fff; margin-bottom: 0.2rem; }
.pg86-feature p { font-size: 1.15rem; color: var(--pg86-text-dim); }

/* ---------- RTP table ---------- */
.pg86-rtp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.25rem;
  background: var(--pg86-bg-2);
  border-radius: var(--pg86-radius-sm);
  overflow: hidden;
}
.pg86-rtp-table th, .pg86-rtp-table td {
  padding: 0.7rem 0.8rem;
  text-align: left;
  border-bottom: 1px solid var(--pg86-border);
}
.pg86-rtp-table th { background: var(--pg86-primary); color: #fff; }
.pg86-rtp-table td { color: var(--pg86-text-dim); }
.pg86-rtp-bar {
  display: inline-block;
  height: 8px;
  background: var(--pg86-accent);
  border-radius: 4px;
  vertical-align: middle;
}

/* ---------- Testimonials ---------- */
.pg86-testimonials { display: grid; gap: 0.8rem; }
.pg86-testimonial {
  background: var(--pg86-bg-2);
  border-left: 3px solid var(--pg86-accent);
  padding: 0.9rem 1rem;
  border-radius: var(--pg86-radius-sm);
}
.pg86-testimonial p { color: var(--pg86-text-dim); font-size: 1.25rem; font-style: italic; }
.pg86-testimonial strong { color: var(--pg86-accent); }

/* ---------- Payment methods ---------- */
.pg86-payments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  text-align: center;
}
.pg86-payment {
  background: var(--pg86-bg-2);
  border-radius: var(--pg86-radius-sm);
  padding: 0.9rem 0.5rem;
}
.pg86-payment i { font-size: 2.2rem; color: var(--pg86-accent); }
.pg86-payment span { display: block; margin-top: 0.3rem; font-size: 1.1rem; color: #fff; }

/* ---------- Winners ticker ---------- */
.pg86-winners {
  background: var(--pg86-bg-2);
  border-radius: var(--pg86-radius);
  padding: 0.8rem 1rem;
}
.pg86-winner-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--pg86-border);
  font-size: 1.25rem;
}
.pg86-winner-row:last-child { border-bottom: none; }
.pg86-winner-name { color: #fff; }
.pg86-winner-amount { color: var(--pg86-success); font-weight: 700; }

/* ---------- Footer ---------- */
.pg86-footer {
  background: var(--pg86-bg-3);
  border-top: 2px solid var(--pg86-primary);
  padding: 2rem 0 1.5rem;
  margin-top: 2rem;
  color: var(--pg86-text-dim);
  font-size: 1.25rem;
}
.pg86-footer h4 { color: var(--pg86-accent); font-size: 1.4rem; margin-bottom: 0.6rem; }
.pg86-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin: 0.8rem 0;
}
.pg86-footer-links a { color: var(--pg86-text-dim); font-size: 1.2rem; }
.pg86-footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0;
}
.pg86-footer-cta .pg86-btn { flex: 1 1 auto; min-width: 120px; }
.pg86-footer-copy {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #888;
}

/* ---------- Bottom navigation ---------- */
.pg86-bottomnav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  height: 62px;
  background: linear-gradient(180deg, #004d00, var(--pg86-primary));
  border-top: 2px solid var(--pg86-accent);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  box-shadow: 0 -3px 14px rgba(0,0,0,0.4);
}
.pg86-bottomnav-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  font-size: 1rem;
  cursor: pointer;
  gap: 2px;
  transition: background 0.15s ease, transform 0.15s ease;
  text-decoration: none;
  padding: 4px 2px;
}
.pg86-bottomnav-btn i,
.pg86-bottomnav-btn .material-icons,
.pg86-bottomnav-btn ion-icon {
  font-size: 22px;
  color: #fff;
}
.pg86-bottomnav-btn .material-icons { font-size: 24px; }
.pg86-bottomnav-btn ion-icon { font-size: 24px; }
.pg86-bottomnav-btn span { font-size: 1rem; color: #fff; }
.pg86-bottomnav-btn:hover { background: rgba(255, 210, 74, 0.15); text-decoration: none; }
.pg86-bottomnav-btn:active { transform: scale(0.95); }
.pg86-bottomnav-btn.pg86-bottomnav-active {
  background: rgba(255, 210, 74, 0.18);
}
.pg86-bottomnav-btn.pg86-bottomnav-active i,
.pg86-bottomnav-btn.pg86-bottomnav-active span { color: var(--pg86-accent); }
.pg86-bottomnav-badge {
  position: absolute;
  top: 6px; right: 50%;
  transform: translateX(20px);
  background: var(--pg86-danger);
  color: #fff;
  font-size: 0.9rem;
  min-width: 16px; height: 16px;
  border-radius: 8px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pg86-bottomnav-btn { position: relative; }

/* Hide bottom nav on desktop */
@media (min-width: 769px) {
  .pg86-bottomnav { display: none; }
  .pg86-main { padding-bottom: 24px; }
}

/* ---------- Reveal animation ---------- */
.pg86-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.pg86-reveal.pg86-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Mobile-only media query (430px cap) ---------- */
@media (max-width: 430px) {
  .pg86-games { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .pg86-game-name { font-size: 1rem; }
  .pg86-h1 { font-size: 1.9rem; }
  .pg86-section-title { font-size: 1.8rem; }
  .pg86-payments { grid-template-columns: repeat(3, 1fr); }
  .pg86-slide img { height: 170px; }
  .pg86-container { padding: 0 1rem; }
  .pg86-btn { font-size: 1.2rem; padding: 0 0.9rem; }
  .pg86-brand { font-size: 1.4rem; }
}

@media (max-width: 360px) {
  .pg86-games { grid-template-columns: repeat(2, 1fr); }
  .pg86-features { grid-template-columns: 1fr; }
}
