:root {
  --green: #1a73e8; /* Vibrant Blue */
  --green-dark: #1557b0; /* Darker Blue */
  --green-light: #4285f4; /* Light Blue */
  --green-bg: #f4f8ff; /* Light Blue Background */
  --green-pale: #e8f0fe; /* Pale Blue Background */
  --white: #ffffff;
  --gray-bg: #f8f9fb;
  --gray-card: #f4f6f8;
  --border: #dee2e6;
  --border-green: #c2dbff; /* Blue Border */
  --text-dark: #212529;
  --text-mid: #495057;
  --text-muted: #6c757d;
  --red: #dc3545;
  --orange: #fd7e14;
  --gold: #ffc107;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Mukta', sans-serif;
  background: var(--gray-bg);
  color: var(--text-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1160px;
}

/* NAVBAR */
.navbar-bg {
  width: 100%;
  padding: 0;
  background: linear-gradient(135deg, #0a1628 0%, #1a3a6e 50%, #2e86c1 100%);
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 1050;
  box-shadow: none;
  transition: all 0.3s ease;
}

.navbar-bg.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 2px solid var(--green);
}

/* Nav links when not scrolled (Dark Background) */
.navbar-bg .nav-link {
  color: #f1f5f9 !important;
}

.navbar-bg .nav-link:hover {
  color: #38bdf8 !important;
  background: rgba(255, 255, 255, 0.08);
}

/* Nav links when scrolled (White Glass Background) */
.navbar-bg.scrolled .nav-link {
  color: #1e293b !important;
}

.navbar-bg.scrolled .nav-link:hover {
  color: var(--green) !important;
  background: var(--green-pale);
}

/* Logo brand text color overrides */
.navbar-bg .logo-title {
  color: #ffffff;
}
.navbar-bg .logo-subtitle {
  color: #38bdf8;
}

.navbar-bg.scrolled .logo-title {
  color: #1e293b;
}
.navbar-bg.scrolled .logo-subtitle {
  color: #1a73e8;
}

.navbar {
  width: 100%;
  border-radius: 0 !important;
  min-height: 75px;
  padding: 0px 12px;
  background: transparent;
  border: none !important;
  box-shadow: none !important;
}

.navbar .dropdown-menu.nav-chart-dd {
  max-height: min(70vh, 420px);
  overflow-y: auto;
  min-width: 12rem;
  z-index: 1050;
}

.navbar .dropdown-item {
  font-size: 0.94rem;
  color: var(--text-dark);
}

.navbar .dropdown-item:hover {
  background-color: var(--green-pale);
  color: var(--green);
}

/* MEGA MENU CUSTOM STYLING */
@media (min-width: 992px) {
  .navbar-bg .container {
    position: relative;
  }
  
  .mega-dropdown {
    position: static !important;
  }
  
  .mega-menu-content {
    position: absolute;
    left: 12px;
    right: 12px;
    width: calc(100% - 24px) !important;
    background: #ffffff;
    border-radius: 16px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1) !important;
    padding: 24px !important;
    top: 100%;
    margin-top: 5px !important;
    animation: megaMenuFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform-origin: top center;
    z-index: 1060;
  }
}

@keyframes megaMenuFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mega-menu-col-list {
  max-height: 280px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--green) transparent;
}

.mega-menu-col-list::-webkit-scrollbar {
  width: 4px;
}

.mega-menu-col-list::-webkit-scrollbar-track {
  background: transparent;
}

.mega-menu-col-list::-webkit-scrollbar-thumb {
  background-color: rgba(40, 166, 107, 0.2);
  border-radius: 4px;
}

.mega-menu-col-list::-webkit-scrollbar-thumb:hover {
  background-color: var(--green);
}

.mega-menu-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--green-pale);
  padding-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-menu-title i {
  color: var(--green);
}

.mega-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 500;
  color: #475569 !important;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 2px;
}

.mega-menu-link:hover {
  background-color: var(--green-pale);
  color: var(--green) !important;
  padding-left: 14px;
}

.mega-menu-link span.time {
  font-size: 10px;
  color: #94a3b8;
  font-weight: 400;
  transition: color 0.2s ease;
}

.mega-menu-link:hover span.time {
  color: var(--green);
}

/* Mobile responsive fixes for Mega Menu */
@media (max-width: 991.98px) {
  .mega-menu-content {
    background-color: #f8fafc;
    border-radius: 12px !important;
    padding: 16px !important;
    border: none !important;
    box-shadow: none !important;
    margin-top: 8px !important;
  }
  
  .mega-menu-col {
    margin-bottom: 20px;
  }
  
  .mega-menu-col:last-child {
    margin-bottom: 0;
  }
  
  .mega-menu-col-list {
    max-height: 220px;
  }
  
  .mega-menu-title {
    font-size: 12px;
    margin-bottom: 8px;
  }

  /* Collapsed navbar menu fixes to prevent white text on white background */
  .navbar-collapse .nav-link {
    color: #1e293b !important;
    font-weight: 700 !important;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    transition: all 0.2s ease;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }
  
  .navbar-collapse .nav-link:hover {
    background: var(--green-pale) !important;
    color: var(--green) !important;
  }
  
  .navbar-collapse .nav-link.active {
    background-color: var(--green) !important;
    color: #ffffff !important;
  }

  .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.25) !important;
    padding: 6px 10px !important;
  }

  .navbar-toggler-icon {
    filter: invert(1) grayscale(100%) brightness(200%);
  }

  .scrolled .navbar-toggler-icon {
    filter: none;
  }
}

.nav-item.dropdown .dropdown-toggle::after {
  margin-left: 0.35em;
  vertical-align: 0.12em;
}

.nav-item.dropdown .dropdown-toggle {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  text-align: inherit;
}

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

.logo-text-wrap {
  line-height: 1.05;
}

.logo-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.12rem;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.logo-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.62rem;
  color: #1a73e8;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.nav-link {
  color: #1e293b !important;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 16px !important;
  border-radius: 99px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-link:hover {
  color: var(--green) !important;
  background: var(--green-pale);
}

