:root {
  --cash-bg-top: #1a0a2e;
  --cash-bg-bottom: #0d0518;
  --cash-surface: #251540;
  --cash-surface-soft: #311c56;
  --cash-card-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  --cash-red: #dc2626;
  --cash-yellow: #facc15;
  --cash-green: #22c55e;
  --cash-white: #ffffff;
  --cash-muted: #d9d1ec;
  --cash-border: rgba(250, 204, 21, 0.18);
  --cash-radius-xl: 28px;
  --cash-radius-lg: 22px;
  --cash-radius-md: 16px;
  --cash-max: 1180px;
}

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

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--cash-white);
  background:
    radial-gradient(circle at top left, rgba(220, 38, 38, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.15), transparent 22%),
    linear-gradient(180deg, var(--cash-bg-top), var(--cash-bg-bottom));
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

.cash-body {
  min-height: 100vh;
}

.cash-site-shell {
  position: relative;
}

.cash-topline {
  background: rgba(250, 204, 21, 0.12);
  border-bottom: 1px solid rgba(250, 204, 21, 0.2);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  text-align: center;
}

.cash-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(17, 7, 31, 0.88);
  border-bottom: 1px solid rgba(250, 204, 21, 0.16);
}

.cash-header-inner,
.cash-section,
.cash-footer-inner,
.cash-legal-main,
.cash-contact-wrap {
  width: min(calc(100% - 2rem), var(--cash-max));
  margin: 0 auto;
}

.cash-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.cash-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: "Fredoka", sans-serif;
  font-size: 1.55rem;
  color: var(--cash-yellow);
  font-weight: 700;
}

.cash-brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(220, 38, 38, 0.95), rgba(118, 9, 39, 0.98));
  display: grid;
  place-items: center;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.22), 0 8px 20px rgba(0, 0, 0, 0.24);
}

.cash-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cash-nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cash-nav-list a {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--cash-yellow);
  font-weight: 700;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.cash-nav-list a:hover,
.cash-nav-list a:focus-visible,
.cash-nav-list a[aria-current="page"] {
  background: rgba(220, 38, 38, 0.2);
  color: var(--cash-white);
  transform: translateY(-1px);
}

.cash-menu-button {
  display: none;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--cash-yellow), #f59e0b);
  color: #3a1700;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.cash-menu-button span,
.cash-menu-button::before,
.cash-menu-button::after {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: #3a1700;
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
  content: "";
}

.cash-menu-button span {
  margin: 6px auto;
}

.cash-menu-button.cash-is-open {
  animation: cash-bounce 0.45s ease;
}

.cash-menu-button.cash-is-open::before {
  transform: translateY(9px) rotate(45deg);
}

.cash-menu-button.cash-is-open span {
  opacity: 0;
}

.cash-menu-button.cash-is-open::after {
  transform: translateY(-9px) rotate(-45deg);
}

.cash-section {
  padding: 5rem 0;
}

.cash-hero {
  padding-top: 4rem;
}

.cash-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.cash-hero-copy,
.cash-panel,
.cash-card,
.cash-game-card,
.cash-method-card,
.cash-safe-box,
.cash-faq-item,
.cash-legal-article,
.cash-contact-card {
  background: rgba(37, 21, 64, 0.92);
  border: 1px solid var(--cash-border);
  border-left: 4px solid var(--cash-red);
  border-radius: var(--cash-radius-xl);
  box-shadow: var(--cash-card-shadow);
}

.cash-hero-copy {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.cash-hero-copy::after {
  content: "🍒 🍋 🔔 💎 7️⃣";
  position: absolute;
  bottom: 1.5rem;
  right: -1rem;
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: 0.5rem;
  opacity: 0.12;
  transform: rotate(-8deg);
}

.cash-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.16);
  color: var(--cash-yellow);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.cash-title,
.cash-section-title,
.cash-footer-title,
.cash-legal-title,
.cash-contact-title {
  font-family: "Fredoka", sans-serif;
  line-height: 1;
  margin: 0 0 1rem;
}

.cash-title {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  max-width: 12ch;
}

.cash-title-accent,
.cash-section-title span,
.cash-footer-title span {
  color: var(--cash-yellow);
}

.cash-lead {
  max-width: 60ch;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--cash-muted);
  margin: 0 0 1.75rem;
}

.cash-hero-actions,
.cash-card-actions,
.cash-safe-links,
.cash-legal-links,
.cash-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.cash-button,
.cash-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cash-button {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ef4444, #b91c1c);
  color: var(--cash-white);
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.32);
}

