/* =============================================
   GLOBAL & RESET
   ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1a3a6b;
  --primary-dark: #0f2347;
  --accent: #e8a000;
  --accent-dark: #c78800;
  --green: #1db954;
  --red: #e53935;
  --white: #ffffff;
  --light-bg: #f0f4ff;
  --card-bg: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted: #6c757d;
  --border: #dee2e6;
  --shadow: 0 4px 18px rgba(26, 58, 107, 0.13);
  --radius: 10px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--light-bg);
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

/* =============================================
   TOP NAV
   ============================================= */
/* =============================================
   NAVBAR - RESPONSIVE
   ============================================= */
.top-nav {
  background: var(--primary-dark);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  min-height: 52px;
  gap: 12px;
}

/* Logo / Brand */
.nav-brand {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-brand:hover { color: #fff; }

/* Nav Links Container */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}

/* Individual Links */
.top-nav-link {
  color: #cdd8f0;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.top-nav-link:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.top-nav-link.active-nav {
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
}

/* My Account Button */
.nav-account-btn {
  color: var(--primary-dark);
  background: var(--accent);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  margin-left: 6px;
}
.nav-account-btn:hover {
  background: #fff;
  color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.nav-account-btn.active-nav {
  background: #fff;
  color: var(--primary-dark);
}

/* Hamburger Button - hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: all 0.3s ease;
}
/* Animate hamburger to X when active */
.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    width: 100%;
    padding: 10px 0 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 4px;
  }

  .nav-menu.open {
    display: flex;
  }

  /* Stack inner container vertically on mobile */
  .nav-inner {
    flex-wrap: wrap;
    padding: 8px 0;
  }

  .top-nav-link {
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    width: 100%;
    justify-content: flex-start;
  }

  .nav-account-btn {
    margin-left: 0;
    margin-top: 6px;
    border-radius: 6px;
    width: 100%;
    justify-content: flex-start;
    padding: 10px 14px;
  }
}


/* =============================================
   HEADER / LOGO
   ============================================= */
.site-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #2a5298 100%);
  border-bottom: 3px solid var(--accent);
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  font-size: 2.4rem;
  color: var(--accent);
  filter: drop-shadow(0 2px 6px rgba(232, 160, 0, 0.5));
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.logo-sub {
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* =============================================
   MARQUEE BAR
   ============================================= */
.marquee-bar {
  background: var(--accent);
  padding: 6px 0;
  overflow: hidden;
}

.marquee-bar marquee {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
}

/* =============================================
   PAGE TITLE SECTION
   ============================================= */
.page-title-section {
  background: linear-gradient(90deg, var(--primary) 0%, #2a5298 100%);
  padding: 18px 0 14px;
  text-align: center;
}

.page-title {
  font-size: clamp(0.95rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.4;
}

.page-subtitle {
  font-size: 13px;
  color: #b8cef0;
  margin: 0;
}

/* =============================================
   SECTION HEADING
   ============================================= */
.section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-bottom: 0;
  border-left: 4px solid var(--accent);
}

.section-heading h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
}

.live-dot {
  width: 10px;
  height: 10px;
  background: #ff3b3b;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.4);
  }
}

/* =============================================
   DOWNLOAD BANNER
   ============================================= */
.download-banner {
  background: linear-gradient(135deg, #1a3a6b, #2a5298);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--white);
}

.btn-download {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 22px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
}

.btn-download:hover {
  background: var(--accent-dark);
  color: var(--primary-dark);
  transform: translateY(-1px);
}

/* =============================================
   ADVERTISER CARDS
   ============================================= */
.ad-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #d0daf0;
  height: 100%;
}

.ad-card-wide .ad-card-body .ad-desc {
  max-width: 700px;
}

.ad-card-header {
  background: linear-gradient(90deg, var(--primary), #2a5298);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 16px;
  display: flex;
  align-items: center;
}

.ad-card-body {
  padding: 14px 16px;
}

.ad-subtitle {
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
  margin-bottom: 6px;
}

.ad-desc {
  font-size: 13px;
  color: #444;
  margin-bottom: 8px;
  line-height: 1.5;
}

.ad-phone {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.ad-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 6px;
  transition: background 0.2s;
}

.btn-wa:hover {
  background: #1ebe5d;
  color: #fff;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 6px;
  transition: background 0.2s;
}

.btn-call:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* =============================================
   RESULT CARDS
   ============================================= */
.result-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 16px 12px 14px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

.result-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26, 58, 107, 0.18);
}

