:root {
  --ink: #1f1d1a;
  --muted: #6f665c;
  --orange: #e86612;
  --orange-strong: #c94f05;
  --cream: #e86612;
  --white: #ffffff;
  --line: rgba(126, 86, 46, 0.16);
  --shadow: 0 18px 42px rgba(95, 60, 25, 0.13);
}

* {
  box-sizing: border-box;
}

img,
svg {
  max-width: 100%;
}

html {
  min-height: 100%;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(232, 102, 18, 0.24), transparent 34rem),
    linear-gradient(180deg, #fffdf9 0%, rgba(232, 102, 18, 0.18) 100%);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.home-shell {
  width: min(100%, 540px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 14px 28px;
  overflow-x: hidden;
}

.top-strip {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  min-height: 96px;
  margin: 0 -14px;
  padding: 12px 14px 10px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 102, 18, 0.58) 38%, rgba(232, 102, 18, 0.94) 100%);
  background-color: #e86612;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(119, 77, 34, 0.08);
  backdrop-filter: blur(14px);
}

.header-row {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo-space {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
}

.site-logo {
  display: block;
  width: 50px;
  height: 50px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 0;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
  object-fit: cover;
  object-position: center;
}

.logo-text {
  overflow: hidden;
  max-width: 120px;
  color: #2b2520;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.contact-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 16px;
  border: 1px solid rgba(217, 103, 25, 0.24);
  border-radius: 8px;
  background: #ffffff;
  color: #9a4a12;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(154, 74, 18, 0.14);
}

.news-ticker {
  --ticker-gap: 38px;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(232, 102, 18, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #6f3712;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: var(--ticker-gap);
  padding: 8px 0;
  animation: ticker-slide 32s linear infinite;
  will-change: transform;
}

.ticker-track span {
  display: inline-block;
}

@keyframes ticker-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - (var(--ticker-gap) / 2)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation-duration: 80s;
  }
}

.official-flow-strip {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 56px;
  place-items: center;
  overflow: hidden;
  margin: 10px -14px 0;
  border-top: 1px solid rgba(232, 102, 18, 0.24);
  border-bottom: 1px solid rgba(145, 74, 20, 0.2);
  background:
    radial-gradient(ellipse at 12% 120%, rgba(255, 255, 255, 0.74) 0 15%, transparent 44%),
    radial-gradient(ellipse at 72% -45%, rgba(232, 102, 18, 0.58) 0 20%, transparent 54%),
    radial-gradient(ellipse at 102% 92%, rgba(174, 75, 14, 0.28) 0 18%, transparent 46%),
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 102, 18, 0.58) 38%, rgba(232, 102, 18, 0.94) 100%);
  background-size: 210px 82px, 260px 86px, 190px 74px, 100% 100%;
  box-shadow:
    inset 0 15px 20px rgba(255, 255, 255, 0.48),
    inset 0 -18px 24px rgba(154, 74, 18, 0.2),
    0 10px 22px rgba(119, 77, 34, 0.08);
  animation: ocean-base 6.5s ease-in-out infinite alternate;
}

