/* ===== RESET & VARS ===== */
:root {
  --gold: #F5A623;
  --gold-dim: rgba(245,166,35,0.15);
  --gold-border: rgba(245,166,35,0.25);
  --saffron: #FF6B00;
  --green: #22C55E;
  --red: #EF4444;
  --bg: #09090E;
  --bg2: #0F0F16;
  --bg3: #14141C;
  --card: #1C1C26;
  --card2: #222230;
  --border: rgba(255,255,255,0.07);
  --text: #E2E0DA;
  --muted: #7A7888;
  --muted2: #A09EAA;
  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: #fff; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; }

/* ===== NAVBAR ===== */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(9,9,14,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 0;
}
.nav-brand {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold) !important;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.nav-brand span { color: #fff; }
.nav-brand em {
  font-style: normal;
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--muted);
  margin-left: 6px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0; padding: 0;
  margin-left: auto;
}
.nav-links a {
  color: var(--muted2);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: var(--gold-dim);
}
.btn-lang {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  color: var(--gold) !important;
  background: transparent;
  transition: all 0.2s;
}
.btn-lang:hover { background: var(--gold); color: #000 !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
  color: #000 !important;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(245,166,35,0.25);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,166,35,0.4);
  color: #000 !important;
}
.btn-cta-sm {
  padding: 0.55rem 1.3rem;
  font-size: 0.9rem;
}
.btn-cta-full { display: block; text-align: center; width: 100%; }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold) !important;
  border: 1px solid var(--gold-border);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--gold-dim); color: var(--gold) !important; }

/* ===== SECTIONS ===== */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--bg2); }
.section-dark { background: var(--bg3); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 0.25rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 0.85rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.35rem;
}
.section-title .accent { color: var(--gold); }
.section-line {
  width: 44px; height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 2px;
  margin: 0.75rem 0 2rem;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--muted2);
  max-width: 620px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4.5rem;
  min-height: 90vh;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% -5%, rgba(245,166,35,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 85% 60%, rgba(255,107,0,0.06) 0%, transparent 55%);
}
.hero-dots {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(245,166,35,0.18) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  opacity: 0.4;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  line-height: 1.05;
}
.hero h1 .accent { color: var(--gold); }
.hero-desc {
  font-size: 1.1rem;
  color: var(--muted2);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin-bottom: 2.5rem; }
.hero-note { font-size: 0.82rem; color: var(--muted); }
.hero-note strong { color: var(--gold); }

/* Trust bar */
.trust-bar {
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  margin-top: 2.5rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--muted2);
}
.trust-dot {
  width: 7px; height: 7px;
  background: var(--green); border-radius: 50%; flex-shrink: 0;
}

/* Score card */
.score-card {
  background: var(--card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  max-width: 300px; margin: 0 auto;
}
.score-num {
  font-family: var(--font-head);
  font-size: 4rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.score-sub { font-size: 0.78rem; color: var(--muted); margin-top: 0.2rem; }
.score-stars { color: var(--gold); font-size: 1.1rem; margin: 0.6rem 0; letter-spacing: 2px; }
.score-rows { border-top: 1px solid var(--border); margin-top: 1rem; }
.score-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.55rem 0;
  font-size: 0.83rem;
  border-bottom: 1px solid var(--border);
}
.score-row:last-child { border-bottom: none; }
.score-val { font-weight: 600; color: var(--gold); }
.score-val.green { color: var(--green); }

/* ===== CARDS ===== */
.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
  transition: border-color 0.2s, transform 0.2s;
}
.feat-card:hover { border-color: var(--gold-border); transform: translateY(-3px); }
.feat-icon { font-size: 1.8rem; margin-bottom: 0.85rem; }
.feat-title {
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 700;
  color: var(--gold); margin-bottom: 0.4rem;
}
.feat-desc { font-size: 0.875rem; color: var(--muted2); line-height: 1.6; }

/* ===== PROSE ===== */
.prose h2 { font-size: 1.7rem; margin: 2rem 0 0.75rem; color: var(--text); }
.prose h3 { font-size: 1.3rem; margin: 1.5rem 0 0.6rem; color: var(--gold); }
.prose p { color: var(--muted2); font-size: 0.975rem; line-height: 1.8; margin-bottom: 1.1rem; }
.prose ul, .prose ol { color: var(--muted2); font-size: 0.975rem; margin-bottom: 1.1rem; }
.prose li { margin-bottom: 0.5rem; line-height: 1.7; }
.prose strong { color: var(--text); }
.prose .highlight {
  background: var(--gold-dim);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: var(--text);
}

/* ===== VERDICT TABLE ===== */
.verdict-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.verdict-table th {
  text-align: left; font-family: var(--font-head); font-size: 0.85rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
  padding: 0.6rem 1rem; background: var(--bg3);
  border-bottom: 1px solid var(--border);
}
.verdict-table td {
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted2);
}
.verdict-table tr:last-child td { border-bottom: none; }
.verdict-table .vd-label { color: var(--text); font-weight: 500; }
.verdict-table .vd-val { color: var(--gold); font-weight: 600; }
.verdict-table .vd-good { color: var(--green); }
.verdict-table .vd-bad { color: var(--red); }

