/* ==========================================================================
   VARDHAN 111 — Official Landing Page Design System & Stylesheet
   Centralized CSS: Theme tokens, Layout, Utilities, Responsive Breakpoints
   ========================================================================== */

:root {
  /* Brand Primary Colors */
  --brand-maroon: #7A0C1F;
  --brand-maroon-dark: #580816;
  --brand-maroon-light: #9B1832;
  --brand-maroon-soft: rgba(122, 12, 31, 0.08);
  --brand-maroon-soft2: rgba(122, 12, 31, 0.15);

  /* Accent Gold Colors */
  --brand-gold: #D97706;
  --brand-gold-bright: #F59E0B;
  --brand-gold-light: rgba(217, 119, 6, 0.12);

  /* Status Colors */
  --brand-green: #22C55E;
  --brand-green-dark: #16A34A;
  --brand-green-bg: rgba(34, 197, 94, 0.1);
  --brand-red: #EF4444;

  /* Neutral Dark & Surface Colors */
  --dark-bg: #0D0203;
  --dark-surface1: #1A0A0A;
  --dark-surface2: #2A1212;

  --white: #FFFFFF;
  --off-white: #FDF8F4;
  --bg-subtle: #F9F3EE;

  /* Typography Colors */
  --text-main: #1A0A0A;
  --text-muted: #5C3A3A;
  --text-dim: #9B7A7A;
  --border-color: #E8D5D5;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(122, 12, 31, 0.06);
  --shadow-md: 0 4px 16px rgba(122, 12, 31, 0.08);
  --shadow-lg: 0 8px 32px rgba(122, 12, 31, 0.14);
}

/* Global Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--off-white);
  color: var(--text-main);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--bg-subtle);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-maroon);
  border-radius: 99px;
}

h1, h2, h3, .display-heading {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: -0.02em;
}

/* ===== 1. TOP BAR ===== */
.topbar {
  background: var(--dark-bg);
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid rgba(217, 119, 6, 0.2);
}

.topbar a {
  color: var(--brand-gold-bright);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s;
}

.topbar a:hover {
  color: var(--white);
}

.topbar-left {
  display: flex;
  gap: 20px;
  align-items: center;
}

.topbar-right {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* ===== 2. HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--brand-maroon);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--brand-maroon);
  padding: 0 24px;
  height: 66px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hdr-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hdr-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.hdr-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.hdr-logo-txt {
  line-height: 1.1;
}

.hdr-logo-txt span {
  display: block;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--brand-gold-bright);
  letter-spacing: 0.5px;
}

.hdr-logo-txt small {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

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

.hdr-nav a {
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.25s;
}

.hdr-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand-gold-bright);
}

.hdr-btns {
  display: flex;
  gap: 10px;
}

.hdr-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}

.hdr-btn:hover {
  border-color: var(--brand-gold-bright);
  color: var(--brand-gold-bright);
  background: rgba(245, 158, 11, 0.1);
}

.hdr-btn.wa {
  border-color: rgba(34, 197, 94, 0.3);
  color: var(--brand-green);
}

.hdr-btn.wa:hover {
  background: rgba(34, 197, 94, 0.12);
  border-color: var(--brand-green);
}

/* ===== 3. HERO SECTION ===== */
.hero {
  background: linear-gradient(145deg, var(--dark-bg) 0%, var(--dark-surface1) 40%, var(--dark-surface2) 100%);
  padding: 85px 20px 65px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(122, 12, 31, 0.35) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(217, 119, 6, 0.22) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 50%, rgba(88, 8, 22, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: var(--brand-gold-bright);
  opacity: 0.15;
}

.hero-particle:nth-child(1) { width: 320px; height: 320px; top: -80px; right: -60px; filter: blur(80px); animation: floatAnim 10s ease-in-out infinite; }
.hero-particle:nth-child(2) { width: 260px; height: 260px; bottom: -60px; left: -40px; filter: blur(60px); animation: floatAnim 12s ease-in-out infinite reverse; }
.hero-particle:nth-child(3) { width: 160px; height: 160px; top: 30%; left: 15%; filter: blur(40px); animation: floatAnim 8s ease-in-out infinite 2s; }

@keyframes floatAnim {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.08); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-bright));
  color: var(--dark-bg);
  padding: 7px 24px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(217, 119, 6, 0.35);
}

.hero h1 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 6.5vw, 3.8rem);
  line-height: 1.15;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}