.cash-button::after {
  content: "7 7 7";
  position: absolute;
  right: 1rem;
  opacity: 0;
  transform: translateY(140%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.cash-button:hover,
.cash-button:focus-visible,
.cash-link-button:hover,
.cash-link-button:focus-visible {
  transform: translateY(-2px) scale(1.01);
}

.cash-button:hover::after,
.cash-button:focus-visible::after {
  opacity: 0.55;
  animation: cash-reels 0.9s linear infinite;
}

.cash-link-button {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cash-white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cash-hero-note {
  color: var(--cash-muted);
  font-size: 0.95rem;
}

.cash-panel {
  padding: 1.1rem;
}

.cash-card {
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.cash-card.cash-card-hover,
.cash-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(220, 38, 38, 0.52);
  box-shadow: 0 22px 40px rgba(220, 38, 38, 0.18), var(--cash-card-shadow);
}

.cash-card-top,
.cash-card-meta,
.cash-card-rating,
.cash-method-row,
.cash-faq-question,
.cash-trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cash-logo-wrap {
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
  flex-shrink: 0;
}

.cash-logo-wrap img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
}

.cash-rating-chip,
.cash-badge,
.cash-small-badge,
.cash-legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-weight: 900;
}

.cash-rating-chip {
  background: rgba(34, 197, 94, 0.18);
  color: #c8ffd9;
}

.cash-card-title {
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-size: 1.5rem;
}

.cash-card-label {
  margin: 0;
  color: var(--cash-yellow);
  font-weight: 900;
}

.cash-card-bonus {
  font-size: 1.15rem;
  font-weight: 900;
}

.cash-card-copy,
.cash-game-copy,
.cash-method-copy,
.cash-legal-copy,
.cash-footer-copy,
.cash-contact-copy {
  margin: 0;
  color: var(--cash-muted);
  line-height: 1.8;
}

.cash-card-disclaimer {
  margin: 0;
  font-size: 0.88rem;
  color: #efe3ff;
}

.cash-section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.8rem;
}

.cash-section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.cash-section-copy {
  max-width: 62ch;
  margin: 0;
  color: var(--cash-muted);
  line-height: 1.8;
}

.cash-about-grid,
.cash-methodology-grid,
.cash-games-grid,
.cash-cards-grid,
.cash-safe-grid,
.cash-footer-grid,
.cash-contact-grid {
  display: grid;
  gap: 1.35rem;
}

.cash-about-grid {
  grid-template-columns: 1.3fr 0.7fr;
}

.cash-about-stats {
  display: grid;
  gap: 1rem;
}

.cash-mini-panel {
  background: rgba(250, 204, 21, 0.09);
  border: 1px solid rgba(250, 204, 21, 0.12);
  border-radius: var(--cash-radius-lg);
  padding: 1.35rem;
}

.cash-mini-panel strong {
  display: block;
  font-family: "Fredoka", sans-serif;
  color: var(--cash-yellow);
  font-size: 2rem;
}

.cash-cards-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cash-game-card,
.cash-method-card,
.cash-safe-box,
.cash-faq-item,
.cash-legal-article,
.cash-contact-card {
  padding: 1.5rem;
}

.cash-game-card h3,
.cash-method-card h3,
.cash-safe-box h3,
.cash-legal-article h2,
.cash-contact-card h2 {
  margin: 0 0 0.85rem;
  font-family: "Fredoka", sans-serif;
}

.cash-game-tag,
.cash-method-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  background: rgba(220, 38, 38, 0.16);
  color: #ffd9d9;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-weight: 800;
}

.cash-methodology-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.cash-method-steps {
  display: grid;
  gap: 1rem;
}

.cash-step {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cash-step strong {
  display: block;
  color: var(--cash-yellow);
  margin-bottom: 0.45rem;
}

.cash-method-grid {
  display: grid;
  gap: 1rem;
}

.cash-method-row {
  align-items: flex-start;
}

.cash-method-speed {
  background: rgba(34, 197, 94, 0.12);
  color: #c8ffd9;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.cash-safe-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cash-safe-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.cash-safe-list li {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  line-height: 1.7;
}

.cash-safe-resources {
  display: grid;
  gap: 1rem;
}

.cash-safe-link {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.cash-safe-link span:last-child {
  color: var(--cash-yellow);
}

.cash-faq-list {
  display: grid;
  gap: 1rem;
}

.cash-faq-item {
  overflow: hidden;
}

.cash-faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--cash-white);
  font: inherit;
  font-weight: 900;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.cash-faq-question span {
  font-size: 1.05rem;
}

.cash-faq-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.2);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  transition: transform 0.25s ease;
}

.cash-faq-item.cash-is-open .cash-faq-icon {
  transform: rotate(45deg);
}

.cash-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.cash-faq-item.cash-is-open .cash-faq-answer {
  grid-template-rows: 1fr;
}