.nav-link.active {
  height: auto;
  background-color: var(--green) !important;
  color: white !important;
  padding: 8px 18px !important;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.2);
}

.nav-link.btn-dl-nav {
  background-color: var(--green) !important;
  color: white !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(26, 115, 232, 0.25);
  font-weight: 700 !important;
  padding: 8px 24px !important;
  height: auto;
}

.nav-link.btn-dl-nav:hover {
  background-color: var(--green-dark) !important;
  color: white !important;
  transform: translateY(-1px);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #0a1628 0%, #1a3a6e 50%, #2e86c1 100%);
  padding: 0 !important;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-rain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
  opacity: 0.18;
}

.falling-card {
  position: absolute;
  top: -60px;
  font-size: clamp(24px, 4vw, 42px);
  user-select: none;
  animation: fallAndRotate linear forwards;
  font-weight: 900;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
}

@keyframes fallAndRotate {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(580px) rotate(360deg);
    opacity: 0;
  }
}

.hero-wrap {
  max-width: 1200px;
  position: relative;
}

.hero-page-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-page-lead {
  max-width: 720px;
  margin: 0 auto 28px;
  padding: 0 12px;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.hero-copy-wrap {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 40px 35px;
  position: relative;
  z-index: 2;
}

.hero-matka-watermark {
  position: absolute;
  left: -20px;
  top: 50px;
  width: 190px;
  height: 190px;
  opacity: 0.05;
  z-index: -1;
  pointer-events: none;
}

.hero-copy-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 12px;
}

.hero-copy-title span {
  color: var(--green);
}

.hero-copy-desc {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #cbd5e1;
  margin-bottom: 24px;
  max-width: 480px;
}

.hero-girl-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 420px;
  padding-top: 20px;
}

.hero-girl-vector {
  width: min(430px, 100%);
  height: auto;
  object-fit: contain;
}

.hero-cta-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  z-index: 3;
}

.download-btn {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(520px, calc(100% - 24px));
  height: 62px;
  margin-top: -32px;
  padding: 0 22px;
  border: 2px solid rgba(255, 255, 255, 0.55) !important;
  border-radius: 999px;
  background: linear-gradient(180deg, #4285f4 0%, #1a73e8 48%, #1557b0 100%);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow:
    0 14px 32px rgba(26, 115, 232, 0.42),
    0 4px 0 #104f9e,
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation: downloadPulse 2.4s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.download-btn-shine {
  position: absolute;
  top: 0;
  left: -40%;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-18deg);
  animation: downloadShine 3.2s ease-in-out infinite;
  pointer-events: none;
}

.download-btn-icon {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.download-btn-icon svg {
  width: 20px;
  height: 20px;
}

.download-btn-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  gap: 2px;
}

.download-btn-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.download-btn-title {
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.download-btn:hover {
  transform: translateY(-2px) scale(1.015);
  filter: brightness(1.04);
  box-shadow:
    0 18px 36px rgba(26, 115, 232, 0.5),
    0 5px 0 #104f9e,
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  color: #fff !important;
}

.download-btn:active {
  transform: translateY(1px) scale(0.995);
  box-shadow:
    0 8px 18px rgba(26, 115, 232, 0.35),
    0 2px 0 #104f9e,
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@keyframes downloadPulse {
  0%, 100% {
    box-shadow:
      0 14px 32px rgba(26, 115, 232, 0.42),
      0 4px 0 #104f9e,
      inset 0 1px 0 rgba(255, 255, 255, 0.35),
      0 0 0 0 rgba(26, 115, 232, 0.35);
  }
  50% {
    box-shadow:
      0 16px 34px rgba(26, 115, 232, 0.48),
      0 4px 0 #104f9e,
      inset 0 1px 0 rgba(255, 255, 255, 0.35),
      0 0 0 12px rgba(26, 115, 232, 0);
  }
}

@keyframes downloadShine {
  0%, 55% { left: -40%; opacity: 0; }
  60% { opacity: 1; }
  85% { left: 110%; opacity: 0.85; }
  100% { left: 110%; opacity: 0; }
}

/* WHATSAPP CHANNEL */
.wa-channel-section {
  padding: 8px 0 28px !important;
  margin: 0;
}

.wa-channel-panel {
  background: #fff;
  border: 1px solid #e8edf1;
  border-radius: 16px;
  padding: 22px 26px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.wa-channel-row {
  display: flex;
  align-items: center;
  gap: 20px 24px;
}

.wa-channel-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e8f4ff;
  color: #007bff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.18);
}

.wa-channel-copy {
  min-width: 0;
  flex: 1;
}

.wa-channel-eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 4px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #007bff;
}

.wa-channel-title {
  margin: 0 0 6px;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: #152321;
}

.wa-channel-desc {
  margin: 0 0 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #6b7580;
  max-width: 560px;
}

.wa-channel-perks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 0;
  padding: 0;
}

.wa-channel-perks li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #3d4a45;
}

.wa-channel-perks i {
  color: var(--green);
  font-size: 0.72rem;
}

.wa-channel-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.32);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-channel-btn i {
  font-size: 1.15rem;
}

.wa-channel-btn:hover {
  background: #1ebe57;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.4);
  color: #fff !important;
}

/* FEATURE ITEMS BAR */
.feature-block {
  margin-top: 18px;
  margin-bottom: 34px;
}

.feature-row {
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  border: 1px solid #e8edf1;
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.04);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 4px;
}

.feature-item svg {
  height: 58px;
  width: auto;
  margin-bottom: 8px;
}

.feature-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-dark);
}

.feature-sub {
  font-size: 12px;
  font-weight: 400;
  color: #6d6d6d;
  margin-top: 4px;
}

/* SECTIONS */
section {
  padding: 34px 0;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  color: #152321;
  margin-bottom: 4px;
}

.green-line {
  width: 64px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin: 8px auto 14px;
}

.section-sub {
  text-align: center;
  color: #7b858f;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* CONNECT */
.connect-section-wrap {
  margin: 22px 0 34px !important;
  padding: 0 !important;
}

.connect-panel {
  background: var(--gray-card);
  border: 1px solid #e8edf1;
  border-radius: 20px;
  padding: 26px 34px 30px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
}

.connect h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  line-height: 1.04;
  font-weight: 800;
  color: #111827;
}