.official-flow-strip::before,
.official-flow-strip::after {
  position: absolute;
  inset: -65% -30%;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.official-flow-strip::before {
  background:
    radial-gradient(ellipse at 8% 46%, rgba(255, 255, 255, 0.62) 0 12%, transparent 36%),
    radial-gradient(ellipse at 29% 63%, rgba(232, 102, 18, 0.38) 0 10%, transparent 34%),
    radial-gradient(ellipse at 54% 41%, rgba(255, 255, 255, 0.48) 0 13%, transparent 38%),
    radial-gradient(ellipse at 83% 58%, rgba(204, 80, 10, 0.44) 0 12%, transparent 40%),
    radial-gradient(ellipse at 101% 42%, rgba(255, 255, 255, 0.46) 0 10%, transparent 34%);
  background-size: 170px 58px, 215px 72px, 188px 64px, 236px 76px, 150px 54px;
  filter: blur(1px);
  opacity: 0.9;
  transform: rotate(-5deg) translate3d(0, 0, 0);
  animation: ocean-swell 5.5s ease-in-out infinite alternate;
}

.official-flow-strip::after {
  background:
    radial-gradient(ellipse at 16% 28%, transparent 0 29%, rgba(255, 255, 255, 0.38) 30% 33%, transparent 35%),
    radial-gradient(ellipse at 47% 75%, transparent 0 27%, rgba(232, 102, 18, 0.24) 28% 32%, transparent 34%),
    radial-gradient(ellipse at 78% 36%, transparent 0 30%, rgba(126, 55, 8, 0.13) 31% 35%, transparent 37%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(232, 102, 18, 0.24) 52%, rgba(125, 57, 13, 0.16));
  background-size: 180px 74px, 230px 82px, 200px 68px, 100% 100%;
  opacity: 0.82;
  transform: translate3d(0, 0, 0) skewX(-8deg);
  animation: ocean-ripple 4.2s ease-in-out infinite alternate-reverse;
}

.official-flow-strip span {
  position: relative;
  z-index: 1;
  padding: 0 14px;
  color: #5a2607;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8),
    0 8px 16px rgba(117, 53, 9, 0.18);
}

@keyframes ocean-base {
  from {
    background-position: 0 0, 40px -8px, -32px 10px, 0 0;
  }

  to {
    background-position: 48px -10px, -36px 12px, 26px -8px, 0 0;
  }
}

@keyframes ocean-swell {
  from {
    background-position: 0 0, 38px 8px, 86px -7px, 16px 12px, 52px -5px;
    transform: translate3d(-16px, -3px, 0) rotate(-5deg) scale(1.04);
  }

  to {
    background-position: 112px 16px, -54px -6px, 14px 10px, 128px -12px, -34px 8px;
    transform: translate3d(18px, 3px, 0) rotate(-3deg) scale(1.08);
  }
}

@keyframes ocean-ripple {
  from {
    background-position: 10px 0, -36px 12px, 72px -8px, 0 0;
    transform: translate3d(-10px, 1px, 0) skewX(-8deg) scale(1.04);
  }

  to {
    background-position: 96px 11px, 52px -10px, -24px 13px, 0 0;
    transform: translate3d(13px, -1px, 0) skewX(-5deg) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .official-flow-strip::before,
  .official-flow-strip::after,
  .live-wait-badge {
    animation-duration: 14s;
  }
}

.live-result-section {
  display: grid;
  gap: 10px;
  color: #000000;
  margin: 10px -14px 0;
  padding: 14px 14px 16px;
  border-top: 1px solid rgba(232, 102, 18, 0.24);
  border-bottom: 1px solid rgba(145, 74, 20, 0.22);
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 102, 18, 0.58) 38%, rgba(232, 102, 18, 0.94) 100%);
  box-shadow:
    inset 0 12px 18px rgba(255, 255, 255, 0.42),
    inset 0 -16px 22px rgba(154, 74, 18, 0.18),
    0 10px 22px rgba(119, 77, 34, 0.08);
}

.live-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #000000;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
}

.live-meta time {
  min-width: 0;
  white-space: nowrap;
}

.live-message {
  margin: 2px 0 0;
  color: #000000;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.live-result-section h2 {
  margin: 2px 0 0;
  color: #000000;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
}

.live-number {
  margin: -2px 0 0;
  color: #000000;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  display: grid;
  min-height: 58px;
  place-items: center;
}

.live-wait-badge {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, #ffffff 0%, #ffd68a 16%, #e86612 50%, #2b1300 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
  box-shadow:
    0 0 0 4px rgba(255, 187, 76, 0.18),
    0 0 18px rgba(255, 127, 28, 0.76),
    inset 0 4px 9px rgba(255, 255, 255, 0.44),
    inset 0 -8px 14px rgba(0, 0, 0, 0.28);
  animation: liveWaitFlash 0.95s ease-in-out infinite;
}

@keyframes liveWaitFlash {
  0%,
  100% {
    filter: brightness(1);
    transform: scale(1);
  }

  50% {
    filter: brightness(1.28);
    transform: scale(1.08);
  }
}

.market-result-section {
  display: grid;
  place-items: center;
  gap: 6px;
  margin: 10px -14px 0;
  padding: 15px 14px 17px;
  background: #e86612;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: 1px solid rgba(145, 74, 20, 0.16);
  box-shadow:
    inset 0 14px 18px rgba(255, 255, 255, 0.2),
    inset 0 -16px 20px rgba(145, 74, 20, 0.12),
    0 10px 22px rgba(119, 77, 34, 0.08);
}

