:root {
  --bg-dark: #141414;
  --bg-shell: #1f1f1f;
  --surface: #292929;
  --surface-hover: #333333;
  --surface-border: rgba(255, 255, 255, 0.08);
  --text-main: #f5f5f5;
  --text-muted: #a1a1aa;
  --text-sub: #71717a;
  --gold-primary: #FFD700;
  --gold-secondary: #FDB931;
  --gold-dark: #C69214;
  --gold-glow: rgba(255, 215, 0, 0.18);
  --green-accent: #00E676;
  --red-accent: #FF5252;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
  --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-dark);
  font-family: var(--font-family);
  color: var(--text-main);
  line-height: 1.6;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.85;
}

/* App Shell (Mobile First Architecture) */
.app-shell {
  width: 100%;
  max-width: 480px;
  background-color: var(--bg-shell);
  min-height: 100vh;
  padding-bottom: 90px;
  position: relative;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.85);
  border-left: 1px solid rgba(255, 255, 255, 0.04);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(31, 31, 31, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--surface-border);
}

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-logo img {
  height: 32px;
  width: auto;
}

.hdr-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.age-badge {
  background: rgba(255, 82, 82, 0.15);
  border: 1px solid rgba(255, 82, 82, 0.4);
  color: #ff7b7b;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 6px;
}

/* Buttons */
.btn {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  color: #111111 !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.84rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(255, 215, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  color: #000000 !important;
}

.btn:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-primary) !important;
  border: 1px solid rgba(255, 215, 0, 0.6);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
}

.btn-full {
  width: 100%;
  padding: 13px 20px;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
}

.btn-pulse {
  animation: pulseGlow 2.2s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(255, 215, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* Hero Section */
.hero-container {
  position: relative;
  overflow: hidden;
  background: #181818;
}

.hero-banner {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,0.1) 0%, rgba(31,31,31,0.95) 90%, var(--bg-shell) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}

.hero-tagline {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.hero-title {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 6px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero-sub {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* Main Content Area */
.content-wrapper {
  padding: 0 16px;
}

/* TL;DR Notice Box */
.tldr-box {
  background: var(--gold-glow);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin: 16px 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.tldr-box b {
  color: var(--gold-primary);
}

/* Trust Pill Badges */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.trust-item {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-sm);
  padding: 10px 6px;
  text-align: center;
}

.trust-item .icon {
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.trust-item .title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-main);
}

.trust-item .desc {
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* Payment Highlight Hub (bKash, Nagad, Rocket) */
.payment-highlight-box {
  background: linear-gradient(145deg, #242424, #1c1c1c);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 16px;
  margin: 20px 0;
}

.payment-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.payment-title-row h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-speed-tag {
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.35);
  color: var(--green-accent);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-speed-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--green-accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green-accent);
}

.payment-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.payment-logo-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-sm);
  padding: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.payment-logo-card img {
  width: 100%;
  height: 24px;
  object-fit: contain;
}

.payment-logo-card span {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
}

.payment-meta-list {
  display: flex;
  justify-content: space-around;
  padding-top: 10px;
  border-top: 1px dashed var(--surface-border);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.payment-meta-list b {
  color: var(--gold-primary);
}

/* Section Common Styling */
.section {
  margin: 28px 0;
}

.section-head {
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.section-head p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Featured Platform Review Card */
.review-card {
  background: var(--surface);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
  position: relative;
  box-shadow: var(--shadow-card);
}

.badge-top-pick {
  position: absolute;
  top: -10px;
  right: 14px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.review-top-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.brand-avatar {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: #1c1c1c;
  border: 1px solid rgba(255, 215, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-avatar img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.brand-details h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
}

.stars {
  color: var(--gold-primary);
  letter-spacing: 1px;
}

.rating-score {
  font-weight: 700;
  color: #fff;
}

.verified-pill {
  color: var(--green-accent);
  font-size: 0.7rem;
  font-weight: 600;
}

.bonus-box {
  background: rgba(255, 215, 0, 0.08);
  border: 1px dashed rgba(255, 215, 0, 0.35);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 12px;
  text-align: center;
}

.bonus-highlight {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 2px;
}

.bonus-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.feature-bullets {
  list-style: none;
  margin-bottom: 14px;
}

.feature-bullets li {
  font-size: 0.8rem;
  color: #d1d1d6;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-bullets li::before {
  content: "✔";
  color: var(--green-accent);
  font-weight: 800;
  font-size: 0.75rem;
}

.compliance-microtext {
  font-size: 0.68rem;
  color: var(--text-sub);
  text-align: center;
  margin-top: 8px;
}

/* Games Grid */
.game-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px 0;
}

.game-type-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.game-type-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 215, 0, 0.3);
}

.game-type-card img {
  width: 100%;
  height: 95px;
  object-fit: cover;
  display: block;
}

.game-type-card .card-info {
  padding: 8px 10px;
}

.game-type-card h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.game-type-card p {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Providers Row */
.providers-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--surface-border);
  margin: 14px 0;
}

.provider-badge {
  background: #181818;
  padding: 6px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.provider-badge img {
  height: 20px;
  width: auto;
  max-width: 65px;
  object-fit: contain;
}

/* Step-by-Step Guide */
.steps-container {
  counter-reset: guide-step;
  margin: 14px 0;
}

.step-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.step-item::before {
  counter-increment: guide-step;
  content: counter(guide-step);
  width: 32px;
  height: 32px;
  background: var(--gold-glow);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.step-text h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: #fff;
}

.step-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* FAQ Accordion */
.faq-list {
  margin: 14px 0;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 12px 38px 12px 14px;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: #fff;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-primary);
  transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 14px 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Google Ads Compliant Footer */
.site-footer {
  background: #111111;
  padding: 24px 16px 20px;
  text-align: center;
  border-top: 1px solid var(--surface-border);
  margin-top: 30px;
}

.footer-responsible {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 16px;
}

.responsible-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
}

.responsible-logos span {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2px 6px;
  border-radius: 4px;
}

.footer-responsible p {
  font-size: 0.72rem;
  color: var(--text-sub);
  line-height: 1.45;
}

.footer-disclaimer {
  font-size: 0.7rem;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.4;
  text-align: justify;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-nav a {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-nav a:hover {
  color: var(--gold-primary);
}

.footer-copyright {
  font-size: 0.68rem;
  color: #555;
}

/* Sticky Mobile Bottom Bar */
.bottom-cta-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: rgba(25, 25, 25, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 150;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
}

.bottom-cta-text {
  flex: 1;
}

.bottom-cta-text .b-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.bottom-cta-text .b-sub {
  font-size: 0.68rem;
  color: var(--gold-primary);
  font-weight: 600;
}

.bottom-cta-btn {
  flex-shrink: 0;
  padding: 9px 20px;
  font-size: 0.85rem;
}