.result-card.announced {
  border-color: var(--green);
  background: linear-gradient(160deg, #fff 70%, #e8fff2 100%);
}

.result-card.pending {
  border-color: #ccc;
  background: linear-gradient(160deg, #fff 70%, #f5f5f5 100%);
}

.result-game {
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.result-time {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.result-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.result-card.announced .result-number {
  color: var(--green);
  text-shadow: 0 2px 8px rgba(29, 185, 84, 0.2);
}

.result-card.pending .result-number {
  color: #aaa;
}

.result-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-live {
  background: #e8fff2;
  color: var(--green);
  border: 1px solid var(--green);
}

.badge-pending {
  background: #f5f5f5;
  color: #999;
  border: 1px solid #ccc;
}

/* =============================================
   CHART TABLE
   ============================================= */
.chart-table-wrapper {
  overflow-x: auto;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
}

.chart-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  min-width: 400px;
}

.chart-table thead tr {
  background: var(--primary);
  color: var(--white);
}

.chart-table thead th {
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  border: none;
}

.chart-table thead th:first-child {
  text-align: left;
}

.chart-table tbody tr {
  border-bottom: 1px solid #e8edf5;
  transition: background 0.15s;
}

.chart-table tbody tr:hover {
  background: #f0f4ff;
}

.chart-table tbody tr:nth-child(even) {
  background: #f8faff;
}

.chart-table tbody tr:nth-child(even):hover {
  background: #e8edf5;
}

.chart-table td {
  padding: 10px 16px;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
}

.chart-table td:first-child {
  text-align: left;
}

.game-name {
  font-weight: 700;
  color: var(--primary);
  font-size: 13px;
  letter-spacing: 0.3px;
}

.num-old {
  font-weight: 700;
  color: #888;
  font-size: 1.1rem;
}

.num-new {
  font-weight: 900;
  color: var(--green);
  font-size: 1.3rem;
}

.pending-num {
  color: #bbb;
}

/* =============================================
   CHART LINK CARDS
   ============================================= */
.chart-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--card-bg);
  border: 2px solid #d0daf0;
  border-radius: var(--radius);
  padding: 16px 10px;
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  transition: all 0.2s;
  box-shadow: var(--shadow);
  height: 100%;
}

.chart-link-card i {
  font-size: 1.5rem;
  color: var(--accent);
}

.chart-link-card:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.chart-link-card:hover i {
  color: var(--accent);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--primary-dark);
  color: #b8cef0;
  padding: 40px 0 20px;
  margin-top: 30px;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 13px;
  color: #8aa0c8;
  line-height: 1.6;
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 6px;
  display: inline-block;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #8aa0c8;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact {
  font-size: 13px;
  color: #8aa0c8;
  margin-bottom: 6px;
}

.footer-divider {
  border-color: #2a4070;
  margin: 20px 0 14px;
}

.footer-copy {
  font-size: 12px;
  color: #5a7aaa;
}

/* =============================================
   RESPONSIVE TWEAKS
   ============================================= */
@media (max-width: 576px) {
  .logo-main {
    font-size: 1.4rem;
  }

  .logo-icon {
    font-size: 1.8rem;
  }

  .result-number {
    font-size: 1.8rem;
  }

  .page-title {
    font-size: 0.9rem;
  }

  .section-heading h2 {
    font-size: 0.88rem;
  }

  .chart-table td,
  .chart-table th {
    padding: 8px 10px;
  }
}

@media (max-width: 768px) {
  .ad-buttons {
    flex-direction: column;
  }

  .btn-wa,
  .btn-call {
    justify-content: center;
  }
}

/* =============================================


/* =============================================
   LOGO ANCHOR (make logo clickable without underline)
   ============================================= */
.logo-anchor {
  text-decoration: none;
}

/* =============================================
   TODAY RESULT HERO
   ============================================= */
