/* DAYLIGHT CASH CLUB — Cash Mania India Review */
:root {
  --sky: #48a7ed;
  --sky-soft: #ddf2ff;
  --petrol: #082f35;
  --deep-teal: #064c4d;
  --emerald: #177a4d;
  --leaf: #75a94a;
  --gold: #f4b52b;
  --saffron: #f07822;
  --sand: #f4e3c3;
  --ivory: #fff9ec;
  --ink: #10292c;
  --border: rgba(8, 76, 77, 0.18);
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius: 10px;
  --header-h: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.62;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--deep-teal);
}

a:hover {
  color: var(--emerald);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.cmi-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--petrol);
  font-weight: 700;
  text-decoration: none;
}

.cmi-skip:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* Header */
.cmi-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 249, 236, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.cmi-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.55rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.cmi-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.cmi-brand__logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: cover;
}

.cmi-brand__name {
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  color: var(--petrol);
  line-height: 1.2;
}

.cmi-nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
}

.cmi-nav a {
  padding: 0.45rem 0.65rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
}

.cmi-nav a:hover {
  background: var(--sky-soft);
}

.cmi-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  color: var(--petrol);
}

.cmi-menu-btn__bars {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

@media (min-width: 900px) {
  .cmi-nav {
    display: flex;
  }

  .cmi-menu-btn {
    display: none;
  }
}

.cmi-mobile-menu {
  border-top: 1px solid var(--border);
  background: var(--ivory);
  padding: 0.5rem 1rem 1rem;
}

.cmi-mobile-menu[hidden] {
  display: none;
}

.cmi-mobile-menu a {
  display: block;
  padding: 0.75rem 0.5rem;
  min-height: 44px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

/* Hero */
.cmi-hero {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cmi-hero__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  background: var(--deep-teal);
  box-shadow: 0 12px 40px rgba(8, 47, 53, 0.18);
}

.cmi-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  min-height: 420px;
}

.cmi-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6, 76, 77, 0.92) 0%,
    rgba(6, 76, 77, 0.78) 34%,
    rgba(6, 76, 77, 0.25) 58%,
    transparent 72%
  );
  pointer-events: none;
}

.cmi-hero__panel {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(100%, 520px);
  padding: 1.75rem 1.25rem 5.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.cmi-hero__panel h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ivory);
  letter-spacing: -0.02em;
}

.cmi-hero__intro {
  margin: 0 0 1.15rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--sand);
  max-width: 34ch;
}

.cmi-plaque-wrap {
  margin-top: 0.25rem;
  scroll-margin-top: calc(var(--header-h) + 1rem);
  display: flex;
  align-items: center;
}

.cmi-plaque {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: auto;
  min-width: 240px;
  max-width: 100%;
  min-height: 52px;
  padding: 0.45rem 1.2rem 0.45rem 0.45rem;
  justify-content: flex-start;
  border: 1px solid rgba(255, 249, 236, 0.42);
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  cursor: default;
  box-shadow: 0 12px 28px rgba(8, 47, 53, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.cmi-plaque--active {
  background: linear-gradient(135deg, #ffe07a 0%, var(--gold) 42%, var(--saffron) 100%);
  color: var(--petrol);
  cursor: pointer;
}

.cmi-plaque--active:hover,
.cmi-plaque--active:focus-visible {
  filter: brightness(1.04);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(8, 47, 53, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.cmi-plaque--pending {
  background: linear-gradient(135deg, #f0d98a 0%, #ddb045 52%, #cc7f2a 100%);
  color: rgba(8, 47, 53, 0.86);
}

.cmi-plaque__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 249, 236, 0.92);
  box-shadow: inset 0 0 0 1px rgba(8, 47, 53, 0.1);
  flex-shrink: 0;
}

.cmi-plaque__play {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent currentColor;
  flex-shrink: 0;
}

.cmi-plaque__label {
  line-height: 1.2;
  padding-right: 0.15rem;
}

.cmi-affiliate-note {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--sand);
  max-width: 32ch;
}

.cmi-affiliate-note[hidden] {
  display: none;
}

/* Facts rail */
.cmi-facts-rail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255, 249, 236, 0.94);
  border-top: 2px solid var(--gold);
}

.cmi-facts-rail__item {
  padding: 0.65rem 0.75rem;
  text-align: center;
  border-right: 1px dashed var(--border);
}

.cmi-facts-rail__item:last-child {
  border-right: none;
}

.cmi-facts-rail__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--deep-teal);
}

.cmi-facts-rail__value {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--petrol);
}