.hero h1 .accent {
  background: linear-gradient(135deg, #F87171, var(--brand-gold-bright), #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(0.92rem, 1.8vw, 1.08rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 34px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.hero-acts {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  letter-spacing: 0.3px;
}

.btn-red {
  background: linear-gradient(135deg, var(--brand-maroon), var(--brand-maroon-light));
  color: #FFF;
  box-shadow: 0 4px 20px rgba(122, 12, 31, 0.45);
}

.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(122, 12, 31, 0.6);
  color: #FFF;
}

.btn-gold {
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-bright));
  color: var(--dark-bg);
  box-shadow: 0 4px 20px rgba(217, 119, 6, 0.35);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(217, 119, 6, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold-bright);
}

.hero-counters {
  display: flex;
  gap: clamp(20px, 5vw, 56px);
  justify-content: center;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.counter {
  text-align: center;
}

.counter-num {
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--brand-gold-bright);
}

.counter-lbl {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-top: 2px;
}

/* ===== 4. MARQUEE / TICKER ===== */
.marquee {
  background: linear-gradient(135deg, var(--brand-maroon), var(--brand-maroon-light));
  padding: 12px 0;
  overflow: hidden;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.2);
}

.marquee-inner {
  display: flex;
  gap: 40px;
  animation: scrollMarquee 35s linear infinite;
  width: max-content;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.marquee-sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-gold-bright);
}

/* ===== 5. GENERAL SECTION STYLES ===== */
.sec {
  padding: 75px 20px;
  position: relative;
}

.sec-center {
  max-width: 1120px;
  margin: 0 auto;
}

.sec-head {
  text-align: center;
  margin-bottom: 42px;
}

.sec-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 18px;
  border-radius: 99px;
  background: var(--brand-maroon-soft);
  color: var(--brand-maroon);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.sec-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  color: var(--text-main);
  margin-bottom: 6px;
}

.sec-title .red {
  color: var(--brand-maroon);
}

.sec-sub {
  font-size: 0.9rem;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== 6. MARKET FILTER & CARDS ===== */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 24px;
  border-radius: 10px;
  border: 1.5px solid var(--border-color);
  background: var(--white);
  color: var(--text-dim);
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.25s;
}

.filter-btn:hover {
  color: var(--brand-maroon);
  border-color: var(--brand-maroon-soft2);
}

.filter-btn.on {
  background: var(--brand-maroon);
  color: var(--white);
  border-color: var(--brand-maroon);
  box-shadow: 0 3px 14px rgba(122, 12, 31, 0.3);
}

.mk-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.mk-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 18px 22px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 14px;
}