.connect h2 span {
  color: var(--green);
}

.connect p {
  border-left: 4px solid var(--green);
  padding-left: 28px;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  line-height: 1.55;
  color: #4b5563;
  font-weight: 400;
}

.connect-cta-row {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-call,
.btn-wa {
  width: 250px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 0 18px;
  text-decoration: none;
  transition: all .2s ease;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.12);
}

.btn-call {
  background: var(--green);
  border: 1px solid #104f9e;
  color: #fff;
}

.btn-wa {
  background: #f7f8f9;
  border: 1px solid #a4c5d9;
  color: var(--green);
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.08);
}

.btn-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.btn-arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.btn-call .btn-arrow {
  background: #f5f8f6;
  color: var(--green);
}

.btn-wa .btn-arrow {
  background: var(--green);
  color: #fff;
}

.btn-call:hover,
.btn-wa:hover {
  transform: translateY(-1px);
}

/* LUCKY TABLE */
.lucky-table {
  background: #fff;
  border: 1px solid #e9edf1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.04);
}

.lucky-table thead {
  background: #f4f5f6;
  border-bottom: 1px solid #eceff1;
}

.lucky-table thead th {
  color: #575f68;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .55px;
  padding: 12px 14px;
  border: none;
}

.lucky-table tbody tr {
  border-bottom: 1px solid #eef1f3;
}

.lucky-table tbody td {
  padding: 16px 14px;
  font-size: 0.88rem;
  color: #2f353b;
  border: none;
  vertical-align: middle;
}

.market-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #c2dbff;
  color: #0d5ed7;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 12px;
}

.oc-wrap {
  display: flex;
  align-items: flex-end;
  gap: 30px;
}

.oc-wrap > div {
  min-width: 44px;
}

.oc-lbl {
  display: block;
  color: #4285f4;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.pana-val {
  font-weight: 700;
  color: #2b3036;
  font-size: 1.08rem;
  font-family: monospace;
  line-height: 1;
}

.jodi-val {
  font-weight: 800;
  color: #2a2f35;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.trend-note {
  font-size: 0.82rem;
  color: #0b5ed7;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 10px 12px;
  border-top: 1px solid #edf0f2;
}

.trend-note i {
  color: var(--green);
}

/* TOP WINNERS */
.winners-tbl {
  background: #fff;
  border: 1px solid #e9edf1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.04);
}

.winners-tbl thead {
  background: #f4f5f6;
  border-bottom: 1px solid #eceff1;
}

.winners-tbl thead th {
  color: #575f68;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .55px;
  padding: 12px 12px;
  border: none;
}

.winners-tbl tbody tr {
  border-bottom: 1px solid #eef1f3;
}

.winners-tbl tbody td {
  padding: 14px 12px;
  font-size: 0.9rem;
  color: #2f353b;
  border: none;
  vertical-align: middle;
  font-weight: 600;
}

.win-amt {
  color: #2f353b;
  font-weight: 800;
  font-size: 0.98rem;
}

.gb {
  padding: 3px 9px;
  border-radius: 12px;
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
}

.gb-s, .gb-p {
  background: #c2dbff;
  color: #0d5ed7;
  border: none;
}

.w-foot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.82rem;
  color: #0b5ed7;
  padding: 10px 12px;
  border-top: 1px solid #edf0f2;
}

.w-foot span i {
  color: var(--green);
  margin-right: 3px;
}

/* GAME RATES GRID */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 26px;
}

.rate-card {
  background: linear-gradient(90deg, #1f70d2 0%, #2e8bfa 100%);
  border: 1px solid rgba(31, 112, 210, 0.7);
  border-radius: 999px;
  padding: 10px 16px 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .2s;
  box-shadow: 0 6px 14px rgba(30, 144, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.rate-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.18) 36%, rgba(255, 255, 255, 0) 68%);
  pointer-events: none;
}

.rate-card:hover {
  transform: translateY(-1px);
}

.rate-left {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.rate-ico {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.74rem;
  flex-shrink: 0;
}

.rate-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  line-height: 1.1;
}

.rate-right {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.rate-ka {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
  white-space: nowrap;
}

.rate-amt {
  font-weight: 800;
  font-size: 1.06rem;
  color: #fff;
  white-space: nowrap;
}

/* WITHDRAWAL PROOF */
.wd-section {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.wd-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 12px;
}

.wd-title {
  font-size: 1.95rem;
  font-weight: 800;
  color: #182226;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.1;
}

.wd-title i {
  color: var(--green);
  font-size: 1.55rem;
}

.wd-subtitle {
  font-size: 0.92rem;
  color: #7a848e;
  margin-top: 8px;
}

.btn-refresh {
  background: #f4f8ff;
  border: 1px solid #c2dbff;
  color: #1a73e8;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  font-weight: 700;
}

.btn-refresh:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.wd-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.wd-card {
  background: #fff;
  border: 1px solid #e9eef3;
  border-radius: 12px;
  padding: 14px 14px 12px;
  box-shadow: 0 4px 14px rgba(9, 30, 66, 0.05);
}

.wd-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.wd-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid #f4f7fa;
}

.wd-av.male {
  background: linear-gradient(135deg, #ff9a43, #f26a24);
}

.wd-av.female {
  background: linear-gradient(135deg, #ff8db1, #b45cff);
}

.wd-user-meta {
  min-width: 0;
  flex: 1;
}

.wd-name {
  font-weight: 700;
  font-size: 0.94rem;
  color: #1d2a32;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wd-method {
  font-size: 0.78rem;
  color: #7a8590;
  margin-top: 7px;
}

.wd-method strong {
  color: #2c333a;
  font-weight: 700;
}

.wd-status {
  background: #2a9e67;
  color: #fff;
  border: none;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: auto;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wd-status::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.6rem;
}

.wd-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.wd-amount {
  font-weight: 800;
  font-size: 1.2rem;
  color: #2a9e67;
  line-height: 1;
}

.wd-dur {
  font-size: 0.78rem;
  color: #5f6872;
  font-weight: 700;
}

.wd-dur i {
  color: #2a9e67;
}

.wd-time {
  font-size: 0.74rem;
  color: #9aa4af;
  margin-top: 4px;
}

/* BEST GAMES */
.game-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--green);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(40, 166, 107, 0.3);
  box-shadow: 0 16px 36px rgba(40, 166, 107, 0.08);
}