@media (max-width: 767px) {
  .cmi-hero__frame {
    min-height: 520px;
  }

  .cmi-hero__image {
    object-position: 68% 28%;
    min-height: 520px;
  }

  .cmi-hero__shade {
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(6, 76, 77, 0.15) 35%,
      rgba(6, 76, 77, 0.88) 58%,
      rgba(8, 47, 53, 0.96) 100%
    );
  }

  .cmi-hero__panel {
    top: auto;
    bottom: 0;
    width: 100%;
    padding: 0 1rem 7.5rem;
    justify-content: flex-end;
  }

  .cmi-hero__panel h1 {
    font-size: 1.45rem;
  }

  .cmi-hero__intro {
    max-width: none;
    font-size: 0.95rem;
  }

  .cmi-facts-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .cmi-facts-rail__item:nth-child(2) {
    border-right: none;
  }

  .cmi-facts-rail__item:nth-child(1),
  .cmi-facts-rail__item:nth-child(2) {
    border-bottom: 1px dashed var(--border);
  }
}

/* Main sections */
.cmi-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1rem 1rem;
}

.cmi-section {
  margin-bottom: 2.5rem;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.cmi-section h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  font-weight: 700;
  color: var(--petrol);
  line-height: 1.25;
}

.cmi-section p {
  margin: 0 0 0.85rem;
}

.cmi-section p:last-child {
  margin-bottom: 0;
}

/* Banknote visual */
.cmi-banknote-visual {
  margin: 1.25rem 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(8, 76, 77, 0.22);
  background: var(--sky-soft);
  box-shadow: 0 14px 32px rgba(8, 47, 53, 0.11);
}

.cmi-banknote-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.cmi-banknote-visual figcaption {
  margin: 0;
  padding: 0.7rem 0.9rem;
  font-size: 0.82rem;
  color: var(--deep-teal);
  background: rgba(255, 249, 236, 0.96);
  border-top: 1px solid var(--border);
}

/* Feature track */
.cmi-feature-track {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  position: relative;
}

.cmi-feature-track::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: linear-gradient(180deg, var(--sky) 0%, var(--emerald) 50%, var(--saffron) 100%);
  border-radius: 2px;
}

.cmi-feature-track li {
  position: relative;
  padding: 0 0 1.1rem 2.75rem;
}

.cmi-feature-track li:last-child {
  padding-bottom: 0;
}

.cmi-feature-track__dot {
  position: absolute;
  left: 8px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: var(--ivory);
  border: 2px solid var(--deep-teal);
  transform: rotate(45deg);
}

.cmi-feature-track__name {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--petrol);
  margin-bottom: 0.2rem;
}

.cmi-feature-track__desc {
  font-size: 0.9375rem;
  line-height: 1.55;
}

/* Facts table */
.cmi-facts-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9375rem;
}

.cmi-facts-table th,
.cmi-facts-table td {
  padding: 0.6rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.cmi-facts-table th {
  width: 38%;
  font-weight: 700;
  color: var(--deep-teal);
  background: var(--sky-soft);
}

.cmi-facts-table tr:last-child th,
.cmi-facts-table tr:last-child td {
  border-bottom: none;
}

.cmi-qualifier {
  margin-top: 0.75rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  background: var(--sand);
  border-left: 3px solid var(--saffron);
  border-radius: 0 6px 6px 0;
}

/* FAQ */
.cmi-faq details {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.55rem;
  background: #fff;
}

.cmi-faq summary {
  padding: 0.85rem 1rem;
  min-height: 44px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.cmi-faq summary::-webkit-details-marker {
  display: none;
}

.cmi-faq summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--emerald);
  flex-shrink: 0;
}

.cmi-faq details[open] summary::after {
  content: "−";
}

.cmi-faq details p {
  margin: 0;
  padding: 0 1rem 0.85rem;
  font-size: 0.9375rem;
}

/* Footer */
.cmi-footer {
  background: var(--petrol);
  color: var(--sand);
  padding: 1.25rem 1rem 1.5rem;
  font-size: 0.8125rem;
}

.cmi-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.cmi-footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 0.65rem;
}

.cmi-footer__row:last-of-type {
  margin-bottom: 0.75rem;
}

.cmi-footer a {
  color: var(--sky-soft);
  text-decoration: none;
}

.cmi-footer a:hover {
  color: var(--gold);
}

.cmi-footer a[aria-current="page"] {
  color: var(--gold);
  font-weight: 700;
}

.cmi-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--ivory);
  text-decoration: none;
  margin-right: 0.25rem;
}

.cmi-footer__brand:hover {
  color: var(--gold);
}

.cmi-footer__logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.cmi-footer__note {
  margin: 0;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 249, 236, 0.15);
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(244, 227, 195, 0.82);
}

/* Trust pages */
.cmi-trust {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}

.cmi-trust h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 3.5vw, 1.85rem);
  font-weight: 700;
  color: var(--petrol);
}

.cmi-trust h2 {
  margin: 1.75rem 0 0.65rem;
  font-size: 1.1rem;
  color: var(--deep-teal);
}

.cmi-trust p,
.cmi-trust li {
  font-size: 1rem;
  line-height: 1.62;
}

.cmi-trust ul {
  padding-left: 1.25rem;
}

.cmi-back-home {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