.mk-card:hover {
  border-color: rgba(122, 12, 31, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.mk-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mk-dot.live {
  background: var(--brand-green);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
  animation: pulseDot 2s infinite;
}

.mk-dot.ended {
  background: var(--text-dim);
}

.mk-info {
  flex: 1;
  min-width: 0;
}

.mk-name {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.mk-time {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.mk-result {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--brand-maroon);
}

.mk-tag {
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.mk-tag.live {
  background: var(--brand-green-bg);
  color: var(--brand-green);
}

.mk-tag.ended {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-dim);
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ===== 7. MARKET SCHEDULE TABLE ===== */
.table-wrap {
  width: 100%;
  overflow-x: hidden;
  border-radius: 16px;
}

.market-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  table-layout: fixed;
  word-wrap: break-word;
}

.market-table thead {
  background: var(--brand-maroon);
}

.market-table thead th {
  padding: 14px 10px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: center;
  white-space: nowrap;
}

.market-table thead th:first-child {
  width: 40px;
}

.market-table tbody tr {
  transition: background 0.2s;
}

.market-table tbody tr:nth-child(even) {
  background: rgba(122, 12, 31, 0.02);
}

.market-table tbody tr:hover {
  background: var(--brand-maroon-soft);
}

.market-table td {
  padding: 12px 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
  word-break: break-word;
}

.market-table .m-name {
  font-weight: 800;
  color: var(--text-main);
}

.market-table .m-time {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
}

/* ===== 8. DARK WINNING RATES SECTION ===== */
.sec-dark {
  background: linear-gradient(145deg, var(--dark-bg), var(--dark-surface1));
  color: var(--white);
}

.sec-dark .sec-title {
  color: var(--white);
}

.sec-dark .sec-sub {
  color: rgba(255, 255, 255, 0.55);
}

.sec-dark .sec-badge {
  background: rgba(217, 119, 6, 0.18);
  color: var(--brand-gold-bright);
}

.rates-table {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.rates-row {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: background 0.2s;
}

.rates-row:hover {
  background: var(--brand-maroon-soft);
}

.rates-row:last-child {
  border-bottom: none;
}

.rates-name {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--text-main);
  width: 170px;
  flex-shrink: 0;
}

.rates-bar-wrap {
  flex: 1;
  height: 9px;
  background: var(--bg-subtle);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 20px;
}

.rates-bar {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--brand-maroon), var(--brand-gold-bright));
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.rates-val {
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--brand-maroon);
  min-width: 110px;
  text-align: right;
  flex-shrink: 0;
}

/* ===== 9. HOW TO PLAY (QUICK START) ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 30px 22px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-maroon), var(--brand-gold-bright));
  opacity: 0;
  transition: opacity 0.3s;
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-card:hover::before {
  opacity: 1;
}

.step-num {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-maroon), var(--brand-maroon-light));
  color: #FFF;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.15rem;
  box-shadow: 0 4px 14px rgba(122, 12, 31, 0.28);
}

.step-t {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 6px;
}

.step-d {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ===== 10. TRUST SECTION ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 30px 22px;
  text-align: center;
  transition: all 0.3s;
}

.trust-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.trust-ico {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

.trust-ico.red { background: var(--brand-maroon-soft); color: var(--brand-maroon); }
.trust-ico.gold { background: var(--brand-gold-light); color: var(--brand-gold); }
.trust-ico.green { background: var(--brand-green-bg); color: var(--brand-green); }
.trust-ico.dark { background: rgba(0, 0, 0, 0.06); color: var(--text-main); }

.trust-t {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 6px;
}

.trust-d {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ===== 11. FAQ ACCORDION ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: rgba(122, 12, 31, 0.2);
}

.faq-q {
  padding: 20px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--text-main);
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--brand-maroon);
}

.faq-q i {
  color: var(--brand-maroon);
  font-size: 0.85rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-q i {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 22px;
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 22px 20px;
}

.faq-a p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== 12. DUAL CTA SECTION ===== */
.cta-sec {
  padding: 75px 20px;
  background: var(--off-white);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 840px;
  margin: 0 auto;
}

.cta-card {
  border-radius: 22px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
  overflow: hidden;
  position: relative;
}

.cta-card:hover {
  transform: translateY(-4px);
}

.cta-wa {
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: #FFF;
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.28);
}

.cta-wa:hover {
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.4);
}

.cta-wa .cta-ico {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.cta-wa h3 {
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.cta-wa p {
  font-size: 0.84rem;
  opacity: 0.9;
  margin-bottom: 18px;
  line-height: 1.7;
}

.cta-wa .cta-num {
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 1px;
  margin-bottom: 18px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  display: inline-block;
}

.cta-wa .btn {
  background: #FFF;
  color: #16A34A;
  border-radius: 12px;
  font-size: 0.85rem;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.12);
}

.cta-wa .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.cta-dl {
  background: linear-gradient(135deg, var(--brand-maroon), var(--brand-maroon-light));
  color: #FFF;
  box-shadow: 0 8px 30px rgba(122, 12, 31, 0.3);
}

.cta-dl:hover {
  box-shadow: 0 12px 40px rgba(122, 12, 31, 0.42);
}

.cta-dl .cta-ico {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.cta-dl h3 {
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.cta-dl p {
  font-size: 0.84rem;
  opacity: 0.9;
  margin-bottom: 18px;
  line-height: 1.7;
}

.cta-dl .btn {
  background: #FFF;
  color: var(--brand-maroon);
  border-radius: 12px;
  font-size: 0.85rem;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.12);
}

.cta-dl .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

/* ===== 13. FOOTER ===== */
footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.55);
  padding: 55px 20px 120px;
  text-align: center;
}

.ft-inner {
  max-width: 950px;
  margin: 0 auto;
}

.ft-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
  text-align: center;
}

.ft-brand .ft-logo {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
}

.ft-brand .ft-logo .red {
  color: var(--brand-maroon-light);
}

.ft-brand p {
  font-size: 0.78rem;
  line-height: 1.8;
  max-width: 280px;
  margin: 0 auto;
}

.ft-col h4 {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ft-col a {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.2s;
}

.ft-col a:hover {
  color: var(--brand-gold-bright);
}

.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
}

.ft-bottom p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
}

.ft-social {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
}

.ft-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
}

.ft-social a:hover {
  background: var(--brand-maroon);
  color: var(--white);
}

/* ===== 14. FLOATING WHATSAPP & STICKY BOTTOM ===== */
.float-wa {
  position: fixed;
  bottom: 92px;
  right: 20px;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(34, 197, 94, 0.4);
  transition: all 0.3s;
}