.game-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.game-title {
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
  color: #0f172a;
  line-height: 1.2;
}

.game-title i {
  font-size: 0.8rem;
  margin-left: 4px;
}

.game-time {
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.game-time i {
  color: var(--green);
}

.game-num {
  background: rgba(40, 166, 107, 0.05);
  border-radius: 10px;
  padding: 8px 12px;
  text-align: center;
  color: var(--green);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin: 14px 0;
  border: 1px dashed rgba(40, 166, 107, 0.2);
}

.game-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: auto;
}

.game-btn-play {
  background: linear-gradient(135deg, var(--green) 0%, #1c7c4e 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 8px 16px;
  border-radius: 30px;
  flex-grow: 1;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
  border: none;
}

.game-btn-play:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(40, 166, 107, 0.2);
}

.game-btn-chart {
  background: transparent;
  border: 1px solid rgba(40, 166, 107, 0.25);
  color: var(--green) !important;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 7px 12px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.game-btn-chart:hover {
  background: rgba(40, 166, 107, 0.05);
  border-color: var(--green);
}

/* APP DOWNLOAD SECTION */
.app-section {
  background: linear-gradient(112deg, #1a73e8 0%, #4285f4 55%, #1a73e8 100%);
  border-radius: 16px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.app-section::before {
  content: '';
  position: absolute;
  top: -170px;
  left: -12%;
  width: 124%;
  height: 240px;
  background: var(--gray-bg);
  border-radius: 0 0 50% 50%;
  z-index: 0;
}

.app-section::after {
  content: '';
  position: absolute;
  bottom: -170px;
  left: -10%;
  width: 120%;
  height: 230px;
  background: var(--gray-bg);
  border-radius: 50% 50% 0 0;
  z-index: 0;
}

.app-row {
  position: relative;
  z-index: 1;
}

.app-copy .app-download-title {
  font-size: clamp(1.8rem, 2.7vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
  text-align: left;
}

.app-copy .app-download-title span {
  color: #ffef31;
}

.app-copy p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 0 28px;
  line-height: 1.65;
  text-align: left;
}

.btn-dl-big {
  background: linear-gradient(90deg, #f7faf8 0%, #ffffff 70%);
  color: var(--green);
  font-weight: 800;
  padding: 13px 40px;
  border-radius: 40px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: min(420px, 100%);
  box-shadow: 0 9px 20px rgba(0,0,0,0.16);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-dl-big:hover {
  transform: translateY(-1px);
  color: var(--green);
}

.app-phone-wrap {
  position: relative;
  width: max-content;
  margin-left: auto;
  margin-right: 32px;
}

.app-ring {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  right: -110px;
  top: 50%;
  transform: translateY(-50%);
}

.app-ring::before, .app-ring::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  inset: 34px;
}

.app-ring::after {
  inset: 68px;
}

.app-phone-wrap img {
  height: 400px;
  width: auto;
  position: relative;
  z-index: 1;
}

/* FAQ */
.home-faq-wrap {
  padding: 34px 0 46px !important;
}

.faq-left {
  padding: 12px 6px;
  text-align: left;
}

.faq-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f0fe;
  color: #1a73e8;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 12px;
}

.faq-left-title {
  font-size: 2rem;
  color: #3b3f43;
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 10px;
}

.faq-left p {
  color: #777f87;
  font-size: 0.9rem;
  max-width: 350px;
  line-height: 1.6;
  margin-bottom: 34px;
}

.faq-dl-btn {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 8px 10px 8px 22px;
  font-size: 0.84rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
  justify-content: space-between;
  box-shadow: 0 8px 14px rgba(18, 52, 89, 0.2);
  text-decoration: none;
}

.faq-dl-btn span {
  width: 30px;
  height: 30px;
  background: #e8f0fe;
  color: #1a73e8;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-item {
  background: #eceff1;
  border: 1px solid #e0e5e9;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-q {
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.86rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #3f474f;
  transition: all .2s;
  line-height: 1.3;
}

.faq-q:hover {
  background: #e6f0f5;
}

.faq-ico {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.58rem;
  transition: transform .3s;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-ans {
  padding: 0 14px;
  max-height: 0;
  overflow: hidden;
  transition: all .3s ease;
  font-size: 0.78rem;
  color: #717a83;
  line-height: 1.55;
  background: #eceff1;
}

.faq-ans.open {
  padding: 0 14px 12px;
  max-height: 220px;
}

.faq-item.active {
  background: var(--green);
  border-color: var(--green);
}

.faq-item.active .faq-q {
  color: #fff;
}

.faq-item.active .faq-ico {
  transform: rotate(180deg);
  background: #e8f0fe;
  color: #1a73e8;
}

.faq-item.active .faq-ans.open {
  background: var(--green);
  color: #e8f0fe;
}

/* ==============================
   SITE FOOTER - NEW PREMIUM DESIGN
   ============================== */
.site-footer {
  background: #071025;
  color: #94a3b8;
  font-family: 'Poppins', sans-serif;
}

/* --- Stats Strip --- */
.ft-stats-strip {
  background: linear-gradient(90deg, #0f2447 0%, #152d5a 100%);
  border-top: 2px solid var(--green);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
}

.ft-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.ft-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}

.ft-stat-num {
  font-size: 1.45rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.ft-stat-label {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 3px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ft-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}

/* --- Main Footer Body --- */
.ft-main {
  padding: 56px 0 40px;
}

/* --- Brand Block --- */
.ft-brand-block {
  padding-right: 20px;
}

.ft-brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

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

.ft-brand-text {
  display: flex;
  flex-direction: column;
}

.ft-brand-name {
  font-size: 1.2rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.ft-brand-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: #22c55e;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 3px;
}

.ft-brand-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 20px;
}

/* --- Social Icons --- */
.ft-socials {
  display: flex;
  gap: 10px;
}

.ft-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.ft-social-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
  color: #fff;
}

.ft-social-fb { background: #1877f2; }
.ft-social-x  { background: #14171a; }
.ft-social-wa { background: #25d366; }
.ft-social-tg { background: #229ed9; }
.ft-social-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

/* --- Navigation Blocks --- */
.ft-nav-block {
  padding-top: 4px;
}

.ft-nav-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.ft-nav-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.ft-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ft-nav-list li {
  margin-bottom: 12px;
}

.ft-nav-list a {
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ft-nav-list a::before {
  content: '›';
  font-size: 1.1rem;
  color: var(--green);
  line-height: 1;
  transition: transform 0.2s;
}

.ft-nav-list a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* --- Trust Cards --- */
.ft-trust-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ft-trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 12px 14px;
  transition: background 0.2s;
}

.ft-trust-card:hover {
  background: rgba(255,255,255,0.07);
}

.ft-trust-card i {
  font-size: 1.1rem;
  color: var(--green);
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}

.ft-trust-title {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1.2;
}

.ft-trust-sub {
  display: block;
  font-size: 0.7rem;
  color: #475569;
  margin-top: 2px;
}

/* --- Bottom Bar --- */
.ft-bottom-bar {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 0;
}

.ft-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.ft-bottom-inner p {
  font-size: 0.78rem;
  color: #475569;
  margin: 0;
}

.ft-bottom-inner strong {
  color: #94a3b8;
}

.ft-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ft-bottom-links a {
  color: #475569;
  font-size: 0.78rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.ft-bottom-links a:hover {
  color: var(--green);
}

.ft-bottom-links span {
  color: #334155;
  font-size: 0.7rem;
}

@media (max-width: 767px) {
  .ft-stat-item { padding: 0 14px; }
  .ft-stat-num { font-size: 1.1rem; }
  .ft-brand-block { padding-right: 0; margin-bottom: 8px; }
  .ft-bottom-inner { flex-direction: column; text-align: center; }
}



/* FLOATING DOWNLOAD BAR */
.float-download-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  padding: 10px 16px 14px;
  pointer-events: none;
}

.float-download-bar__inner {
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.float-download-bar__btn {
  pointer-events: auto;
  background-color: var(--green) !important;
  border: none !important;
  font-size: 1.05rem;
  font-weight: 700;
  gap: 10px;
  text-decoration: none;
}

.float-download-bar__btn:hover {
  color: #fff;
  background-color: var(--green-dark) !important;
}

body.has-float-download footer {
  padding-bottom: 96px;
}

body.has-float-download .social-share {
  position: relative;
  z-index: 1;
}

/* PRELOADER */
#sitePreloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1557b0 0%, #1a73e8 45%, #4285f4 100%);
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

#sitePreloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.matka-loader-container {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.matka-pot-svg {
  width: 80px;
  height: 80px;
  animation: matkaShake 1.8s ease-in-out infinite;
  z-index: 2;
}

.matka-loader-numbers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.l-num {
  position: absolute;
  left: 50%;
  top: 15px;
  transform: translateX(-50%);
  font-family: 'Courier New', Courier, monospace;
  font-weight: 900;
  font-size: 22px;
  color: #ffef31;
  text-shadow: 0 0 8px rgba(255, 239, 49, 0.8), 0 0 3px rgba(26, 115, 232, 0.5);
  opacity: 0;
  animation: floatNumber 2s infinite linear;
}

.ln-1 { animation-delay: 0s; --drift: -30px; }
.ln-2 { animation-delay: 0.3s; --drift: 25px; }
.ln-3 { animation-delay: 0.6s; --drift: -15px; }
.ln-4 { animation-delay: 0.9s; --drift: 35px; }
.ln-5 { animation-delay: 1.2s; --drift: -5px; }
.ln-6 { animation-delay: 1.5s; --drift: 18px; }

@keyframes matkaShake {
  0%, 100% { transform: rotate(0deg) scale(1); }
  20% { transform: rotate(-4deg) scale(1.02); }
  40% { transform: rotate(4deg) scale(1.02); }
  60% { transform: rotate(-2deg); }
  80% { transform: rotate(2deg); }
}

@keyframes floatNumber {
  0% {
    top: 25px;
    opacity: 0;
    transform: translateX(-50%) scale(0.6);
  }
  20% {
    opacity: 1;
    transform: translateX(calc(-50% + var(--drift) * 0.3)) scale(1);
  }
  80% {
    opacity: 1;
  }
  100% {
    top: -50px;
    opacity: 0;
    transform: translateX(calc(-50% + var(--drift))) scale(1.4);
  }
}

.preloader-text {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* CHARTS PAGE STYLES */
.all-charts-page {
  background: var(--gray-bg);
  padding: 0 0 36px;
}

.chart-hero {
  background: linear-gradient(135deg, #0a1128 0%, #152238 100%);
  color: #fff;
  padding: 28px 0 32px;
  position: relative;
  overflow: hidden;
}

.chart-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}

.chart-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  align-items: start;
}

@media (min-width: 992px) {
  .chart-hero-inner {
    grid-template-columns: 1fr minmax(240px, 320px);
    gap: 32px;
  }
}

.chart-hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 8px;
}

.chart-hero-title {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.chart-hero-desc {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  opacity: 0.92;
  max-width: 520px;
}

.chart-hero-aside {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  padding: 16px 18px;
  backdrop-filter: blur(6px);
}

.chart-id-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255,255,255,0.2);
  padding: 8px 12px;
  border-radius: 999px;
}

.chart-id-pill i {
  opacity: 0.95;
}

.chart-hero-note {
  margin: 12px 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  opacity: 0.88;
}

.all-card {
  background: #fff;
  border: 1px solid #e6ecf2;
  border-radius: 14px;
  box-shadow: 0 8px 26px rgba(15, 37, 64, 0.05);
  overflow: hidden;
}

.all-card-title {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green);
  margin: 14px 10px 12px;
}

.all-chart-table {
  width: 100%;
  border-collapse: collapse;
}

.all-chart-table thead {
  background: linear-gradient(90deg, #1557b0, #1a73e8);
}

.all-chart-table thead th {
  background: transparent;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 9px;
  border-right: 1px solid rgba(255,255,255,0.24);
  text-align: center;
}

.all-chart-table thead th:last-child {
  border-right: none;
}

.all-chart-table tbody td {
  padding: 10px 9px;
  border-bottom: 1px solid #edf1f5;
  text-align: center;
  font-size: 0.86rem;
}

.all-chart-table tbody tr:last-child td {
  border-bottom: none;
}

.all-provider {
  text-align: left !important;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 76px;
  background: linear-gradient(90deg, #1557b0, #1a73e8);
  color: #fff;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
  padding: 6px 10px;
  box-shadow: 0 4px 10px rgba(26, 115, 232, 0.25);
}

.all-btn:hover {
  color: #fff;
  filter: brightness(0.96);
}

/* HISTORICAL CHARTS VIEW */
.chart-body {
  padding: 30px 0;
}

.chart-head {
  margin-bottom: 24px;
}

.chart-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid var(--border-green);
}

.panel-chart {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  overflow: hidden;
}

.panel-chart-banner {
  background: linear-gradient(135deg, #1557b0 0%, #1a73e8 100%);
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 16px 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chart-table-scroll {
  overflow-x: auto;
}

.panel-chart-table {
  width: 100%;
  border-collapse: collapse;
}

.panel-chart-table thead th {
  background-color: #f8fafc;
  color: #475569;
  font-weight: 800;
  text-align: center;
  font-size: 0.82rem;
  text-transform: uppercase;
  padding: 12px 14px;
  border-bottom: 2px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
}

.panel-chart-table thead th:last-child {
  border-right: none;
}

.panel-chart-table tbody tr {
  border-bottom: 1px solid #e2e8f0;
}

.panel-chart-table tbody tr:last-child {
  border-bottom: none;
}

.panel-chart-date {
  background-color: #f8fafc;
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  text-align: center;
  padding: 12px;
  border-right: 2px solid #e2e8f0;
  white-space: nowrap;
}

.panel-date-from,
.panel-date-to {
  display: block;
  line-height: 1.3;
}

.panel-date-to {
  font-weight: 500;
  color: #94a3b8;
  font-size: 0.74rem;
  margin-top: 2px;
}

.panel-chart-cell {
  text-align: center;
  padding: 0;
  border-right: 1px solid #e2e8f0;
  vertical-align: middle;
  min-width: 80px;
}

.panel-chart-cell:last-child {
  border-right: none;
}

.panel-chart-cell--closed {
  background-color: #f1f5f9;
}

.panel-sun-mark {
  color: #cbd5e1;
  font-size: 1.4rem;
  font-weight: 800;
}

.panel-cell-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 6px;
  min-height: 72px;
}

.panel-cell-inner--jodi {
  min-height: 48px;
}

.panel-pana-stack {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  font-family: monospace;
}

.panel-pana-digit {
  display: block;
}

.panel-jodi {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
  margin: 2px 0;
}

.panel-jodi.is-hot {
  color: var(--red);
}

/* UTILITY SUBPAGES (ABOUT, PRIVACY, HOW TO PLAY) */
.content-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 38px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
  margin-bottom: 24px;
}

.content-card h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #152321;
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-card h2:first-of-type {
  margin-top: 0;
}

.content-card p, .content-card li {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 14px;
}

.content-card ul, .content-card ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.guide-step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.guide-step-card {
  background: var(--gray-card);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.guide-step-num {
  width: 36px;
  height: 36px;
  background-color: var(--green);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.video-mock-container {
  background: #0f172a;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 720px;
  margin: 24px auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #334155;
}

.video-play-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s;
}

.video-play-overlay:hover {
  transform: scale(1.05);
}

.video-play-btn {
  width: 68px;
  height: 68px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 12px;
  box-shadow: 0 0 20px rgba(26, 115, 232, 0.6);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 991px) {
  section {
    padding: 30px 0;
  }
  .section-title { font-size: 1.4rem; }
  .section-sub { font-size: 0.84rem; margin-bottom: 16px; }

  .navbar-bg {
    padding: 0;
  }

  .navbar {
    padding: 10px 14px;
  }

  #nav {
    background-color: white !important;
    padding: 14px !important;
    left: 0;
    position: absolute;
    width: 100%;
    top: 0;
    border-radius: 10px;
    margin-top: 74px !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  }

  .nav-link.active {
    background-color: transparent !important;
    color: var(--text-mid) !important;
    text-align: left !important;
    display: block;
    padding: 6px 12px !important;
  }

  .nav-link {
    font-size: 15px;
  }

  .nav-link.btn-dl-nav {
    width: fit-content;
    margin-top: 6px;
  }

  .navbar .dropdown-menu.nav-chart-dd {
    position: static;
    float: none;
    width: auto;
    margin-top: 0.25rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: none;
  }

  .hero-copy-wrap {
    min-height: auto;
    padding: 44px 20px 14px;
    align-items: center;
    text-align: center;
  }

  .hero-copy-desc {
    margin: 0 auto 20px;
  }

  .hero-girl-wrap {
    min-height: auto;
    padding-top: 0;
  }

  .lucky-table thead th,
  .winners-tbl thead th {
    white-space: nowrap;
  }

  .faq-left-title { font-size: 1.8rem; }
}

@media(max-width:768px){
  .rates-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .wd-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rate-card {
    padding: 9px 12px 9px 10px;
  }

  .rate-name { font-size: 0.86rem; }
  .rate-ka { font-size: 0.78rem; }
  .rate-amt { font-size: 0.92rem; }

  .wd-title { font-size: 1.45rem; gap: 8px; }
  .wd-title i { font-size: 1.5rem; }
  .wd-subtitle { font-size: 0.84rem; }
  .btn-refresh { font-size: 0.82rem; padding: 7px 12px; border-radius: 10px; }
  .wd-amount { font-size: 1.05rem; }

  .lucky-table thead th,
  .lucky-table tbody td,
  .winners-tbl thead th,
  .winners-tbl tbody td {
    font-size: 0.74rem;
    padding: 10px 9px;
  }

  .market-pill,
  .win-amt {
    font-size: 0.82rem;
  }

  .oc-wrap { gap: 18px; }
  .pana-val { font-size: 0.95rem; }
  .jodi-val { font-size: 0.95rem; }

  .trend-note {
    justify-content: center;
    text-align: center;
  }

  .w-foot {
    justify-content: center;
    text-align: center;
  }

  .game-title { font-size: 0.92rem; }
  .game-num { font-size: 0.9rem; }
  .game-btn-play { font-size: 0.68rem; padding: 5px 13px; }
  .game-btn-chart { font-size: 0.68rem; padding: 5px 8px; }

  .app-section { padding: 54px 22px; }
  .app-section::before { top:-130px; height:170px; }
  .app-section::after { bottom:-120px; height:170px; }
  .app-copy .app-download-title { font-size: 1.8rem; text-align:center !important; }
  .app-copy p { font-size: 0.88rem; text-align:center !important; margin:0 auto 20px; }
  .btn-dl-big { min-width: 300px; font-size: 0.92rem; padding: 10px 24px; }
  .app-phone-wrap { margin: 0 auto; }
  .app-ring { width: 390px; height: 390px; right: 50%; transform: translate(50%, -50%); }
  .app-phone-wrap img { height: 300px; }

  footer {
    padding: 40px 0 18px;
  }

  .faq-left {
    text-align: center;
  }

  .faq-left p {
    margin: 0 auto 24px;
  }

  .ft-brand { font-size: 1.25rem; }

  .ft-tag,
  .ft-links a,
  .ft-info-list p,
  .ft-bottom p,
  .ft-bottom a {
    font-size: 0.86rem;
  }

  .ft-head { font-size: 1rem; }
}

@media(max-width:480px){
  .rates-grid { grid-template-columns: 1fr; gap: 10px; }
  .wd-grid { grid-template-columns: 1fr; }

  .section-title {
    font-size: 1.22rem;
  }

  .feature-row {
    row-gap: 12px !important;
  }
  .feature-item svg {
    height: 44px;
  }
  .feature-title { font-size: 12px; }
  .feature-sub { font-size: 11px; }

  .game-card { padding: 12px; }
  .game-top { gap: 6px; }
  .game-title { font-size: 0.84rem; }
  .game-num { font-size: 0.82rem; margin: 6px 0 7px; }
  .game-btn-play { font-size: 0.64rem; padding: 4px 10px; }
  .game-btn-chart { font-size: 0.63rem; padding: 4px 7px; }

  .rate-card {
    padding: 8px 10px;
  }

  .rate-ico {
    width: 22px;
    height: 22px;
    font-size: 0.63rem;
  }

  .rate-name { font-size: 0.78rem; }
  .rate-right { gap: 9px; }
  .rate-ka, .rate-amt { font-size: 0.78rem; }

  .app-section { padding: 44px 14px; }
  .app-copy .app-download-title { font-size: 1.5rem; text-align: center; }
  .app-copy p { font-size: 0.8rem; text-align: center; }
  .btn-dl-big { min-width: 100%; width: 100%; font-size: 0.94rem; padding: 10px 14px; }
  .app-ring { width: 300px; height: 300px; }
  .app-phone-wrap img { height: 220px; }

  .home-faq-wrap { padding: 22px 0 30px !important; }
  .faq-left-title { font-size: 1.45rem; line-height: 1.15; }
  .faq-left p { font-size: 0.76rem; margin-bottom: 18px; }
  .faq-dl-btn { font-size: 0.76rem; padding: 7px 8px 7px 16px; }
  .faq-dl-btn span { width: 26px; height: 26px; }
  .faq-q { font-size: 0.74rem; padding: 9px 10px; }
  .faq-ico { width: 18px; height: 18px; }
  .faq-ans, .faq-ans.open { font-size: 0.7rem; }

  .lucky-table thead th,
  .winners-tbl thead th {
    font-size: 0.68rem;
    padding: 9px 7px;
  }

  .lucky-table tbody td,
  .winners-tbl tbody td {
    font-size: 0.72rem;
    padding: 9px 7px;
  }

  .oc-wrap { gap: 10px; }
  .pana-val { font-size: 0.82rem; }
  .jodi-val { font-size: 0.82rem; }

  .wd-header { align-items: stretch; flex-direction: column; margin-bottom: 10px; }
  .wd-title { font-size: 1.3rem; gap: 7px; }
  .wd-title i { font-size: 1.2rem; }
  .wd-subtitle { font-size: 0.78rem; line-height: 1.45; }
  .btn-refresh { width: fit-content; font-size: 0.78rem; padding: 6px 10px; }
  .wd-card { padding: 12px; }
  .wd-av { width: 42px; height: 42px; font-size: 0.78rem; }
  .wd-name { font-size: 0.9rem; }
  .wd-method { font-size: 0.75rem; margin-top: 5px; }
  .wd-status { font-size: 0.66rem; padding: 3px 8px; }
  .wd-amount { font-size: 1.05rem; }
  .wd-dur, .wd-time { font-size: 0.72rem; }

  .ft-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* PREMIUM REDESIGNED CHARTS LAYOUT STYLES */

.charts-hub-wrapper {
  padding: 40px 0 60px;
}

.charts-search-filter-section {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(26, 115, 232, 0.1);
  box-shadow: 0 10px 40px rgba(15, 37, 64, 0.04);
  padding: 24px;
  margin-top: -25px;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .charts-search-filter-section {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.search-box-container {
  position: relative;
  flex: 1;
  max-width: 100%;
}

@media (min-width: 768px) {
  .search-box-container {
    max-width: 380px;
  }
}

.search-box-container i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.search-box-container .search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border-radius: 99px;
  border: 2px solid #e2e8f0;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-dark);
  background-color: #fafbfc;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.search-box-container .search-input:focus {
  border-color: var(--green);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.15);
}

.search-box-container .search-input:focus + i {
  color: var(--green);
}

.filter-pill-container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.filter-pill-container::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  white-space: nowrap;
  padding: 10px 20px;
  border-radius: 99px;
  border: 2px solid #e2e8f0;
  background: #ffffff;
  color: var(--text-mid);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover {
  border-color: var(--green-border, #c2dbff);
  color: var(--green);
  background: var(--green-pale);
}

.filter-btn.active {
  background: linear-gradient(135deg, #1557b0 0%, #1a73e8 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.35);
}

.chart-grid-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(226, 232, 240, 0.8);
}

.chart-grid-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chart-grid-title i {
  color: var(--green);
}

.chart-count-badge {
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--green-pale);
  color: var(--green);
  padding: 4px 12px;
  border-radius: 99px;
}

.charts-grid-view {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  transition: opacity 0.3s ease;
}

@media (min-width: 576px) {
  .charts-grid-view {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .charts-grid-view {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* PREMIUM CARDS */
.premium-card-wrapper {
  perspective: 1000px;
  animation: cardFadeIn 0.5s ease forwards;
  opacity: 0;
  transform: translateY(15px);
}

@keyframes cardFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.market-premium-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #edf2f7;
  box-shadow: 0 6px 20px rgba(15, 37, 64, 0.03);
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.market-premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1557b0, #1a73e8, #4285f4);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.market-premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(26, 115, 232, 0.12);
  border-color: rgba(26, 115, 232, 0.2);
}

.market-premium-card:hover::before {
  opacity: 1;
}

.card-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.market-avatar-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  color: #ffffff;
  background: linear-gradient(135deg, #1557b0 0%, #1a73e8 100%);
  box-shadow: 0 4px 10px rgba(26, 115, 232, 0.2);
}

.market-avatar-badge.starline {
  background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
}

.market-avatar-badge.jackpot {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
}

.status-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-badge-premium.live {
  background: #e6fcf5;
  color: #0ca678;
}

.status-badge-premium.live .pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #0ca678;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(12, 166, 120, 0.7);
  animation: badgePulse 1.4s infinite;
}

@keyframes badgePulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(12, 166, 120, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(12, 166, 120, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(12, 166, 120, 0);
  }
}

.market-info-wrap {
  flex: 1;
  margin-bottom: 20px;
}

.market-name-heading {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 6px 0;
  line-height: 1.25;
}

.market-time-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.market-time-desc i {
  color: var(--green);
}

.market-card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.btn-premium-action {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
}

.btn-premium-action.jodi {
  background: var(--green-pale);
  color: var(--green);
}

.btn-premium-action.jodi:hover {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.25);
}

.btn-premium-action.pana {
  background: linear-gradient(135deg, #1557b0 0%, #1a73e8 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.2);
}

.btn-premium-action.pana:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(26, 115, 232, 0.3);
}

.btn-premium-action.jackpot {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.btn-premium-action.jackpot:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(245, 158, 11, 0.3);
}

/* Empty search result styles */
.charts-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 50px 20px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px dashed #e2e8f0;
}

.charts-empty-icon {
  font-size: 3rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  opacity: 0.6;
}

.charts-empty-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 6px;
}

.charts-empty-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 320px;
  margin: 0 auto;
}

/* TODAY'S TOP WINNERS TICKER */
.winners-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--gray-bg) 100%);
  padding: 60px 0;
  overflow: hidden;
}