.market-result-section h2,
.market-time,
.market-score {
  margin: 0;
  color: #ffffff;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-shadow: 0 3px 10px rgba(104, 47, 4, 0.22);
}

.market-result-section h2 {
  font-size: 20px;
  letter-spacing: 0;
}

.market-time {
  font-size: 15px;
}

.market-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 38px;
  font-size: 34px;
}

.market-score .live-wait-badge {
  width: 44px;
  height: 44px;
  border-width: 2px;
  font-size: 10px;
}

.market-score span[aria-hidden="true"] {
  display: inline-grid;
  min-width: 34px;
  place-items: center;
  color: #ffffff;
  font-size: 42px;
  font-weight: 900;
  line-height: 0.85;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.24),
    0 0 12px rgba(255, 255, 255, 0.36);
  transform: scaleX(1.22);
}

.telegram-section {
  display: grid;
  gap: 14px;
  margin: 10px -14px 0;
  padding: 16px 14px 18px;
  justify-items: center;
  border-top: 1px solid rgba(232, 102, 18, 0.24);
  border-bottom: 1px solid rgba(145, 74, 20, 0.22);
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 102, 18, 0.58) 38%, rgba(232, 102, 18, 0.94) 100%);
  box-shadow:
    inset 0 12px 18px rgba(255, 255, 255, 0.42),
    inset 0 -16px 22px rgba(154, 74, 18, 0.18),
    0 10px 22px rgba(119, 77, 34, 0.08);
}

.telegram-section p {
  max-width: 32rem;
  margin: 0;
  color: #000000;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.telegram-button {
  position: relative;
  display: flex;
  width: min(100%, 236px);
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 7px 14px 7px 58px;
  border-radius: 999px;
  background: #2da8df;
  color: #111111;
  line-height: 1;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.14),
    0 12px 24px rgba(34, 97, 126, 0.28);
}

.telegram-bubble {
  position: absolute;
  display: grid;
  place-items: center;
  left: -2px;
  top: 50%;
  width: 56px;
  height: 56px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 0 0 2px rgba(31, 112, 151, 0.26),
    0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%);
}

.telegram-bubble::after {
  content: none;
}

.telegram-logo {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: block;
}

.telegram-copy {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  justify-items: start;
  gap: 3px;
}

.telegram-title,
.telegram-subtitle {
  display: block;
  color: #111111;
  text-align: left;
}

.telegram-title {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0;
}

.telegram-subtitle {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.whatsapp-section {
  display: grid;
  gap: 14px;
  margin: 10px -14px 0;
  padding: 16px 14px 18px;
  justify-items: center;
  border-top: 1px solid rgba(232, 102, 18, 0.24);
  border-bottom: 1px solid rgba(145, 74, 20, 0.22);
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 102, 18, 0.58) 38%, rgba(232, 102, 18, 0.94) 100%);
  box-shadow:
    inset 0 12px 18px rgba(255, 255, 255, 0.42),
    inset 0 -16px 22px rgba(154, 74, 18, 0.18),
    0 10px 22px rgba(119, 77, 34, 0.08);
}

.whatsapp-section p {
  max-width: 32rem;
  margin: 0;
  color: #000000;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.whatsapp-button {
  position: relative;
  display: flex;
  width: min(100%, 236px);
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 7px 14px 7px 58px;
  border-radius: 999px;
  background: #00d829;
  color: #111111;
  line-height: 1;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.18),
    0 12px 24px rgba(0, 122, 25, 0.26);
}

.whatsapp-bubble {
  position: absolute;
  display: grid;
  place-items: center;
  left: -2px;
  top: 50%;
  width: 56px;
  height: 56px;
  border: 4px solid #edf5f7;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 0 0 2px rgba(166, 184, 190, 0.58),
    0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%);
}

.whatsapp-bubble::after {
  content: none;
}

.whatsapp-logo {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: block;
}

.whatsapp-copy {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  justify-items: start;
  gap: 3px;
}

.whatsapp-title,
.whatsapp-subtitle {
  display: block;
  text-align: left;
}

.whatsapp-title {
  color: #17331d;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0;
}