.cash-faq-answer-inner {
  overflow: hidden;
  color: var(--cash-muted);
  line-height: 1.8;
}

.cash-faq-answer-inner p {
  margin: 1rem 0 0;
}

.cash-footer {
  padding: 2.5rem 0 3rem;
  background: rgba(8, 4, 16, 0.82);
  border-top: 1px solid rgba(250, 204, 21, 0.14);
}

.cash-footer-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.cash-footer-title {
  font-size: 2rem;
}

.cash-trust-stack {
  display: grid;
  gap: 1rem;
}

.cash-small-badge,
.cash-legal-badge {
  background: rgba(250, 204, 21, 0.15);
  color: var(--cash-yellow);
}

.cash-footer-links {
  margin: 1.2rem 0;
}

.cash-footer-links a,
.cash-legal-links a {
  color: var(--cash-yellow);
  font-weight: 800;
}

.cash-footer-meta {
  color: var(--cash-muted);
  line-height: 1.8;
}

.cash-legal-page {
  padding: 3rem 0 5rem;
}

.cash-legal-hero {
  text-align: left;
  margin-bottom: 1.6rem;
}

.cash-legal-title {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
}

.cash-legal-main {
  display: grid;
  gap: 1.25rem;
}

.cash-legal-article ol,
.cash-legal-article ul {
  margin: 1rem 0;
  padding-left: 1.2rem;
  color: var(--cash-muted);
  line-height: 1.8;
}

.cash-legal-article p {
  color: var(--cash-muted);
  line-height: 1.85;
  margin: 0 0 1rem;
}

.cash-contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.cash-form {
  display: grid;
  gap: 1rem;
}

.cash-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 800;
}

.cash-form input,
.cash-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--cash-white);
  font: inherit;
  padding: 0.95rem 1rem;
}

.cash-form textarea {
  min-height: 170px;
  resize: vertical;
}

.cash-form input::placeholder,
.cash-form textarea::placeholder {
  color: #c9bddf;
}

.cash-cookie-bar,
.cash-age-gate {
  position: fixed;
  inset: auto 0 0;
  z-index: 80;
}

.cash-cookie-bar[hidden],
.cash-age-gate[hidden],
.cash-back-top[hidden] {
  display: none !important;
}

.cash-cookie-inner {
  width: min(calc(100% - 1.5rem), 980px);
  margin: 0 auto 1rem;
  background: rgba(17, 7, 31, 0.96);
  border: 1px solid rgba(250, 204, 21, 0.16);
  border-left: 4px solid var(--cash-red);
  border-radius: 22px;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.cash-age-gate {
  inset: 0;
  background: rgba(8, 4, 16, 0.84);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.cash-age-panel {
  width: min(100%, 520px);
  padding: 2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(37, 21, 64, 0.98), rgba(22, 11, 38, 0.98));
  border-radius: 28px;
  border: 1px solid rgba(250, 204, 21, 0.18);
  border-left: 4px solid var(--cash-red);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.38);
}

.cash-age-panel h2 {
  margin: 0 0 0.75rem;
  font-family: "Fredoka", sans-serif;
  font-size: 2rem;
}

.cash-age-panel p {
  margin: 0 0 1.5rem;
  color: var(--cash-muted);
  line-height: 1.8;
}

.cash-back-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #ef4444, #b91c1c);
  color: var(--cash-white);
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(220, 38, 38, 0.32);
}

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

@keyframes cash-reels {
  0% {
    transform: translateY(140%);
  }
  100% {
    transform: translateY(-140%);
  }
}

@keyframes cash-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-4px);
  }
  60% {
    transform: translateY(2px);
  }
}

@media (max-width: 980px) {
  .cash-about-grid,
  .cash-methodology-grid,
  .cash-footer-grid,
  .cash-contact-grid,
  .cash-hero-grid {
    grid-template-columns: 1fr;
  }

  .cash-cards-grid,
  .cash-safe-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .cash-header-inner {
    flex-wrap: wrap;
  }

  .cash-menu-button {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .cash-nav {
    width: 100%;
    display: none;
  }

  .cash-nav.cash-is-open {
    display: block;
  }

  .cash-nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 0.4rem 0 0.2rem;
  }

  .cash-nav-list a {
    justify-content: center;
  }

  .cash-section {
    padding: 4rem 0;
  }

  .cash-hero-copy,
  .cash-game-card,
  .cash-method-card,
  .cash-safe-box,
  .cash-faq-item,
  .cash-contact-card,
  .cash-legal-article {
    padding: 1.25rem;
  }

  .cash-card-top,
  .cash-card-meta,
  .cash-method-row,
  .cash-trust-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cash-cookie-inner {
    padding: 1rem;
  }
}