.today-result-hero {
  background: linear-gradient(135deg, var(--primary-dark), #2a5298);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 30px 20px;
  box-shadow: var(--shadow);
}

.hero-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-number {
  font-size: 5rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 4px 20px rgba(29, 185, 84, 0.35);
  letter-spacing: 4px;
}

.hero-number.pending-num {
  color: #888;
  text-shadow: none;
}

.hero-time {
  font-size: 13px;
  color: #b8cef0;
  margin-bottom: 10px;
}

/* =============================================
   YEAR LINK BUTTONS
   ============================================= */
.year-link-btn {
  display: block;
  text-align: center;
  background: var(--card-bg);
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 6px;
  transition: all 0.2s;
}

.year-link-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* =============================================
   CHART TABS (satta-chart.html)
   ============================================= */
.chart-tabs {
  border-bottom: 2px solid var(--primary);
}

.chart-tabs .nav-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  border: 1px solid transparent;
  border-radius: 6px 6px 0 0;
  padding: 8px 16px;
}

.chart-tabs .nav-link.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.chart-tabs .nav-link:hover:not(.active) {
  background: #e8edf5;
  border-color: #d0daf0;
}

/* game name links inside chart table */
.chart-table td a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.chart-table td a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-info-card,
.contact-form-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid #d0daf0;
  height: 100%;
}

.contact-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
  font-weight: 600;
}

.contact-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: none;
}

.contact-value:hover {
  color: var(--accent-dark);
}

.contact-form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
}

.contact-input {
  border: 1.5px solid #d0daf0;
  border-radius: 6px;
  font-size: 14px;
  padding: 9px 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 58, 107, 0.1);
  outline: none;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* =============================================
   DYNAMIC HOME SECTIONS
   ============================================= */
.next-update-section {
  background: linear-gradient(180deg, rgba(26, 58, 107, 0.05) 0%, rgba(26, 58, 107, 0) 100%);
  border-bottom: 1px solid #d0daf0;
}

.live-banner {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  padding: 15px;
  border-radius: 12px;
  border: 1.5px dashed var(--accent);
  display: inline-block;
  min-width: 300px;
}

.pulse-badge {
  animation: pulse-red 1.5s infinite;
  box-shadow: 0 0 0 rgba(229, 57, 53, 0.4);
  vertical-align: middle;
  padding: 4px 10px;
  font-size: 11px;
}

@keyframes pulse-red {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(229, 57, 53, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 57, 53, 0); }
}

.btn-guessing-hero {
  background: linear-gradient(135deg, #ff8c00 0%, #ff4500 100%);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  padding: 14px 20px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(255, 69, 0, 0.35);
  transition: all 0.3s ease;
  border: 3px solid #fff;
}

.btn-guessing-hero:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(255, 69, 0, 0.5);
  color: #fff;
}

.btn-chart-small {
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-chart-small:hover {
  background: var(--accent);
  color: var(--primary-dark);
}

.result-card .result-badge {
  position: absolute;
  top: 10px;
  right: 10px;
}

.upcoming-alert {
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* =============================================
   RECORD ZONES (JODI & PENAL)
   ============================================= */
/* =============================================
   RECORD ZONES (JODI & PENAL)
   ============================================= */
.record-zone {
  margin-top: 2rem;
}

.zone-heading-jodi {
  background: linear-gradient(90deg, #b8860b, #daa520) !important;
}

.zone-heading-penal {
  background: linear-gradient(90deg, #1a1a2e, #1a3a6b) !important;
}

.zone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* JODI GRID (smaller cards) */
.jodi-grid {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.zone-card {
  background: var(--card-bg);
  border: 1px solid #d0daf0;
  border-radius: var(--radius);
  padding: 12px 10px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-decoration: none;
  flex: 1;
}

.zone-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.15);
}

.jodi-card {
  border: 1px dashed #daa520;
}

.penal-pair-card {
    display: flex;
    gap: 10px;
    background: rgba(26, 58, 107, 0.03);
    padding: 10px;
    border-radius: 12px;
    border: 1px dashed rgba(26, 58, 107, 0.2);
}

.penal-card-inner {
    border: 1px solid #e2e8f0;
    min-width: 120px;
}

.zone-name {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.zone-number {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary-dark);
  letter-spacing: 1px;
}

.jodi-card .zone-number {
  color: #b8860b;
}

.penal-card-inner .zone-number {
  color: var(--primary);
}

@media (max-width: 576px) {
  .zone-grid {
    grid-template-columns: 1fr;
  }
  
  .jodi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .penal-pair-card {
    flex-wrap: wrap;
  }

  .penal-card-inner {
    width: 100%;
  }

  .zone-number {
    font-size: 1.25rem;
  }
}

/* =============================================
   GAME LIST BOXES
   ============================================= */
.game-list-section {
  background: var(--card-bg);
  border: 1px solid #d0daf0;
  border-radius: var(--radius);
  padding: 15px;
}

.list-heading {
  border-bottom: 2px solid var(--accent);
  margin-bottom: 15px;
  padding-bottom: 8px;
}

.list-heading h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0;
}

.game-box-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}

.game-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 8px 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  transition: all 0.2s;
  text-decoration: none;
}