.whatsapp-subtitle {
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.ganesh-update-section {
  margin: 10px -14px 0;
  padding: 14px 16px;
  background: #e86612;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  border-bottom: 1px solid rgba(145, 74, 20, 0.18);
  box-shadow:
    inset 0 14px 18px rgba(255, 255, 255, 0.13),
    inset 0 -16px 20px rgba(145, 74, 20, 0.14),
    0 10px 22px rgba(119, 77, 34, 0.08);
}

.ganesh-update-section p {
  max-width: 32rem;
  margin: 0 auto;
  color: #000000;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.ganesh-update-section a {
  color: #ffffff;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.ganesh-update-section span {
  display: block;
  text-align: center;
}

.chart-update-section {
  margin: 10px -14px 0;
  padding: 14px 16px;
  background: #e86612;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  border-bottom: 1px solid rgba(145, 74, 20, 0.18);
  box-shadow:
    inset 0 14px 18px rgba(255, 255, 255, 0.13),
    inset 0 -16px 20px rgba(145, 74, 20, 0.14),
    0 10px 22px rgba(119, 77, 34, 0.08);
}

.chart-update-section p {
  max-width: 32rem;
  margin: 0 auto;
  color: #000000;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.chart-update-section a {
  color: #ffffff;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.chart-update-section span {
  display: block;
  text-align: center;
}

.khaiwal-section {
  display: grid;
  gap: 12px;
  margin: 10px -14px 0;
  padding: 16px 14px 18px;
  justify-items: center;
  border-top: 1px solid rgba(232, 102, 18, 0.24);
  border-bottom: 1px solid rgba(145, 74, 20, 0.22);
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 102, 18, 0.58) 36%, rgba(232, 102, 18, 0.94) 100%);
  box-shadow:
    inset 0 12px 18px rgba(255, 255, 255, 0.42),
    inset 0 -16px 22px rgba(154, 74, 18, 0.2),
    0 10px 22px rgba(119, 77, 34, 0.08);
}

.khaiwal-section p,
.khaiwal-section h2 {
  margin: 0;
}

.khaiwal-intro,
.khaiwal-name {
  color: #000000;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.khaiwal-section h2 {
  color: #000000;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.khaiwal-list {
  display: grid;
  width: min(100%, 330px);
  gap: 7px;
}

.khaiwal-list p {
  color: #000000;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  overflow-wrap: anywhere;
}

.khaiwal-link {
  max-width: 100%;
  color: #0057ff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.result-table-section {
  margin: 10px -14px 0;
  padding: 12px 10px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 102, 18, 0.58) 38%, rgba(232, 102, 18, 0.94) 100%);
  border-top: 1px solid rgba(232, 102, 18, 0.24);
  border-bottom: 1px solid rgba(145, 74, 20, 0.22);
  box-shadow:
    inset 0 12px 18px rgba(255, 255, 255, 0.42),
    inset 0 -16px 22px rgba(154, 74, 18, 0.2),
    0 10px 22px rgba(119, 77, 34, 0.08);
}

.result-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  overflow: hidden;
  border: 2px solid #e86612;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.result-table th,
.result-table td {
  padding: 10px 6px;
  border: 1px solid rgba(87, 36, 5, 0.32);
  color: #000000;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  vertical-align: middle;
  overflow-wrap: anywhere;
}

.result-table thead th,
.result-table tbody th {
  background: #e86612;
}

.result-table tbody th span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 900;
}

.result-table tbody th a {
  color: #000000;
  font-weight: 900;
  text-decoration: none;
  transition: color 160ms ease;
}

.result-table tbody th a:hover,
.result-table tbody th a:focus,
.result-table tbody th a:active {
  color: #ffffff;
}

.result-table .live-wait-badge {
  width: 34px;
  height: 34px;
  border-width: 2px;
  font-size: 9px;
  box-shadow:
    0 0 0 3px rgba(255, 187, 76, 0.15),
    0 0 12px rgba(255, 127, 28, 0.68),
    inset 0 3px 7px rgba(255, 255, 255, 0.4),
    inset 0 -6px 10px rgba(0, 0, 0, 0.25);
}

.result-table thead th:first-child,
.result-table tbody th {
  width: 38%;
}

.result-table thead th:nth-child(2),
.result-table thead th:nth-child(3) {
  width: 31%;
}

