/* oktaka.cfd - layout styles
   All custom class names use the "pg95-" prefix.
   Code comments in English. Mobile-first (max-width 430px baseline). */

:root {
  --pg95-primary: #48D1CC;      /* brand teal */
  --pg95-accent:  #87CEEB;      /* sky blue */
  --pg95-bg:      #1E1E1E;      /* dark background */
  --pg95-bg-2:    #232a33;      /* secondary dark */
  --pg95-text:    #f3f7f9;      /* light text */
  --pg95-muted:   #aab6c2;      /* muted text */
  --pg95-gold:    #f5c451;      /* gold accent */
  --pg95-danger:  #ff6b6b;
  --pg95-radius:  14px;
  --pg95-shadow:  0 6px 18px rgba(0,0,0,0.35);
  --pg95-header-h: 56px;
  --pg95-bottomnav-h: 62px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  padding: 0;
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  background: var(--pg95-bg);
  color: var(--pg95-text);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
}

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

a { color: var(--pg95-accent); text-decoration: none; }
a:hover, a:focus { color: var(--pg95-primary); }

.pg95-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 14px; position: relative; }
.pg95-wrapper { width: 100%; }

/* ===== Header ===== */
.pg95-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, #16202b 0%, #1E1E1E 100%);
  border-bottom: 1px solid rgba(72,209,204,0.25);
  box-shadow: var(--pg95-shadow);
}
.pg95-header-inner {
  max-width: 430px; margin: 0 auto; height: var(--pg95-header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 12px;
}
.pg95-logo { display: flex; align-items: center; gap: 8px; color: var(--pg95-text); font-weight: 700; font-size: 18px; }
.pg95-logo img { width: 28px; height: 28px; border-radius: 6px; }
.pg95-logo .pg95-logo-text { background: linear-gradient(90deg, var(--pg95-primary), var(--pg95-accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.pg95-header-actions { display: flex; align-items: center; gap: 8px; }
.pg95-btn {
  display: inline-flex; align-items: center; gap: 6px;
  border: none; cursor: pointer; font-weight: 700; font-size: 13px;
  padding: 8px 14px; border-radius: 20px; min-height: 36px; line-height: 1;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.pg95-btn-login { background: transparent; color: var(--pg95-text); border: 1px solid rgba(243,247,249,0.35); }
.pg95-btn-login:hover { border-color: var(--pg95-primary); color: var(--pg95-primary); }
.pg95-btn-register { background: linear-gradient(90deg, var(--pg95-primary), var(--pg95-accent)); color: #0f1a22; box-shadow: 0 4px 12px rgba(72,209,204,0.35); }
.pg95-btn-register:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(72,209,204,0.5); }
.pg95-btn:active { transform: scale(0.96); }

.pg95-menu-btn {
  background: transparent; border: 1px solid rgba(243,247,249,0.25); color: var(--pg95-text);
  width: 36px; height: 36px; border-radius: 10px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; font-size: 18px;
}
.pg95-menu-btn.pg95-active { background: rgba(72,209,204,0.18); border-color: var(--pg95-primary); color: var(--pg95-primary); }

/* ===== Mobile slide-down menu ===== */
.pg95-mobile-menu {
  position: fixed; top: var(--pg95-header-h); left: 0; right: 0; z-index: 9999;
  max-height: 0; overflow: hidden; background: #1a232e; transition: max-height .3s ease;
  box-shadow: var(--pg95-shadow); border-bottom: 1px solid rgba(72,209,204,0.2);
}
.pg95-mobile-menu.pg95-menu-open { max-height: 80vh; overflow-y: auto; }
.pg95-mobile-menu-inner { max-width: 430px; margin: 0 auto; padding: 10px 14px 18px; }
.pg95-menu-close { float: right; background: transparent; border: none; color: var(--pg95-muted); font-size: 22px; cursor: pointer; line-height: 1; }
.pg95-mobile-menu ul { list-style: none; margin: 8px 0 0; padding: 0; }
.pg95-mobile-menu li { border-bottom: 1px solid rgba(243,247,249,0.08); }
.pg95-mobile-menu a, .pg95-mobile-menu button {
  display: flex; align-items: center; gap: 10px; width: 100%;
  background: transparent; border: none; color: var(--pg95-text); text-align: left;
  padding: 12px 6px; font-size: 15px; cursor: pointer;
}
.pg95-mobile-menu a:hover, .pg95-mobile-menu button:hover { color: var(--pg95-primary); }
.pg95-mobile-menu .pg95-menu-icon { color: var(--pg95-primary); width: 22px; text-align: center; }

/* ===== Layout helpers ===== */
.pg95-main { padding-top: calc(var(--pg95-header-h) + 10px); padding-bottom: calc(var(--pg95-bottomnav-h) + 24px); }
.pg95-section { padding: 18px 0; }
.pg95-section-title { font-size: 18px; font-weight: 800; margin: 0 0 12px; color: var(--pg95-text); display: flex; align-items: center; gap: 8px; }
.pg95-section-title .pg95-title-bar { width: 4px; height: 18px; border-radius: 3px; background: linear-gradient(180deg, var(--pg95-primary), var(--pg95-accent)); display: inline-block; }
.pg95-section-title small { font-size: 12px; color: var(--pg95-muted); font-weight: 500; }

/* ===== Hero carousel ===== */
.pg95-banner { position: relative; border-radius: var(--pg95-radius); overflow: hidden; box-shadow: var(--pg95-shadow); margin-bottom: 8px; }
.pg95-banner-track { position: relative; height: 180px; }
.pg95-banner-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease;
  background-size: cover; background-position: center;
}
.pg95-banner-slide.pg95-active { opacity: 1; }
.pg95-banner-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.55) 100%); }
.pg95-banner-caption { position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 2; color: #fff; }
.pg95-banner-caption h2 { font-size: 18px; margin: 0 0 4px; font-weight: 800; }
.pg95-banner-caption p { font-size: 12px; margin: 0; color: #eaf6f7; }
.pg95-banner-cta { display: inline-block; margin-top: 8px; padding: 7px 14px; border-radius: 18px; background: linear-gradient(90deg, var(--pg95-primary), var(--pg95-accent)); color: #0f1a22; font-size: 12px; font-weight: 700; cursor: pointer; }
.pg95-banner-dots { position: absolute; left: 0; right: 0; bottom: 8px; z-index: 3; text-align: center; }
.pg95-banner-dot { display: inline-block; width: 7px; height: 7px; margin: 0 3px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; }
.pg95-banner-dot.pg95-active { background: var(--pg95-primary); width: 16px; border-radius: 4px; }

/* ===== Quick action row ===== */
.pg95-quickrow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 14px 0; }
.pg95-quick {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--pg95-bg-2); border: 1px solid rgba(72,209,204,0.18);
  border-radius: 12px; padding: 12px 6px; cursor: pointer; color: var(--pg95-text);
  transition: transform .15s ease, border-color .15s ease;
}
.pg95-quick:hover { transform: translateY(-2px); border-color: var(--pg95-primary); }
.pg95-quick .pg95-quick-icon { font-size: 22px; color: var(--pg95-primary); }
.pg95-quick span { font-size: 11px; color: var(--pg95-muted); }

/* ===== Game grid (compact icon layout) ===== */
.pg95-cat-block { margin: 18px 0; }
.pg95-cat-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.pg95-cat-head h2 { font-size: 16px; font-weight: 800; margin: 0; display: flex; align-items: center; gap: 8px; }
.pg95-cat-head .pg95-cat-icon { color: var(--pg95-primary); font-size: 20px; }
.pg95-cat-head a { font-size: 12px; color: var(--pg95-accent); }
.pg95-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pg95-grid.cols-4 { grid-template-columns: repeat(4, 1fr); gap: 8px; }
.pg95-card {
  background: var(--pg95-bg-2); border: 1px solid rgba(243,247,249,0.06);
  border-radius: 12px; overflow: hidden; cursor: pointer; position: relative;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.pg95-card:hover { transform: translateY(-3px); border-color: var(--pg95-primary); box-shadow: 0 8px 18px rgba(0,0,0,0.35); }
.pg95-card:active { transform: scale(0.97); }
.pg95-card-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: #0f1a22; }
.pg95-card-name { font-size: 11px; line-height: 1.3; padding: 6px 6px 8px; color: var(--pg95-text); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pg95-card-tag { position: absolute; top: 4px; left: 4px; background: rgba(245,196,81,0.92); color: #1a1a1a; font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 8px; }
.pg95-card-tag.hot { background: rgba(255,107,107,0.92); color: #fff; }
.pg95-card-tag.new { background: rgba(72,209,204,0.92); color: #0f1a22; }

/* ===== Promo banner strip ===== */
.pg95-promo-strip {
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(90deg, rgba(72,209,204,0.18), rgba(135,206,235,0.12));
  border: 1px solid rgba(72,209,204,0.35); border-radius: var(--pg95-radius);
  padding: 14px; margin: 16px 0; cursor: pointer;
}
.pg95-promo-strip .pg95-promo-icon { font-size: 26px; color: var(--pg95-gold); }
.pg95-promo-strip .pg95-promo-text { flex: 1; }
.pg95-promo-strip h3 { margin: 0 0 2px; font-size: 15px; color: var(--pg95-text); }
.pg95-promo-strip p { margin: 0; font-size: 12px; color: var(--pg95-muted); }
.pg95-promo-strip .pg95-promo-go { background: var(--pg95-gold); color: #1a1a1a; font-weight: 700; font-size: 12px; padding: 8px 14px; border-radius: 16px; border: none; cursor: pointer; }

/* ===== Info / feature blocks ===== */
.pg95-features { display: grid; grid-template-columns: 1fr; gap: 12px; }
.pg95-feature {
  display: flex; gap: 12px; background: var(--pg95-bg-2);
  border: 1px solid rgba(243,247,249,0.06); border-radius: 12px; padding: 14px;
}
.pg95-feature .pg95-feature-icon { font-size: 26px; color: var(--pg95-primary); flex: 0 0 auto; }
.pg95-feature h3 { margin: 0 0 4px; font-size: 15px; color: var(--pg95-text); }
.pg95-feature p { margin: 0; font-size: 13px; color: var(--pg95-muted); }

/* ===== RTP / data compact block ===== */
.pg95-rtp { background: var(--pg95-bg-2); border-radius: 12px; padding: 14px; margin: 12px 0; }
.pg95-rtp h3 { margin: 0 0 10px; font-size: 15px; }
.pg95-rtp-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dashed rgba(243,247,249,0.08); font-size: 13px; }
.pg95-rtp-row:last-child { border-bottom: none; }
.pg95-rtp-row span:last-child { color: var(--pg95-gold); font-weight: 700; }

/* ===== Testimonials ===== */
.pg95-testimonials { display: grid; gap: 10px; }
.pg95-testimonial { background: var(--pg95-bg-2); border-radius: 12px; padding: 12px; border-left: 3px solid var(--pg95-primary); }
.pg95-testimonial .pg95-testi-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.pg95-testi-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--pg95-primary), var(--pg95-accent)); color: #0f1a22; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.pg95-testi-name { font-size: 13px; font-weight: 700; }
.pg95-testi-stars { color: var(--pg95-gold); font-size: 12px; margin-left: auto; }
.pg95-testi-text { font-size: 13px; color: var(--pg95-muted); margin: 0; }

/* ===== Payment methods ===== */
.pg95-payments { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.pg95-payment { background: var(--pg95-bg-2); border-radius: 10px; padding: 10px 4px; text-align: center; border: 1px solid rgba(243,247,249,0.06); }
.pg95-payment .pg95-pay-icon { font-size: 22px; color: var(--pg95-primary); }
.pg95-payment span { display: block; font-size: 10px; color: var(--pg95-muted); margin-top: 4px; }

/* ===== Winners showcase ===== */
.pg95-winners { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.pg95-winner { background: var(--pg95-bg-2); border-radius: 10px; padding: 10px; display: flex; align-items: center; gap: 8px; }
.pg95-winner .pg95-win-icon { color: var(--pg95-gold); font-size: 18px; }
.pg95-winner .pg95-win-name { font-size: 12px; font-weight: 700; }
.pg95-winner .pg95-win-amount { font-size: 12px; color: var(--pg95-primary); font-weight: 700; }
.pg95-winner small { font-size: 10px; color: var(--pg95-muted); display: block; }

/* ===== App download CTA ===== */
.pg95-appcta {
  background: linear-gradient(135deg, rgba(72,209,204,0.2), rgba(135,206,235,0.1));
  border: 1px solid rgba(72,209,204,0.4); border-radius: var(--pg95-radius);
  padding: 18px; text-align: center; margin: 16px 0;
}
.pg95-appcta h3 { margin: 0 0 6px; font-size: 16px; }
.pg95-appcta p { margin: 0 0 12px; font-size: 13px; color: var(--pg95-muted); }
.pg95-appcta-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.pg95-appcta-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 22px; background: var(--pg95-primary); color: #0f1a22; font-weight: 700; font-size: 13px; border: none; cursor: pointer; }
.pg95-appcta-btn.alt { background: transparent; color: var(--pg95-text); border: 1px solid rgba(243,247,249,0.35); }

/* ===== FAQ accordion ===== */
.pg95-faq-item { background: var(--pg95-bg-2); border-radius: 10px; margin-bottom: 8px; overflow: hidden; border: 1px solid rgba(243,247,249,0.06); }
.pg95-faq-q { width: 100%; background: transparent; border: none; color: var(--pg95-text); text-align: left; padding: 12px 14px; font-size: 14px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.pg95-faq-q::after { content: "+"; color: var(--pg95-primary); font-size: 18px; font-weight: 700; }
.pg95-faq-q.pg95-faq-open::after { content: "-"; }
.pg95-faq-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 14px; color: var(--pg95-muted); font-size: 13px; }
.pg95-faq-panel.pg95-faq-panel-open { max-height: 240px; padding-bottom: 14px; }

/* ===== About / SEO text blocks ===== */
.pg95-about { background: var(--pg95-bg-2); border-radius: 12px; padding: 16px; margin: 12px 0; }
.pg95-about h2 { margin: 0 0 8px; font-size: 16px; }
.pg95-about h3 { margin: 14px 0 6px; font-size: 14px; color: var(--pg95-primary); }
.pg95-about p { margin: 0 0 10px; font-size: 13px; color: var(--pg95-muted); }
.pg95-about strong { color: var(--pg95-text); }
.pg95-about ul { margin: 0 0 10px; padding-left: 18px; color: var(--pg95-muted); font-size: 13px; }
.pg95-about li { margin-bottom: 4px; }

/* ===== Footer ===== */
.pg95-footer { background: #16202b; border-top: 1px solid rgba(72,209,204,0.2); padding: 20px 0 10px; margin-top: 18px; }
.pg95-footer-brand { font-size: 13px; color: var(--pg95-muted); margin: 0 0 12px; }
.pg95-footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 14px; margin-bottom: 14px; }
.pg95-footer-links a { font-size: 12px; color: var(--pg95-muted); }
.pg95-footer-links a:hover { color: var(--pg95-primary); }
.pg95-footer-promos { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.pg95-footer-promo-btn { padding: 8px 14px; border-radius: 18px; background: linear-gradient(90deg, var(--pg95-primary), var(--pg95-accent)); color: #0f1a22; font-size: 12px; font-weight: 700; border: none; cursor: pointer; }
.pg95-footer-promo-btn.alt { background: transparent; color: var(--pg95-text); border: 1px solid rgba(243,247,249,0.35); }
.pg95-copyright { font-size: 11px; color: var(--pg95-muted); text-align: center; padding-top: 10px; border-top: 1px solid rgba(243,247,249,0.06); }

/* ===== Mobile bottom navigation ===== */
.pg95-bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  height: var(--pg95-bottomnav-h);
  background: linear-gradient(180deg, #1a232e 0%, #11181f 100%);
  border-top: 1px solid rgba(72,209,204,0.3);
  display: flex; justify-content: space-around; align-items: stretch;
  box-shadow: 0 -4px 14px rgba(0,0,0,0.4);
}
.pg95-bottomnav-btn {
  flex: 1 1 0; min-width: 60px; min-height: 60px;
  background: transparent; border: none; color: var(--pg95-muted);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  cursor: pointer; padding: 6px 2px; transition: color .15s ease, transform .15s ease;
  font-family: inherit;
}
.pg95-bottomnav-btn .pg95-nav-icon { font-size: 22px; line-height: 1; }
.pg95-bottomnav-btn .pg95-nav-label { font-size: 10px; line-height: 1; }
.pg95-bottomnav-btn:hover { color: var(--pg95-accent); }
.pg95-bottomnav-btn:active { transform: scale(0.92); }
.pg95-bottomnav-btn.pg95-nav-current { color: var(--pg95-primary); }
.pg95-bottomnav-btn.pg95-nav-current .pg95-nav-icon { transform: translateY(-2px); }
.pg95-bottomnav-btn.pg95-nav-promo .pg95-nav-icon { color: var(--pg95-gold); }
.pg95-bottomnav-btn.pg95-nav-promo.pg95-nav-current { color: var(--pg95-gold); }

/* ===== Back to top ===== */
.pg95-backtop {
  position: fixed; right: 14px; bottom: calc(var(--pg95-bottomnav-h) + 14px); z-index: 999;
  width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--pg95-primary), var(--pg95-accent));
  color: #0f1a22; font-size: 18px; box-shadow: var(--pg95-shadow);
  display: flex; align-items: center; justify-content: center;
}

/* ===== Desktop: hide bottom nav, widen container ===== */
@media (min-width: 769px) {
  .pg95-bottomnav { display: none; }
  .pg95-container { max-width: 960px; }
  .pg95-header-inner { max-width: 960px; }
  .pg95-mobile-menu-inner { max-width: 960px; }
  .pg95-main { padding-bottom: 30px; }
  .pg95-grid { grid-template-columns: repeat(6, 1fr); }
  .pg95-grid.cols-4 { grid-template-columns: repeat(8, 1fr); }
  .pg95-features { grid-template-columns: repeat(2, 1fr); }
  .pg95-quickrow { grid-template-columns: repeat(4, 1fr); max-width: 720px; margin-left: auto; margin-right: auto; }
  .pg95-banner-track { height: 260px; }
  .pg95-testimonials { grid-template-columns: repeat(2, 1fr); }
  .pg95-winners { grid-template-columns: repeat(4, 1fr); }
  .pg95-payments { grid-template-columns: repeat(6, 1fr); }
  .pg95-footer-links { grid-template-columns: repeat(4, 1fr); }
}

/* ===== Small phone tuning ===== */
@media (max-width: 360px) {
  .pg95-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .pg95-card-name { font-size: 10px; }
  .pg95-banner-track { height: 160px; }
  .pg95-logo { font-size: 16px; }
  .pg95-btn { padding: 7px 10px; font-size: 12px; }
}