.winners-ticker-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

/* Add subtle shadow/faders on left and right sides of ticker */
.winners-ticker-wrap::before,
.winners-ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 10;
  pointer-events: none;
}

.winners-ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--gray-bg) 0%, transparent 100%);
}

.winners-ticker-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--gray-bg) 0%, transparent 100%);
}

.winners-ticker-row {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.winners-ticker-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

/* Animations */
.ticker-left .winners-ticker-track {
  animation: scroll-left 160s linear infinite;
}

.ticker-right .winners-ticker-track {
  animation: scroll-right 160s linear infinite;
}

/* Pause scroll on hover */
.winners-ticker-row:hover .winners-ticker-track {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes scroll-right {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* Winner Card Styles */
.winner-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  min-width: 280px;
  transition: all 0.3s ease;
}

.winner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(40, 166, 107, 0.12);
  border-color: rgba(40, 166, 107, 0.2);
}

.winner-av-wrap {
  position: relative;
}

.winner-av {
  width: 45px;
  height: 45px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: white;
  background: var(--green);
  border: 2px solid #ffdf00; /* Golden border for winners */
}

.winner-av.male {
  background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
}

.winner-av.female {
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
}

.winner-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: #ffdf00;
  color: #1e293b;
  border-radius: 50px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.winner-info {
  flex-grow: 1;
}

.winner-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
}