.contact-info-section {
  display: grid;
  gap: 10px;
  margin: 10px -14px 0;
  padding: 16px 14px 18px;
  justify-items: center;
  border-top: 1px solid rgba(232, 102, 18, 0.24);
  border-bottom: 1px solid rgba(145, 74, 20, 0.22);
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 102, 18, 0.58) 38%, rgba(232, 102, 18, 0.94) 100%);
  box-shadow:
    inset 0 12px 18px rgba(255, 255, 255, 0.42),
    inset 0 -16px 22px rgba(154, 74, 18, 0.2),
    0 10px 22px rgba(119, 77, 34, 0.08);
}

.contact-info-section p {
  max-width: 32rem;
  margin: 0;
  color: #000000;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.contact-info-section p:first-child,
.contact-info-section p:last-child {
  font-size: 17px;
}

.contact-info-section .contact-note {
  margin-top: 96px;
}

.contact-button-row {
  display: grid;
  gap: 14px;
  justify-items: center;
  width: 100%;
  margin-top: 4px;
}

.record-chart-section {
  display: grid;
  gap: 14px;
  margin: 10px -14px 0;
  padding: 16px 14px 18px;
  background: #e86612;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  border-bottom: 1px solid rgba(145, 74, 20, 0.18);
  box-shadow:
    inset 0 14px 18px rgba(255, 255, 255, 0.13),
    inset 0 -16px 20px rgba(145, 74, 20, 0.14),
    0 10px 22px rgba(119, 77, 34, 0.08);
}

.record-chart-section h2 {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  text-align: center;
}

.record-select-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px 78px;
  gap: 8px;
  width: min(100%, 350px);
  margin: 0 auto;
}

.record-select-row select,
.record-select-row button {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid rgba(79, 35, 5, 0.26);
  border-radius: 8px;
  background: #ffffff;
  color: #000000;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.record-select-row button {
  background: #000000;
  color: #ffffff;
  cursor: pointer;
}

.monthly-chart-section {
  margin: 10px -14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  border-bottom: 1px solid rgba(145, 74, 20, 0.18);
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 102, 18, 0.58) 38%, rgba(232, 102, 18, 0.94) 100%);
  box-shadow:
    inset 0 12px 18px rgba(255, 255, 255, 0.42),
    inset 0 -16px 22px rgba(154, 74, 18, 0.2),
    0 10px 22px rgba(119, 77, 34, 0.08);
}

.monthly-chart-header {
  display: grid;
  min-height: 52px;
  place-items: center;
  padding: 12px 14px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 102, 18, 0.58) 38%, rgba(232, 102, 18, 0.94) 100%);
}

.monthly-chart-header h2 {
  margin: 0;
  color: #000000;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  text-align: center;
}

.monthly-chart-header h2 span {
  display: block;
  margin-top: 4px;
  text-align: center;
}

.monthly-chart-table-wrap {
  width: 100%;
  overflow-x: auto;
  padding: 10px;
  -webkit-overflow-scrolling: touch;
}

.monthly-chart-table {
  width: 100%;
  min-width: 960px;
  border-collapse: collapse;
  table-layout: fixed;
  background: rgba(255, 255, 255, 0.86);
  border: 2px solid #e86612;
}

.monthly-chart-table th,
.monthly-chart-table td {
  min-width: 78px;
  padding: 9px 6px;
  border: 1px solid rgba(87, 36, 5, 0.32);
  color: #000000;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  vertical-align: middle;
  overflow-wrap: anywhere;
}

.monthly-chart-table thead th,
.monthly-chart-table tbody th {
  background: #e86612;
}

.monthly-chart-table thead th:first-child,
.monthly-chart-table tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
  width: 72px;
  min-width: 72px;
}

.monthly-chart-table thead th:first-child {
  z-index: 2;
}

.about-satta-section {
  display: grid;
  grid-template-rows: auto auto;
  margin: 10px -14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  border-bottom: 1px solid rgba(145, 74, 20, 0.18);
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 102, 18, 0.58) 38%, rgba(232, 102, 18, 0.94) 100%);
  box-shadow:
    inset 0 12px 18px rgba(255, 255, 255, 0.32),
    inset 0 -16px 22px rgba(154, 74, 18, 0.16),
    0 10px 22px rgba(119, 77, 34, 0.08);
}

.about-satta-header {
  display: grid;
  width: 100%;
  min-height: 52px;
  place-items: center;
  padding: 12px 14px;
  background: #e86612;
  color: #ffffff;
}

