:root {
  --navy: #1a3a5c;
  --navy-dark: #0f2440;
  --green: #2d8a4e;
  --green-light: #4db87a;
  --red: #e63946;
  --red-dark: #c1121f;
  --gold: #f4c430;
  --bg: #f0f2f5;
  --white: #fff;
  --border: #e0e4e8;
  --gray: #666;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans Devanagari", sans-serif;
  background: var(--bg);
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.6;
}
.ticker {
  background: var(--red);
  padding: 7px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-block;
  animation: tick 40s linear infinite;
  font-size: 13px;
  color: #fff;
  font-weight: 600;
}
.ticker-inner span {
  margin: 0 35px;
}
.ticker-inner span::before {
  content: "●";
  margin-right: 9px;
  opacity: 0.6;
}
@keyframes tick {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(-100%);
  }
}
.hd-brand {
  background: var(--navy-dark);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hd-brand-inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.logo {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
}
.logo em {
  color: var(--green-light);
  font-style: normal;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--red);
  font-weight: 700;
  white-space: nowrap;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.65);
  }
}
.hd-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: right;
  line-height: 1.5;
  display: none;
}
@media (min-width: 480px) {
  .hd-date {
    display: block;
  }
}
.hd-nav {
  background: var(--white);
  border-bottom: 3px solid var(--navy);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 200;
}
.hd-nav-inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hd-links {
  display: flex;
}
.hd-links a {
  font-size: 13px;
  font-weight: 600;
  color: #444;
  text-decoration: none;
  padding: 12px 11px;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: all 0.2s;
  white-space: nowrap;
}
.hd-links a:hover,
.hd-links a.on {
  color: var(--navy);
  border-bottom-color: var(--navy);
}
.hd-cta {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  white-space: nowrap;
}
.hd-cta:hover {
  background: var(--red-dark);
}
.readers-bar {
  background: #fff8e1;
  border-bottom: 1px solid #ffe082;
  padding: 6px 0;
}
.readers-bar-inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #7a5c00;
}
.rc {
  font-weight: 700;
  color: var(--red);
}
.page-grid {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 16px 40px;
  display: grid;
  grid-template-columns: 1fr 286px;
  gap: 20px;
  align-items: start;
}
.page-left {
  min-width: 0;
}
@media (max-width: 780px) {
  .page-grid {
    grid-template-columns: 1fr;
    padding: 0 12px 30px;
  }
  .sidebar {
    display: none;
  }
}
.hero-block {
  background: var(--white);
  border-radius: 10px;
  padding: clamp(16px, 4vw, 22px);
  margin-bottom: 18px;
}
.tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 13px;
}
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
.tag-r {
  background: var(--red);
  color: #fff;
}
.tag-n {
  background: var(--navy);
  color: #fff;
}
.tag-g {
  background: var(--green);
  color: #fff;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(19px, 4vw, 26px);
  line-height: 1.35;
  font-weight: 900;
  color: var(--navy-dark);
  margin-bottom: 12px;
}
.hero-title em {
  font-style: italic;
  color: var(--red);
}
.hero-sub {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 14px;
  border-left: 3px solid var(--red);
  padding-left: 12px;
  font-style: italic;
}
.hero-meta {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}
.hero-cap {
  font-size: 13px;
  color: #888;
  font-style: italic;
  text-align: center;
  padding: 8px;
  background: #f8f9fa;
  border-radius: 6px;
  margin-bottom: 0;
  margin-top: 8px;
}
.sidebar {
  align-self: start;
  position: sticky;
  top: 60px;
}
.art {
  background: var(--white);
  border-radius: 10px;
  padding: clamp(16px, 4vw, 28px);
}
.art p {
  font-size: 16px;
  line-height: 1.85;
  color: #333;
  margin-bottom: 15px;
}
.art h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 3.5vw, 21px);
  font-weight: 700;
  color: var(--navy);
  margin: 26px 0 13px;
  border-left: 4px solid var(--green);
  padding-left: 13px;
  line-height: 1.4;
}
.art h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 20px 0 10px;
}
.aimg {
  width: 100%;
  border-radius: 10px;
  margin: 18px 0;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.09);
}
.qblock {
  background: linear-gradient(135deg, #f0f7ff, #e8f4ff);
  border-left: 5px solid var(--navy);
  padding: 16px 18px;
  margin: 20px 0;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 2px 8px rgba(26, 58, 92, 0.07);
}
.qblock p {
  font-size: 16px;
  font-style: italic;
  color: var(--navy);
  margin: 0 !important;
  font-weight: 600;
  line-height: 1.7;
}
.qa {
  font-size: 13px !important;
  color: #777 !important;
  margin-top: 9px !important;
  font-style: normal !important;
  font-weight: 400 !important;
}
.iv {
  font-weight: 700;
  color: var(--navy);
}
.dr {
  font-weight: 700;
  color: var(--green);
}
.blist {
  list-style: none;
  margin: 14px 0;
}
.blist li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 9px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}
.blist li:last-child {
  border-bottom: none;
}
.chk {
  width: 23px;
  height: 23px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
}
.pfeat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin: 18px 0;
}
@media (max-width: 420px) {
  .pfeat {
    grid-template-columns: 1fr;
  }
}
.fcard {
  background: #f0f9f4;
  border: 1px solid #c8e6c9;
  border-radius: 10px;
  padding: 13px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.ficon {
  font-size: 22px;
  flex-shrink: 0;
}
.ftxt strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 2px;
}
.ftxt span {
  font-size: 13px;
  color: #555;
}
.ctable {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 14px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.ctable th {
  background: var(--navy);
  color: #fff;
  padding: 11px 13px;
  text-align: left;
  font-size: 13px;
}
.ctable th:first-child {
  background: var(--navy-dark);
}
.ctable td {
  padding: 10px 13px;
  border-bottom: 1px solid #eee;
}
.ctable tr:last-child td {
  border-bottom: none;
}
.ctable tr:nth-child(even) td {
  background: #f9fbff;
}
.good {
  color: var(--green);
  font-weight: 700;
}
.bad {
  color: #999;
}
.wsec {
  background: linear-gradient(160deg, #f8fff8, #e8f5e9 50%, #f0f7ff);
  border: 2px solid var(--green);
  border-radius: 14px;
  padding: clamp(18px, 4vw, 28px) 20px;
  text-align: center;
  margin: 26px 0;
  box-shadow: 0 4px 20px rgba(45, 138, 78, 0.1);
}
.wtitle {
  font-family: "Playfair Display", serif;
  font-size: clamp(17px, 3.5vw, 20px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.wsub {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
}
.wwrap {
  position: relative;
  width: clamp(240px, 70vw, 280px);
  height: clamp(240px, 70vw, 280px);
  margin: 0 auto 14px;
}
#wc {
  border-radius: 50%;
  display: block;
  width: 100%;
  height: 100%;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.18);
}
.wcenter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}
.wptr {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 22px solid var(--red);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
  margin-bottom: -4px;
}
.wbtn {
  width: clamp(74px, 20vw, 88px);
  height: clamp(74px, 20vw, 88px);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  border: 6px solid #8b0000;
  box-shadow:
    0 5px 18px rgba(230, 57, 70, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  font-size: clamp(16px, 4vw, 19px);
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.1s;
}
.wbtn:active {
  transform: scale(0.95);
}
.wnote {
  font-size: 13px;
  color: var(--gray);
}
.wres {
  display: none;
  background: linear-gradient(135deg, #e8f5e9, #f0fff4);
  border: 2px solid var(--green);
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 14px;
  font-size: 17px;
  font-weight: 700;
  color: var(--green);
}
.osec {
  background: var(--white);
  border-radius: 14px;
  padding: clamp(18px, 4vw, 28px);
  margin: 26px 0;
  border: 2px solid var(--red);
  box-shadow: 0 6px 25px rgba(230, 57, 70, 0.1);
  display: none;
}
.osec.unlocked {
  display: block;
  animation: fadeInUp 0.5s ease;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sb-before-spin {
  display: block;
}
.sb-after-spin {
  display: none;
}
.sb-after-spin.unlocked {
  display: block;
  animation: fadeInUp 0.4s ease;
}
.ohdr {
  text-align: center;
  margin-bottom: 18px;
}
.ocong {
  font-size: clamp(24px, 6vw, 30px);
  font-weight: 700;
  color: var(--red);
  margin-bottom: 3px;
}
.osub {
  font-size: 16px;
  color: #333;
  margin-bottom: 3px;
}
.owon {
  font-size: 17px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 7px;
}
.otimer {
  font-size: 14px;
  color: #555;
}
.tval {
  font-weight: 700;
  color: var(--red);
  font-size: 19px;
  background: #fff0f1;
  padding: 2px 7px;
  border-radius: 5px;
}
.pcard {
  background: linear-gradient(135deg, #f8fff8, #f0f9f4);
  border: 1px solid #c8e6c9;
  border-radius: 12px;
  padding: 18px;
  margin: 18px 0;
}
.pcard-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.pcard-img {
  width: clamp(80px, 20vw, 95px);
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.13);
}
.pname {
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
}
.prow {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.pbadge {
  background: var(--red);
  color: #fff;
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 14px;
  font-weight: 700;
}
.pnew {
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 700;
  color: var(--navy);
}
.pold {
  font-size: 18px;
  color: #aaa;
  text-decoration: line-through;
}
.psave {
  font-size: 14px;
  color: var(--green);
  font-weight: 600;
}
.ff {
  display: flex;
  align-items: center;
  height: 52px;
  border: 2px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 11px;
  background: #fafafa;
  transition: border-color 0.2s;
}
.ff:focus-within {
  border-color: var(--navy);
  background: #fff;
}
.fi {
  width: 50px;
  height: 52px;
  background: #eef2f8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.ff input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  color: #222;
  padding: 0 13px;
}
.ff input::placeholder {
  color: #bbb;
}
.sbtn {
  width: 100%;
  height: 58px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: clamp(17px, 4vw, 20px);
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 5px 18px rgba(230, 57, 70, 0.38);
  letter-spacing: 0.2px;
}
.sbtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 24px rgba(230, 57, 70, 0.48);
}
.sbtn:active {
  transform: translateY(0);
}
.tbadges {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 3vw, 20px);
  margin-top: 13px;
  flex-wrap: wrap;
}
.tbadge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #666;
}
.tbadge strong {
  color: #333;
}
.odiscl {
  font-size: 12px;
  color: #aaa;
  text-align: center;
  margin-top: 9px;
  line-height: 1.6;
}
.steps {
  background: #f0f7ff;
  border-radius: 10px;
  padding: 16px 18px;
  margin: 16px 0;
}
.steps-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}
.step:last-child {
  margin-bottom: 0;
}
.step-num {
  width: 24px;
  height: 24px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.rhdr {
  background: var(--white);
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.rnum {
  font-size: 50px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.rstars {
  color: var(--gold);
  font-size: 21px;
}
.rcnt {
  font-size: 13px;
  color: #999;
}
.rbars {
  flex: 1;
  min-width: 180px;
}
.rrow {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
  font-size: 13px;
  color: #666;
}
.rbg {
  flex: 1;
  height: 7px;
  background: #eee;
  border-radius: 5px;
  overflow: hidden;
}
.rfill {
  height: 100%;
  background: var(--gold);
  border-radius: 5px;
}
.revtitle {
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 700;
  color: var(--navy);
  margin: 22px 0 13px;
  padding-bottom: 9px;
  border-bottom: 3px solid var(--navy);
}
.rcard {
  background: var(--white);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 13px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
}
.rimg {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 13px;
}
.rhead {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
}
.rava {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.rname {
  font-size: 15px;
  font-weight: 700;
  color: #222;
}
.rloc {
  font-size: 12px;
  color: #999;
}
.rstarsm {
  color: var(--gold);
  font-size: 14px;
  margin-left: auto;
}
.rtxt {
  font-size: 14px;
  line-height: 1.75;
  color: #444;
}
.verif {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  margin-top: 7px;
}
.sw {
  background: var(--white);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
}
.stitle {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 13px;
}
.sobtn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  margin-bottom: 9px;
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.28);
  transition: all 0.2s;
}
.sobtn:hover {
  transform: translateY(-1px);
}
.sprice {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
}
.spold {
  font-size: 15px;
  color: #aaa;
  text-decoration: line-through;
  text-align: center;
}
.sdsc {
  background: var(--red);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 9px;
}
.stime {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-top: 7px;
}
.stime span {
  font-weight: 700;
  color: var(--red);
}
.sread {
  font-size: 13px;
  color: #555;
  text-align: center;
  padding: 9px;
  background: #fff8e1;
  border-radius: 6px;
  margin-top: 9px;
}
.stockbanner {
  background: linear-gradient(135deg, #fff3cd, #ffe69c);
  border: 1px solid #ffc107;
  border-radius: 10px;
  padding: 14px 16px;
  margin: 18px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.stockbanner p {
  font-size: 14px;
  color: #7a5c00;
  line-height: 1.5;
}
.stockbanner strong {
  color: var(--red);
}
.footer {
  background: var(--navy-dark);
  padding: 28px 16px;
  margin-top: 28px;
}
.footer-inner {
  max-width: 1020px;
  margin: 0 auto;
  text-align: center;
}
.flogo {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px;
}
.flogo em {
  color: var(--green-light);
  font-style: normal;
}
.fbtn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 32px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  margin: 14px 0;
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.28);
  transition: all 0.2s;
}
.fbtn:hover {
  background: var(--red-dark);
}
.ftxt {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
}
label.error {
  display: none !important;
}