.float-wa:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.5);
}

.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 2px solid var(--brand-maroon);
  padding: 12px 20px;
  text-align: center;
  transform: translateY(0);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.sticky-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-maroon), var(--brand-maroon-light));
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: 0 4px 18px rgba(122, 12, 31, 0.4);
  transition: all 0.25s;
}

.sticky-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(122, 12, 31, 0.5);
}

.sticky-txt {
  font-size: 0.65rem;
  color: var(--text-dim);
  margin-top: 5px;
  font-weight: 600;
}

/* Scroll Animation Utilities */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.rv.vis {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FEATURE 1: LIVE WINNERS TOAST & BAR ===== */
.winner-toast {
  position: fixed;
  bottom: 25px;
  left: 20px;
  z-index: 1002;
  background: rgba(13, 2, 3, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(217, 119, 6, 0.35);
  border-left: 4px solid var(--brand-gold-bright);
  padding: 12px 18px;
  border-radius: 14px;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 340px;
  transform: translateY(150px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.winner-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.winner-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-maroon), var(--brand-gold-bright));
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #FFF;
  flex-shrink: 0;
}

.winner-info {
  font-size: 0.76rem;
  line-height: 1.35;
}

.winner-name {
  font-weight: 800;
  color: var(--brand-gold-bright);
}

.winner-details {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}

.winner-time {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== FEATURE 2: STARLINE & GALI SPECIAL GRID ===== */
.special-section {
  background: linear-gradient(145deg, var(--dark-bg), var(--dark-surface2));
  color: var(--white);
  padding: 70px 20px;
}

.starline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.starline-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 16px;
  text-align: center;
  transition: all 0.3s;
}

.starline-card:hover {
  background: rgba(217, 119, 6, 0.12);
  border-color: var(--brand-gold-bright);
  transform: translateY(-2px);
}

.starline-time {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

.starline-res {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--brand-gold-bright);
  margin: 4px 0;
  letter-spacing: 1px;
}

.gali-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.gali-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}

.gali-card:hover {
  border-color: var(--brand-maroon-light);
  box-shadow: 0 4px 20px rgba(122, 12, 31, 0.3);
  transform: translateY(-2px);
}

.gali-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
}

.gali-time {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.gali-jodi {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--brand-gold-bright);
  letter-spacing: 2px;
  background: rgba(217, 119, 6, 0.15);
  padding: 4px 14px;
  border-radius: 10px;
}

/* ===== FEATURE 3: INTERACTIVE PAYOUT CALCULATOR ===== */
.calc-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 22px;
  padding: 36px 30px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.calc-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.calc-input, .calc-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border-color);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  background: var(--off-white);
  outline: none;
  transition: border-color 0.25s;
}

.calc-input:focus, .calc-select:focus {
  border-color: var(--brand-maroon);
}

.calc-result-box {
  background: linear-gradient(135deg, var(--brand-maroon), var(--brand-maroon-dark));
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(122, 12, 31, 0.35);
}

.calc-result-lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.8;
  font-weight: 700;
}

.calc-result-val {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 900;
  color: var(--brand-gold-bright);
  margin: 4px 0;
  letter-spacing: 0.5px;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 840px) {
  .hdr-nav { display: none; }
  .hero { padding: 65px 20px 45px; }
  .hero h1 { font-size: clamp(1.9rem, 7vw, 2.9rem); }
  .hero-counters { gap: 20px; }
  .cta-grid { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr; gap: 24px; }
  .mk-cards { grid-template-columns: 1fr; }
  .calc-row { grid-template-columns: 1fr; }
  .winner-toast { bottom: 85px; left: 12px; right: 12px; max-width: none; }
  .sec { padding: 55px 16px; }
  .market-table thead th { padding: 12px 6px; font-size: 0.62rem; letter-spacing: 0.3px; }
  .market-table td { padding: 10px 6px; font-size: 0.76rem; }
}

@media (max-width: 540px) {
  .topbar { display: none; }
  .hero-acts { flex-direction: column; width: 100%; padding: 0 10px; }
  .btn { justify-content: center; width: 100%; }
  .rates-name { width: 110px; font-size: 0.8rem; }
  .rates-val { font-size: 0.88rem; min-width: 85px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .market-table thead th:first-child, .market-table td:first-child { display: none; }
  .market-table thead th { padding: 10px 4px; font-size: 0.58rem; }
  .market-table td { padding: 8px 4px; font-size: 0.72rem; }
}