.about-satta-header h2 {
  margin: 0;
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  text-align: center;
}

.about-satta-body {
  display: block;
  width: 100%;
  padding: 16px 14px 18px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 102, 18, 0.58) 38%, rgba(232, 102, 18, 0.94) 100%);
}

.about-satta-body p {
  max-width: 32rem;
  margin: 0 auto;
  color: #000000;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}

.policy-shell {
  padding-bottom: 0;
  background:
    linear-gradient(180deg, rgba(255, 247, 235, 0) 0%, rgba(232, 102, 18, 0.07) 100%);
}

.policy-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  margin: 14px -14px 0;
  padding: 28px 16px 30px;
  border-top: 1px solid rgba(255, 220, 128, 0.28);
  border-bottom: 4px solid #f3c66d;
  background-color: #120a06;
  background:
    linear-gradient(135deg, rgba(255, 239, 184, 0.18) 0%, rgba(255, 239, 184, 0) 32%),
    linear-gradient(225deg, rgba(232, 102, 18, 0.32) 0%, rgba(232, 102, 18, 0) 42%),
    linear-gradient(180deg, #241207 0%, #120a06 58%, #050302 100%);
  background-color: #120a06;
  color: #ffffff;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 14px 28px rgba(74, 36, 12, 0.18);
}

.policy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 220, 128, 0.14) 50%, transparent 100%);
  pointer-events: none;
}

.policy-kicker {
  position: relative;
  margin: 0;
  color: #ffdc80;
  font-size: 12px;
  font-weight: 1000;
  line-height: 1.2;
}

.policy-hero h1 {
  position: relative;
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-size: clamp(32px, 10vw, 46px);
  font-weight: 1000;
  line-height: 1;
  overflow-wrap: anywhere;
}

.policy-hero p:not(.policy-kicker) {
  position: relative;
  max-width: 30rem;
  margin: 0 auto;
  color: #ffe7a8;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
}

.policy-intro {
  margin: 12px -14px 0;
  padding: 16px 14px;
  background-color: #e86612;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 102, 18, 0.58) 38%, rgba(232, 102, 18, 0.94) 100%);
  background-color: #e86612;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 10px 20px rgba(126, 62, 16, 0.12);
}

.policy-intro p {
  max-width: 32rem;
  margin: 0 auto;
  color: #000000;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.5;
}