.winner-market {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.winner-market i {
  color: var(--green);
}

.winner-payout {
  text-align: right;
}

.winner-amount {
  font-size: 16px;
  font-weight: 800;
  color: var(--green);
}

.winner-amount-badge {
  font-size: 9px;
  font-weight: 700;
  background: rgba(40, 166, 107, 0.1);
  color: var(--green);
  padding: 2px 6px;
  border-radius: 50px;
  display: inline-block;
  margin-top: 2px;
}

/* WIN NOTIFICATION TOASTS */
#winNotificationContainer {
  position: fixed;
  bottom: 100px;
  left: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.win-toast {
  background: #ffffff;
  border-left: 4px solid #22c55e;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 270px;
  max-width: 320px;
  animation: toastSlideIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards,
             toastFadeOut 0.5s ease-in 3.5s forwards;
  pointer-events: auto;
}

.win-toast-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: #fff;
}

.win-toast-body {
  flex: 1;
  overflow: hidden;
}

.win-toast-name {
  font-size: 0.8rem;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.win-toast-msg {
  font-size: 0.72rem;
  color: #64748b;
  margin-top: 2px;
}

.win-toast-amount {
  font-size: 0.9rem;
  font-weight: 900;
  color: #16a34a;
  white-space: nowrap;
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(-40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes toastFadeOut {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(0.92); }
}

@media (max-width: 576px) {
  #winNotificationContainer {
    left: 10px;
    bottom: 80px;
  }
  .win-toast {
    min-width: 220px;
    max-width: 260px;
  }
}
