/* Mobile-first, Indian rummy / slots directory — navy + gold + orange */
@charset "UTF-8";
:root {
  --bg: #0a0e2a;
  --bg2: #050814;
  --surface: #121a3d;
  --gold: #ffd700;
  --orange: #ff6b00;
  --ink: #e8edff;
  --muted: #9aa4c0;
  --line: #223064;
  --hazard: #c92a2a;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  background: radial-gradient(1200px 600px at 10% 0%, #0f1a38 0%, var(--bg) 50%, #04060f 100%);
  color: var(--ink);
  line-height: 1.55;
  padding-bottom: 72px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0; white-space: nowrap;
}
.rupee-strong { font-weight: 800; color: var(--gold); }
.sub-hi { color: var(--muted); font-size: 0.92em; }

/* Announcement bar */
.announce {
  background: linear-gradient(90deg, #8b1a1a, var(--orange), #c45c0a);
  color: #fff;
  font-size: 0.8rem;
  text-align: center;
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.announce-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  padding: 0.4rem 0.5rem;
}
.announce-cta {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  animation: pulse-cta 1.4s ease-in-out infinite;
  text-shadow: 0 0 8px rgba(255,215,0,0.8);
}
@keyframes pulse-cta {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Header */
.site-header {
  position: sticky; top: 0;
  z-index: 40;
  background: rgba(5,8,20,0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.header-top, .nav-bar { max-width: 1100px; margin: 0 auto; padding-left: 1rem; padding-right: 1rem; }
.header-top { display: flex; align-items: center; justify-content: space-between; padding-top: 0.55rem; padding-bottom: 0.2rem; }
.brand { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; color: var(--ink); font-weight: 800; }
.brand img { border-radius: 10px; border: 1px solid var(--line); }
.brand-name { font-size: 1.1rem; letter-spacing: 0.02em; }
.header-social { display: flex; gap: 0.4rem; }
.soc { display: inline-flex; align-items: center; justify-content: center; min-width: 2rem; min-height: 2rem; border-radius: 8px; text-decoration: none; font-size: 0.78rem; font-weight: 800; color: #fff; }
.soc-tg { background: #2aabee; }
.soc-wa { background: #25d366; }

.nav-bar { padding-bottom: 0.45rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.4rem; }
.nav-toggle { display: none; background: var(--surface); color: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 0.35rem 0.5rem; font-size: 1.1rem; cursor: pointer; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.4rem 0.7rem; }
.site-nav a { text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.9rem; padding: 0.2rem 0.25rem; }
.site-nav a:hover { color: var(--gold); }
.main-content { min-height: 50vh; }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, #0a1f0f 0%, var(--bg) 40%, #000 100%);
  padding: 1.4rem 0 1.8rem;
  border-bottom: 1px solid var(--line);
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.4;
  background-image: radial-gradient(circle, rgba(255,215,0,0.25) 0 1px, transparent 2px);
  background-size: 20px 20px;
  animation: floatbg 20s linear infinite;
}
@keyframes floatbg { to { background-position: 20px 40px; } }
.hero-inner { position: relative; z-index: 1; }
.hero h1 {
  font-weight: 900; font-size: clamp(1.3rem, 4.5vw, 2.1rem);
  margin: 0 0 0.5rem; line-height: 1.2;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.25);
}
.hero-sub { color: #dde3f7; max-width: 40rem; }
.btn {
  display: inline-block; text-decoration: none; border: none; cursor: pointer;
  background: #1e2b55; color: #fff; border-radius: 999px; padding: 0.6rem 1.2rem; font-weight: 800; font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-hero, .btn-glow, .btn-cta {
  background: linear-gradient(100deg, var(--gold) 0%, #f5a623 100%);
  color: #1a0e00; box-shadow: 0 0 20px rgba(255, 215, 0, 0.45);
  margin-top: 0.5rem;
}
.btn-glow { animation: btn-glow 2.4s ease-in-out infinite; }
@keyframes btn-glow {
  0%, 100% { box-shadow: 0 0 12px rgba(255, 215, 0, 0.45); }
  50% { box-shadow: 0 0 26px rgba(255, 107, 0, 0.6); }
}
.trust-badges { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 1rem 0 0; padding: 0; list-style: none; }
.trust-badges li { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 0.3rem 0.5rem; font-size: 0.82rem; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }
.section { padding: 1.5rem 0; }
.section-note { color: var(--muted); }
.intro p { color: #dce2f4; }
.intro p[lang|="hi"] { color: #cfd6ea; }

/* Top pick */
#top-pick { padding-top: 0.2rem; }
.top-pick-card {
  display: grid;
  grid-template-columns: auto 72px 1fr auto;
  align-items: center; gap: 0.6rem 0.7rem;
  background: var(--surface);
  border: 2px solid transparent;
  border-radius: 14px; padding: 0.7rem 0.9rem;
  background-clip: padding-box;
  box-shadow: 0 0 0 1px var(--line), 0 0 24px rgba(255, 215, 0, 0.15);
  animation: border-glow 3s ease-in-out infinite;
}
@keyframes border-glow {
  0%, 100% { box-shadow: 0 0 0 1px var(--line), 0 0 18px rgba(255, 107, 0, 0.2); }
  50% { box-shadow: 0 0 0 1px var(--gold), 0 0 28px rgba(255, 215, 0, 0.35); }
}
.top-pick-rank { grid-column: 1 / -1; font-weight: 800; color: var(--gold); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.06em; }
.top-pick-icon { width: 72px; height: 72px; border-radius: 12px; border: 1px solid var(--line); }
.top-pick-body { min-width: 0; }
.app-h2-noblur { margin: 0; font-size: 1.2rem; font-weight: 900; }
.pick-bonus { font-size: 1.2rem; font-weight: 900; color: var(--gold); margin: 0.2rem 0; }
.pick-min { margin: 0.1rem 0; }
.pick-rate { font-size: 0.9rem; color: #dbe1f7; }
@media (max-width: 700px) {
  .top-pick-card { grid-template-columns: 1fr; text-align: center; }
  .top-pick-rank { grid-column: 1; }
}

/* Filter + grid */
.filter-tabs { display: flex; flex-wrap: nowrap; gap: 0.45rem; overflow-x: auto; padding: 0.4rem 0 0.8rem; -webkit-overflow-scrolling: touch; }
.ftab {
  flex: 0 0 auto; border: 1px solid var(--line);
  background: var(--surface); color: #fff; border-radius: 999px; padding: 0.35rem 0.7rem; font-size: 0.85rem; font-weight: 700; cursor: pointer; white-space: nowrap;
}
.ftab.is-on { background: linear-gradient(100deg, var(--gold), #ff9f1a); color: #1a0e00; border-color: #ffd45c; }
.app-grid { display: flex; flex-direction: column; gap: 0.6rem; }
.app-card-pro {
  display: grid; grid-template-columns: 44px 64px 1fr minmax(110px, 1fr);
  gap: 0.4rem 0.5rem; align-items: start;
  background: #0f1938; border: 1px solid var(--line); border-radius: 12px; padding: 0.6rem 0.65rem;
}
.app-card-pro.is-new { box-shadow: inset 0 0 0 1px rgba(46, 204, 113, 0.35); }
.rank-emoji {
  display: flex; align-items: center; justify-content: center;
  min-height: 2.1rem; font-weight: 900; color: #fff;
  background: #182455; border-radius: 8px; border: 1px solid #2a3a75;
  font-size: 0.85rem;
}
.app-card-icon { width: 64px; height: 64px; border-radius: 10px; border: 1px solid var(--line); }
.app-card-mid { min-width: 0; }
.bonus-hero { font-size: 1.1rem; font-weight: 900; color: var(--gold); margin: 0.15rem 0; }
.min-line { margin: 0.1rem 0; font-size: 0.9rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.25rem; }
.tag { font-size: 0.68rem; font-weight: 800; padding: 0.2rem 0.35rem; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.03em; }
.tag-hot { background: #8b1a1a; color: #fff; }
.tag-new { background: #1e6e3c; color: #e9fff1; }
.tag-top { background: #7a5a00; color: #fff7c2; }
.tag-blue { background: #1a4d8b; color: #d9eaff; }
.app-card-right { text-align: right; }
.rate-compact { font-size: 0.8rem; color: #b8c1df; }
.rnum { font-weight: 800; color: #fff; }
.stars { display: inline-flex; gap: 1px; }
.star-cell { position: relative; width: 0.88em; height: 0.88em; }
.star-bg, .star-fg { position: absolute; left: 0; top: 0; overflow: hidden; font-size: 0.9em; line-height: 1; }
.star-bg { color: #3d475f; }
.star-fg { color: var(--gold); white-space: nowrap; }
.btn-cta { font-size: 0.8rem; padding: 0.5rem 0.65rem; margin-top: 0.3rem; }

@media (max-width: 800px) {
  .app-card-pro { grid-template-columns: 40px 56px 1fr; }
  .app-card-right { grid-column: 1 / -1; text-align: left; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.4rem; }
}

/* How to */
.steps-row { display: grid; grid-template-columns: 1fr; gap: 0.6rem; }
@media (min-width: 800px) { .steps-row { grid-template-columns: repeat(3, 1fr); } }
.step-card { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 0.7rem; }
.step-ico { font-size: 1.3rem; }
.step-card h3 { margin: 0.3rem 0; font-size: 1.02rem; }
.trust-grid .tgrid { display: grid; grid-template-columns: 1fr; gap: 0.5rem; }
@media (min-width: 700px) { .trust-grid .tgrid { grid-template-columns: 1fr 1fr; } }
.tcard { background: #0a1228; border: 1px solid var(--line); border-radius: 10px; padding: 0.7rem; }
.tcard h3 { margin: 0.2rem 0; }

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.bonus-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.bonus-table th, .bonus-table td { border: 1px solid var(--line); padding: 0.45rem 0.4rem; text-align: left; }
.bonus-table thead { background: #131d42; }
.bonus-table a { color: #a8c6ff; }
.table-dl { color: var(--gold); text-decoration: none; font-weight: 800; }
.table-dl:hover { text-decoration: underline; }

.testimonial-row { display: grid; grid-template-columns: 1fr; gap: 0.5rem; }
@media (min-width: 700px) { .testimonial-row { grid-template-columns: repeat(3, 1fr); } }
.testi-card { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 0.6rem; }
.t-name { color: #dbe1f7; font-size: 0.9rem; }
.cta-join { background: linear-gradient(100deg, #ff9f1a, var(--gold)); color: #1a0e00; border-radius: 12px; padding: 1rem; }
.cta-join h2 { color: #1a0e00; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.btn-join { background: #0a0e2a; color: #fff; }
.btn-join.btn-wa { background: #128c4b; }
.faq-list { max-width: 44rem; }
.faq-item { background: #0b1430; border: 1px solid var(--line); border-radius: 8px; padding: 0.2rem 0.5rem; margin-bottom: 0.4rem; }
.faq-answer { color: #b8c1df; padding: 0.35rem 0; }

/* App detail */
.app-detail-card { background: #0b1430; border: 1px solid var(--line); border-radius: 12px; padding: 0.8rem; }
.app-main-grid { display: grid; grid-template-columns: 180px 1fr; gap: 0.7rem; }
.app-main-grid .btn-glow { font-size: 1rem; padding: 0.65rem 1rem; }
.app-main-grid img { max-width: 100%; height: auto; border-radius: 12px; border: 1px solid var(--line); }
.badge { display: inline-block; background: #182455; color: #bdd0ff; border: 1px solid #2a3a75; border-radius: 999px; padding: 0.2rem 0.4rem; margin-right: 0.2rem; font-size: 0.78rem; }
.rating-line { color: #dbe1f7; }
.votes-label { color: #b8c1df; }
.h1-brand-tag { font-size: 0.66em; color: var(--gold); font-weight: 800; white-space: nowrap; }
.mini-stats { list-style: none; margin: 0.4rem 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.3rem; }
.mini-stats li { background: #0a1226; border: 1px solid var(--line); border-radius: 6px; padding: 0.3rem; font-size: 0.82rem; }
.detail-columns { display: grid; grid-template-columns: 1fr; gap: 0.6rem; }
@media (min-width: 800px) { .detail-columns { grid-template-columns: 1fr 1fr; } }
.surface, .shaded { border-radius: 10px; padding: 0.7rem; }
.surface { background: #0a1226; }
.shaded { background: #0a1533; }
.info-block h3 { color: #fff; }
.info-block ul { margin: 0.3rem 0; }
.detail-check-list { margin: 0.25rem 0; padding-left: 1.15rem; color: #dbe1f7; }
.detail-check-list li { margin: 0.3rem 0; }

/* horizontal related */
.related-scroll { display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 0.45rem; list-style: none; margin: 0; padding: 0.2rem 0 0.4rem; -webkit-overflow-scrolling: touch; }
.related-scroll-item { flex: 0 0 200px; }
.related-scroll-link {
  display: flex; align-items: center; gap: 0.4rem; text-decoration: none; color: #fff;
  background: #0a1226; border: 1px solid var(--line); border-radius: 8px; padding: 0.4rem; font-size: 0.85rem; min-height: 3.1rem;
}
.related-scroll img { width: 52px; height: 52px; border-radius: 8px; }

/* Footer + float */
.site-footer { background: #05060f; border-top: 1px solid #1a1f2e; margin-top: 1rem; color: #b8c1df; }
.footer-sections { padding: 1rem; max-width: 1100px; margin: 0 auto; }
.footer-tag { color: #9aa4b8; }
.footer-sections h2 { color: var(--gold); font-size: 1rem; }
.footer-links, .footer-social { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem 0.6rem; padding: 0; margin: 0.4rem 0; }
.footer-links a, .footer-social a { color: #c9d1ea; }
.footer-disclaimer { font-size: 0.8rem; color: #6f7993; }
.copyright { text-align: center; font-size: 0.8rem; padding: 0.4rem; color: #5c657d; }
.float-wa { position: fixed; right: 12px; bottom: 88px; z-index: 60; text-decoration: none; background: #25d366; color: #fff; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.mobile-download-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  background: linear-gradient(90deg, #0a0e2a, #1a0d30);
  border-top: 1px solid var(--line);
  padding: 0.4rem; text-align: center; display: none;
}
.mobile-download-bar .bar-btn { display: block; color: #1a0e00; background: var(--gold); font-weight: 900; text-decoration: none; border-radius: 10px; padding: 0.6rem; }
@media (max-width: 800px) { .mobile-download-bar { display: block; } }
.contact-page .contact-lines { line-height: 1.7; }
.contact-page p { color: #dbe1f7; }

/* Nav mobile */
@media (max-width: 800px) {
  .nav-toggle { display: inline-block; }
  .site-nav { display: none; width: 100%; }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; padding: 0.2rem 0; }
  .app-main-grid { grid-template-columns: 1fr; }
}
