/* RICH DESIGN SYSTEM */
:root {
  --bg-main: #121316;
  --bg-card: #1a1c22;
  --primary: #f08519;
  --primary-hover: #ff9c33;
  --accent: #f5c518;
  --text-main: #ffffff;
  --text-muted: #a0a5b1;
  --border: rgba(255, 255, 255, 0.08);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.55;
  overflow-x: hidden;
  padding-bottom: 70px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(18, 19, 22, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 56px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 12px;
}
.logo {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
  white-space: nowrap;
}
.logo span { color: var(--primary); }
.logo-img { height: 38px; width: auto; max-width: 180px; object-fit: contain; display: block; }

nav.desk { display: none; }

.header-actions { display: flex; align-items: center; gap: 6px; }
.lg_172fde {
  padding: 6px 12px; border: 1px solid var(--border); border-radius: 6px;
  font-size: 13px; font-weight: 700; background: transparent; color: var(--text-main); cursor: pointer;
}
.su_172fde, .cta_172fde {
  padding: 8px 14px; border: none; border-radius: 6px;
  font-family: var(--font-heading); font-size: 13px; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #ffffff; text-transform: uppercase; cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.h_172fde {
  margin-top: 56px; padding: 48px 12px 36px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(18, 19, 22, 0.65) 0%, rgba(18, 19, 22, 0.92) 100%), url('../images/hero.jpg') center/cover no-repeat; border-bottom: 1px solid var(--border);
}
.hero-badge {
  display: inline-block; padding: 4px 10px; background: rgba(24, 25, 30, 0.85); backdrop-filter: blur(6px);
  border: 1px solid var(--border); border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--accent); margin-bottom: 12px;
}
.hero-title {
  font-family: var(--font-heading); font-size: 28px; font-weight: 800; line-height: 1.2; margin-bottom: 12px;
}
.hero-subtitle { font-size: 15px; color: #e2e8f0; margin-bottom: 20px; line-height: 1.4; }
.h_172fde .cta_172fde { width: 100%; max-width: 320px; padding: 12px 20px; font-size: 15px; }

.tw_172fde {
  background: rgba(0,0,0,0.55); backdrop-filter: blur(6px); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 8px 0; overflow: hidden; white-space: nowrap; margin-top: 24px;
}
.ticker-content { display: inline-flex; gap: 10px; animation: ticker 22s linear infinite; }
.win-card { background: var(--bg-card); border: 1px solid var(--border); padding: 4px 10px; border-radius: 6px; display: inline-flex; align-items: center; gap: 6px; font-size: 12px; }
.win-amt { color: var(--accent); font-weight: 700; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.main-container { width: 100%; max-width: 1000px; margin: 0 auto; padding: 16px 12px; }

/* CATEGORY NAV FIX — STRICT SINGLE LINE HORIZONTAL PILLS */
.category-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0 18px;
  margin-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.category-nav::-webkit-scrollbar { display: none; }

.cat-tab {
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.cat-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(240, 133, 25, 0.35);
}

.section-heading { font-family: var(--font-heading); font-size: 20px; font-weight: 800; margin-bottom: 14px; display: flex; justify-content: space-between; align-items: center; }
.section-heading span { color: var(--primary); }

.sg_172fde { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 24px; }
.slot-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; position: relative; display: flex; flex-direction: column; cursor: pointer; }
.slot-thumb { width: 100%; height: 180px; aspect-ratio: 3/4; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; background: #1a1c22; }
.slot-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slot-info { padding: 10px; background: rgba(0,0,0,0.4); }
.slot-title { font-family: var(--font-heading); font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.slot-provider { font-size: 11px; color: var(--text-muted); }

.ps_172fde, .pay_172fde { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 22px 18px; margin-bottom: 24px; text-align: center; }
.strip-title { font-family: var(--font-heading); font-size: 15px; font-weight: 800; color: #ffffff; margin-bottom: 18px; text-transform: uppercase; }

.svg-logo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.svg-logo-card { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border); border-radius: 12px; padding: 12px 18px; display: flex; align-items: center; justify-content: center; height: 68px; }
.svg-logo-card img { height: 44px; width: auto; max-width: 95%; object-fit: contain; }

.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 14px; text-align: center; }
.feature-icon { font-size: 28px; margin-bottom: 6px; }

.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 24px; }
.review-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 14px; }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.review-author { font-family: var(--font-heading); font-size: 13px; font-weight: 700; }
.review-verified { font-size: 10px; background: rgba(16, 185, 129, 0.2); color: #10b981; padding: 2px 6px; border-radius: 4px; }

.sb_172fde, .ab_172fde, .fb_172fde { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 16px; margin-bottom: 20px; }
.specs-title { font-family: var(--font-heading); font-size: 18px; margin-bottom: 12px; color: var(--primary); }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.spec-card { background: rgba(0,0,0,0.25); border: 1px solid var(--border); padding: 10px; border-radius: 6px; }
.spec-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; }
.spec-val { font-size: 13px; font-weight: 700; color: #ffffff; }

.ab_172fde h2 { font-family: var(--font-heading); font-size: 22px; margin: 24px 0 12px; color: #ffffff; }
.ab_172fde h3 { font-family: var(--font-heading); font-size: 17px; margin: 20px 0 10px; color: var(--primary); }
.ab_172fde p { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }

.table-responsive { width: 100%; overflow-x: auto; margin: 18px 0; }
.lsi-table { width: 100%; border-collapse: collapse; font-size: 13px; background: rgba(0, 0, 0, 0.25); border: 1px solid var(--border); }
.lsi-table th, .lsi-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--border); }
.lsi-table th { background: var(--bg-card); color: var(--primary); font-family: var(--font-heading); font-weight: 700; font-size: 11px; }

.faq-title { font-family: var(--font-heading); font-size: 20px; margin-bottom: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: 6px; margin-bottom: 8px; background: rgba(0,0,0,0.2); }
.faq-q { padding: 12px; font-size: 14px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; }
.faq-a { padding: 0 12px 12px; color: var(--text-muted); font-size: 13px; display: none; }
.faq-item.open .faq-a { display: block; }

.mobile-sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: rgba(18, 19, 22, 0.98); border-top: 1px solid var(--border); padding: 8px 12px; display: flex; justify-content: center; }

footer { background: #0c0d0f; border-top: 1px solid var(--border); padding: 24px 12px 40px; text-align: center; }
.footer-trust-badges { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.trust-badge-item { padding: 4px 8px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px; font-weight: 700; font-size: 11px; color: var(--text-muted); }

@media (min-width: 768px) {
  header { height: 64px; padding: 0 24px; }
  .logo { font-size: 24px; }
  .logo-img { height: 44px; }
  nav.desk { display: flex; align-items: center; gap: 8px; }
  nav.desk a { font-family: var(--font-heading); font-size: 15px; font-weight: 600; color: var(--text-muted); padding: 6px 12px; border-radius: 6px; }
  .h_172fde { margin-top: 64px; padding: 70px 20px 50px; }
  .hero-title { font-size: 42px; }
  .main-container { max-width: 1000px; margin: 0 auto; padding: 30px 20px; }
  .sg_172fde { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .slot-thumb { height: 210px; }
  .svg-logo-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .features-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .mobile-sticky-bar { display: none; }
  body { padding-bottom: 0; }
}