.game-box:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 58, 107, 0.15);
}

@media (max-width: 576px) {
  .game-box-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   INNER PAGES (CONTACT & CHART)
   ============================================= */
.inner-page-header {
  background: linear-gradient(135deg, #000 0%, #111 100%);
  border-bottom: 3px solid var(--accent);
  padding: 50px 0 35px;
  text-align: center;
}

.inner-page-title {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
  font-size: 1.8rem;
}

.inner-page-subtitle {
  color: #fff;
  opacity: 0.7;
  font-size: 1.1rem;
}

/* Styled Breadcrumb */
.inner-page-header .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  justify-content: center;
  gap: 4px;
}

.inner-page-header .breadcrumb-item {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.inner-page-header .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.inner-page-header .breadcrumb-item a:hover {
  color: var(--accent);
}

.inner-page-header .breadcrumb-item.active {
  color: var(--accent);
  font-weight: 700;
}

/* Custom separator: › */
.inner-page-header .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: rgba(255, 255, 255, 0.35);
  font-size: 16px;
  line-height: 1;
  padding: 0 4px;
}


.contact-info-card, .contact-form-card {
  background: var(--white);
  border: 1px solid #d0daf0;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 25px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  padding-bottom: 5px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-icon {
  background: var(--primary);
  color: #fff;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-label {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.contact-value {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-value:hover {
  color: var(--accent-dark);
}

.premium-input {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 15px;
  color: var(--primary-dark);
  font-weight: 500;
  transition: all 0.2s;
}

.premium-input:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(218, 165, 32, 0.1);
  outline: none;
}

/* Chart Specific Table Polish */
.chart-table-v2 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 2px solid var(--accent);
  border-radius: 12px;
  overflow: hidden;
}

.chart-table-v2 thead th {
  background: var(--primary-dark);
  color: var(--accent);
  padding: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.chart-table-v2 tbody td {
  padding: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-weight: 600;
}

.chart-table-v2 tbody tr:nth-child(even) td {
  background: #fdfdfd;
}

.chart-table-v2 .date-col {
  background: #000 !important;
  color: var(--accent);
  font-weight: 800;
}

/* =============================================
   GLOBAL PREMIUM UI TOKENS
   ============================================= */
.premium-card-dark {
  background: #0d0d1a;
  border: 1px solid rgba(218, 165, 32, 0.3);
  border-radius: 12px;
  overflow: hidden;
}

/* Ensure headings & labels inside dark cards are visible */
.premium-card-dark .contact-card-title {
  color: var(--accent);
}

.premium-card-dark .contact-label {
  color: rgba(255, 255, 255, 0.7);
}

.premium-card-dark p {
  color: rgba(255, 255, 255, 0.55);
}


.premium-card-light {
  background: var(--white);
  border: 1px solid #d0daf0;
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.premium-input-field {
  background: #1e1e2e !important;
  border: 2px solid #3a3a50 !important;
  border-radius: 8px !important;
  padding: 12px 15px !important;
  color: #fff !important;
  width: 100%;
  font-size: 14px;
  transition: all 0.2s ease;
}

.premium-input-field::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

.premium-input-field:focus {
  border-color: var(--accent) !important;
  background: #252540 !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.15) !important;
  color: #fff !important;
}

/* Fix browser autofill overriding background color */
.premium-input-field:-webkit-autofill,
.premium-input-field:-webkit-autofill:hover,
.premium-input-field:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #1e1e2e inset !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
}


.premium-button-gold {
  background: var(--accent);
  color: #000;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.premium-button-gold:hover {
  background: var(--accent-dark);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(218, 165, 32, 0.4);
}

/* =============================================
   GUESSING FORUM STYLES
   ============================================= */
.forum-stats-card {
  background: #000;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s;
}

.forum-stats-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.forum-stats-val {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 5px;
}

.guess-item-premium {
  background: #000;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 15px;
  transition: border-color 0.2s;
  margin-bottom: 15px;
}

.guess-item-premium:hover {
  border-color: var(--accent);
}

.guess-number-glow {
  background: var(--accent);
  color: #000;
  font-size: 1.5rem;
  font-weight: 900;
  padding: 5px 15px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(218, 165, 32, 0.4);
}

.forum-sidebar-card {
  background: var(--white);
  border: 1px solid #d0daf0;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
}

.forum-sidebar-header {
  background: rgba(26, 58, 107, 0.05);
  padding: 12px 15px;
  border-bottom: 1px solid #e2e8f0;
}

.forum-sidebar-header h5 {
  margin: 0;
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary-dark);
}