/* ===== RAKEBACK BOX ===== */
.rake-box {
  background: var(--card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.rake-code {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px dashed var(--gold);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.3rem 1.4rem;
  border-radius: 8px;
}
.check-list { list-style: none; padding: 0; margin: 1.25rem 0; }
.check-list li {
  display: flex; gap: 0.6rem; align-items: flex-start;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem; color: var(--muted2); line-height: 1.55;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.cross-list li::before { content: '✗'; color: var(--red); }

/* ===== STEPS ===== */
.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li {
  counter-increment: step;
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.925rem; color: var(--muted2); line-height: 1.6;
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(step);
  background: var(--gold-dim);
  color: var(--gold);
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.6rem;
  overflow: hidden;
}
.faq-q {
  width: 100%; background: var(--card); border: none;
  color: var(--text); text-align: left;
  padding: 1rem 1.25rem;
  font-size: 0.95rem; font-weight: 500; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-arrow { color: var(--gold); font-size: 0.75rem; transition: transform 0.25s; flex-shrink: 0; }
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-body {
  max-height: 0; overflow: hidden;
  background: var(--card);
  transition: max-height 0.3s ease;
}
.faq-body-inner {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.88rem; color: var(--muted2); line-height: 1.75;
}

/* ===== CRYPTO PILLS ===== */
.crypto-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cpill {
  background: var(--card); border: 1px solid var(--border);
  color: var(--text); font-size: 0.82rem; font-weight: 500;
  padding: 0.4rem 1rem; border-radius: 20px;
}

/* ===== CALLOUT ===== */
.callout {
  background: rgba(245,166,35,0.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  font-size: 0.9rem; color: var(--muted2);
}
.callout strong { color: var(--text); }
.callout-warn {
  background: rgba(239,68,68,0.07);
  border-left-color: var(--red);
}

/* ===== BOTTOM CTA ===== */
.bottom-cta-block {
  background: linear-gradient(135deg, rgba(255,107,0,0.08) 0%, rgba(245,166,35,0.1) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  margin: 3rem 0;
}
.bottom-cta-block h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 0.75rem; }
.bottom-cta-block p { color: var(--muted2); margin-bottom: 1.75rem; font-size: 1rem; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand {
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 700;
  color: var(--gold); margin-bottom: 0.75rem;
}
.footer-brand span { color: #fff; }
.footer-disc { font-size: 0.78rem; color: var(--muted); line-height: 1.65; margin-bottom: 0.5rem; }
.footer-links-title { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.75rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { font-size: 0.85rem; color: var(--muted2); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.78rem; color: var(--muted); border-top: 1px solid var(--border); padding-top: 1.25rem; }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  padding: 0.6rem 0;
  font-size: 0.8rem; color: var(--muted);
}
.breadcrumb-bar a { color: var(--muted2); }
.breadcrumb-bar a:hover { color: var(--gold); }
.breadcrumb-bar span { margin: 0 0.4rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero { min-height: auto; padding: 3.5rem 0; }
  .score-card { max-width: 100%; }
}
@media (max-width: 767px) {
  .section { padding: 3rem 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(9,9,14,0.97);
    flex-direction: column; align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.6rem 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-links li:last-child a { border-bottom: none; }
  .site-nav { position: relative; }
  .nav-inner { flex-wrap: wrap; position: relative; }
  .score-card { display: none; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .hero h1 { font-size: 2.5rem; }
}

/* ===== BENGALI FONT ===== */
.lang-bn body,
body.lang-bn {
  font-family: 'Noto Sans Bengali', 'Hind', var(--font-body);
}

/* ===== LANG SWITCHER (multi) ===== */
.lang-switcher {
  display: flex !important;
  gap: 0.4rem;
  align-items: center;
  flex-wrap: wrap;
}
.lang-switcher .btn-lang {
  margin: 0;
}

/* ===== GRID FIX — prevent overflow in 1fr columns ===== */
.row > * { min-width: 0; }

/* ===== DROPDOWN MEGA MENU ===== */
.nav-dropdown { position: relative; }
.nav-dropdown > a {
  display: flex; align-items: center; gap: .3rem;
}
.nav-dropdown > a::after {
  content: '▾'; font-size: .65rem; color: var(--gold);
  transition: transform .2s;
}
.nav-dropdown:hover > a::after { transform: rotate(180deg); }

.dropdown-menu-custom {
  display: none;
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: rgba(9,9,14,0.98);
  backdrop-filter: blur(16px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  width: 680px;
  z-index: 500;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.nav-dropdown:hover .dropdown-menu-custom { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }

.dd-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .65rem .75rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background .15s;
  border: 1px solid transparent;
}
.dd-item:hover { background: var(--card); border-color: var(--gold-border); }
.dd-item-icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.3rem;
}
.dd-item-text { min-width: 0; }
.dd-item-title { font-size: .85rem; font-weight: 600; color: var(--text); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dd-item-desc  { font-size: .75rem; color: var(--muted); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dd-item:hover .dd-item-title { color: var(--gold); }

/* Mobile dropdown */
@media (max-width: 767px) {
  .dropdown-menu-custom {
    position: static; transform: none;
    width: 100%; display: none;
    grid-template-columns: 1fr; border-radius: var(--radius);
    margin-top: .25rem; padding: .75rem;
  }
  .nav-dropdown.open .dropdown-menu-custom { display: grid; }
  .nav-dropdown > a::after { margin-left: auto; }
}