.policy-card {
  overflow: hidden;
  margin: 12px -14px 0;
  padding: 0;
  background: #fff8ec;
  border-top: 1px solid rgba(232, 102, 18, 0.38);
  border-bottom: 1px solid rgba(106, 57, 16, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 12px 24px rgba(86, 48, 16, 0.11);
}

.policy-card h2 {
  margin: 0;
  padding: 12px 14px;
  background-color: #e86612;
  background: #e86612;
  color: #ffffff;
  font-size: 18px;
  font-weight: 1000;
  line-height: 1.2;
  text-align: center;
}

.policy-card p,
.policy-card ul {
  max-width: 32rem;
  margin-right: auto;
  margin-left: auto;
}

.policy-card p {
  margin-top: 0;
  margin-bottom: 0;
  padding: 14px 14px 0;
  color: #000000;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.55;
  text-align: center;
  overflow-wrap: anywhere;
}

.policy-card p:last-child {
  padding-bottom: 16px;
}

.policy-card ul {
  display: grid;
  gap: 10px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 14px 24px 16px 34px;
  color: #000000;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.policy-card li::marker {
  color: #e86612;
}

.policy-card strong {
  font-weight: 1000;
}

.policy-card a {
  color: #0b57d0;
  font-weight: 1000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-mail-panel {
  display: grid;
  gap: 8px;
  justify-items: center;
  margin: 12px -14px 0;
  padding: 18px 14px;
  border-top: 1px solid rgba(232, 102, 18, 0.26);
  border-bottom: 1px solid rgba(106, 57, 16, 0.16);
  background-color: #e86612;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 102, 18, 0.58) 38%, rgba(232, 102, 18, 0.94) 100%);
  background-color: #e86612;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 12px 24px rgba(86, 48, 16, 0.08);
}

.contact-mail-label {
  margin: 0;
  color: #000000;
  font-size: 13px;
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
}

.contact-mail-link {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  padding: 11px 12px;
  border: 1px solid rgba(255, 230, 168, 0.58);
  border-radius: 8px;
  background-color: #120a06;
  background:
    linear-gradient(180deg, #241207 0%, #120a06 100%);
  background-color: #120a06;
  color: #ffdc80;
  font-size: 15px;
  font-weight: 1000;
  line-height: 1.2;
  text-align: center;
  overflow-wrap: anywhere;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 10px 18px rgba(0, 0, 0, 0.2);
}

.contact-form-card {
  overflow: hidden;
  margin: 12px -14px 0;
  background: #fff8ec;
  border-top: 1px solid rgba(232, 102, 18, 0.38);
  border-bottom: 1px solid rgba(106, 57, 16, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 12px 24px rgba(86, 48, 16, 0.11);
}

.contact-form-card h2 {
  margin: 0;
  padding: 12px 14px;
  background-color: #e86612;
  background: #e86612;
  color: #ffffff;
  font-size: 18px;
  font-weight: 1000;
  line-height: 1.2;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 13px;
  max-width: 32rem;
  margin: 0 auto;
  padding: 16px 14px 18px;
}

.contact-field {
  display: grid;
  gap: 7px;
}

.contact-field label {
  color: #000000;
  font-size: 13px;
  font-weight: 1000;
  line-height: 1.2;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(126, 86, 46, 0.22);
  border-radius: 8px;
  background: #ffffff;
  color: #000000;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 16px rgba(86, 48, 16, 0.07);
}

.contact-field input {
  min-height: 44px;
  padding: 0 12px;
}

.contact-field textarea {
  min-height: 126px;
  padding: 12px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: #e86612;
  box-shadow:
    0 0 0 3px rgba(232, 102, 18, 0.16),
    0 8px 16px rgba(86, 48, 16, 0.09);
}

.contact-submit-button {
  min-height: 46px;
  border: 1px solid rgba(255, 230, 168, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff0b4 0%, #e9a83f 100%);
  background-color: #e9a83f;
  color: #160b05;
  font: inherit;
  font-size: 15px;
  font-weight: 1000;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 12px 20px rgba(0, 0, 0, 0.18);
  cursor: default;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: 14px;
  justify-items: center;
  margin: 18px -14px 0;
  padding: 24px 14px 26px;
  border-top: 4px solid #f3c66d;
  border-bottom: 1px solid #070403;
  background-color: #120a06;
  background:
    linear-gradient(135deg, rgba(255, 217, 135, 0.12) 0%, rgba(255, 217, 135, 0) 32%),
    linear-gradient(215deg, rgba(232, 102, 18, 0.24) 0%, rgba(232, 102, 18, 0) 36%),
    linear-gradient(180deg, #241207 0%, #120a06 48%, #050302 100%);
  background-color: #120a06;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -22px 32px rgba(0, 0, 0, 0.58),
    0 -10px 24px rgba(0, 0, 0, 0.16);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #fff0b4 22%, #e86612 50%, #fff0b4 78%, transparent 100%);
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 7px 12px auto;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 235, 179, 0.42) 50%, transparent 100%);
}

.footer-brand {
  width: min(100%, 32rem);
  color: #ffdc80;
  font-size: 18px;
  font-weight: 1000;
  line-height: 1.1;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.footer-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 230, 168, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff0b4 0%, #e9a83f 100%);
  color: #160b05;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 10px 18px rgba(0, 0, 0, 0.28);
}

.footer-button:hover,
.footer-button:focus-visible {
  color: #000000;
  background:
    linear-gradient(180deg, #ffffff 0%, #f0bd5b 100%);
}

.footer-copy,
.footer-disclaimer {
  max-width: 32rem;
  margin: 0;
  font-weight: 900;
  text-align: center;
}

.footer-copy {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.35;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
}

.footer-disclaimer {
  padding: 12px;
  border: 1px solid rgba(255, 220, 128, 0.28);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
  color: #ffe7a8;
  font-size: 12px;
  line-height: 1.45;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  padding: 28px 18px 30px;
  border: 1px solid rgba(126, 86, 46, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.95) 0%, rgba(232, 102, 18, 0.14) 100%);
  box-shadow: var(--shadow);
}

.hero-art {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}

.hero-art span {
  display: block;
  aspect-ratio: 1;
  border-radius: 8px;
  border: 1px solid rgba(232, 102, 18, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(232, 102, 18, 0.58));
  box-shadow: inset 0 -10px 18px rgba(232, 102, 18, 0.12);
}

.hero-art span:nth-child(2) {
  transform: translateY(12px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(232, 102, 18, 0.72));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 9ch;
  font-size: 44px;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 31rem;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

@media (max-width: 360px) {
  .top-strip {
    padding-right: 10px;
    padding-left: 10px;
  }

  .logo-text {
    max-width: 92px;
    font-size: 14px;
  }

  .contact-button {
    min-height: 40px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 13px;
  }

  .official-flow-strip span,
  .live-result-section h2,
  .market-result-section h2 {
    font-size: 16px;
  }

  .live-message,
  .khaiwal-intro,
  .khaiwal-name {
    font-size: 14px;
  }

  .market-score {
    font-size: 30px;
  }

  .telegram-button,
  .whatsapp-button {
    width: min(100%, 224px);
    padding-right: 10px;
    padding-left: 56px;
  }

  .telegram-title,
  .whatsapp-title {
    font-size: 18px;
  }

  .telegram-subtitle,
  .whatsapp-subtitle {
    font-size: 12px;
  }

  .khaiwal-section h2 {
    font-size: 16px;
  }

  .khaiwal-list {
    width: 100%;
  }

  .khaiwal-list p,
  .khaiwal-link {
    font-size: 13px;
  }

  .result-table-section {
    padding-right: 4px;
    padding-left: 4px;
  }

  .result-table th,
  .result-table td {
    padding: 8px 3px;
    font-size: 12px;
  }

  .result-table tbody th span {
    font-size: 11px;
  }

  .record-chart-section h2 {
    font-size: 18px;
  }

  .record-select-row {
    grid-template-columns: minmax(0, 1fr) 66px 68px;
    gap: 6px;
  }

  .record-select-row select,
  .record-select-row button {
    padding-right: 6px;
    padding-left: 6px;
    font-size: 12px;
  }

  .monthly-chart-table-wrap {
    padding-right: 4px;
    padding-left: 4px;
  }

  .monthly-chart-table {
    min-width: 900px;
  }

  .monthly-chart-table th,
  .monthly-chart-table td {
    min-width: 72px;
    padding: 8px 4px;
    font-size: 13px;
  }
}

@media (min-width: 560px) {
  .home-shell {
    padding-right: 18px;
    padding-left: 18px;
  }

  .top-strip {
    margin-right: -18px;
    margin-left: -18px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .official-flow-strip {
    margin-right: -18px;
    margin-left: -18px;
  }

  .live-result-section {
    margin-right: -18px;
    margin-left: -18px;
  }

  .market-result-section {
    margin-right: -18px;
    margin-left: -18px;
  }

  .telegram-section {
    margin-right: -18px;
    margin-left: -18px;
  }

  .whatsapp-section {
    margin-right: -18px;
    margin-left: -18px;
  }

  .ganesh-update-section {
    margin-right: -18px;
    margin-left: -18px;
  }

  .chart-update-section {
    margin-right: -18px;
    margin-left: -18px;
  }

  .khaiwal-section {
    margin-right: -18px;
    margin-left: -18px;
  }

  .result-table-section {
    margin-right: -18px;
    margin-left: -18px;
  }

  .contact-info-section {
    margin-right: -18px;
    margin-left: -18px;
  }

  .record-chart-section {
    margin-right: -18px;
    margin-left: -18px;
  }

  .monthly-chart-section {
    margin-right: -18px;
    margin-left: -18px;
  }

  .about-satta-section {
    margin-right: -18px;
    margin-left: -18px;
  }

  .policy-hero,
  .policy-intro,
  .policy-card,
  .contact-mail-panel,
  .contact-form-card {
    margin-right: -18px;
    margin-left: -18px;
  }

  .site-footer {
    margin-right: -18px;
    margin-left: -18px;
  }

  .about-satta-header,
  .about-satta-body {
    width: 100%;
  }

  .about-satta-header {
    background: #e86612;
  }

  .about-satta-body {
    background:
      linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 102, 18, 0.58) 38%, rgba(232, 102, 18, 0.94) 100%);
  }

  h1 {
    font-size: 58px;
  }
}