.custom-forum-scrollbar::-webkit-scrollbar {
  width: 6px;
}

.custom-forum-scrollbar::-webkit-scrollbar-track {
  background: #000;
}

.custom-forum-scrollbar::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

@media (max-width: 768px) {
  .forum-stats-val {
    font-size: 1.5rem;
  }
}

/* =============================================
   PREMIUM LIVE UPDATE PANEL (Black & Gold)
   ============================================= */
.live-info-panel {
    background: linear-gradient(135deg, rgba(15, 35, 71, 0.98) 0%, rgba(10, 20, 50, 1) 100%);
    border: 2px solid #d4af37;
    border-radius: 24px;
    padding: 30px 25px;
    margin: 25px auto;
    max-width: 800px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.live-info-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.25);
}

.live-info-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #fcf6ba, #d4af37, #fcf6ba, #d4af37);
    background-size: 200% auto;
    animation: shine-border 3s linear infinite;
}

@keyframes shine-border {
    to { background-position: 200% center; }
}

.live-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge-live-red-premium {
    background: linear-gradient(to right, #e53935, #ff5252);
    color: #fff;
    padding: 6px 16px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 20px rgba(229, 57, 53, 0.6);
    animation: pulse-live-glow 2s infinite;
}

@keyframes pulse-live-glow {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.7); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(229, 57, 53, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(229, 57, 53, 0); }
}

.live-game-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.live-game-title .res-num {
    color: #d4af37;
    font-size: 1.8rem;
    padding: 0 10px;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
    animation: bounce-glow 2s infinite ease-in-out;
}

@keyframes bounce-glow {
    0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6)); }
    50% { transform: translateY(-3px); filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.9)); }
}

.digital-clock-outer {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    display: inline-flex;
    flex-direction: column;
    padding: 12px 30px;
    margin: 10px 0 25px;
}

.clock-label {
    font-size: 0.75rem;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 5px;
}

.clock-time-premium {
    font-family: 'Courier New', Courier, monospace;
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.historical-update-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 15px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.hist-side-label {
    font-size: 0.9rem;
    color: #8aa0c8;
    font-weight: 600;
}

.hist-game-val {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}

.hist-res-box {
    background: #1a3a6b;
    color: #fff;
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.upcoming-premium-row {
    margin-top: 25px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-radius: 12px;
    padding: 15px 20px;
    border-right: 4px solid #d4af37;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.next-up-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.next-ico {
    color: #d4af37;
    font-size: 1.2rem;
}

.next-txt-y {
    color: #d4af37;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.next-game-nm {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.wait-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wait-badge-gold {
    background: #d4af37;
    color: #000;
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.wait-pulse-text {
    font-weight: 700;
    color: #ff5252;
    font-size: 0.95rem;
    animation: flash-text 1s infinite;
}

@keyframes flash-text {
    50% { opacity: 0.5; }
}

/* =============================================
   COMBINED PANEL RESULTS (Table & Grid)
   ============================================= */
.combined-res-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.cell-sub-val {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    width: 100%;
    display: block;
}

.cell-val-open {
    color: var(--primary);
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.cell-val-close {
    color: var(--green);
}

.table-time-stacked {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.2;
}

.time-open { font-weight: 700; color: var(--primary-dark); }
.time-close { font-weight: 600; }

/* Responsive tweaks for combined table */
@media (max-width: 768px) {
    .chart-table th:nth-child(3), 
    .chart-table td:nth-child(3) {
        display: none; /* Hide Yesterday on small mobile if needed, or keep both results */
    }
}