/* Golden Night Preview — My Cash Mania Guide */
:root {
  --night: #0c0710;
  --aubergine: #21102a;
  --plum: #35163f;
  --royal-purple: #603082;
  --gold: #f4bd3f;
  --amber: #f28a21;
  --cream: #fff0d0;
  --soft-cream: #e7d2ae;
  --cash-green: #46643c;
  --border: rgba(244, 189, 63, 0.28);
  --glass: rgba(12, 7, 16, 0.72);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 72rem;
  --header-h: 3.25rem;
}

*,
*::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;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--soft-cream);
  background: var(--night);
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: var(--night);
}

.skip-link:focus {
  left: 0;
}

/* Header */
.mcg-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(12, 7, 16, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.mcg-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mcg-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--cream);
  flex-shrink: 0;
}

.mcg-brand__mark {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
}

.mcg-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.mcg-brand__name {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mcg-brand__sub {
  font-size: 0.65rem;
  color: var(--soft-cream);
  opacity: 0.85;
}

.mcg-nav {
  display: none;
  gap: 0.25rem;
  margin-left: auto;
}

.mcg-nav a {
  padding: 0.35rem 0.6rem;
  font-size: 0.8rem;
  text-decoration: none;
  color: var(--soft-cream);
  border-radius: 4px;
}

.mcg-nav a:hover {
  color: var(--gold);
}

.mcg-header__meta {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  font-size: 0.75rem;
}

.mcg-badge {
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

.mcg-demo-status {
  color: var(--soft-cream);
  white-space: nowrap;
}

.mcg-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 2.25rem;
  height: 2.25rem;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--aubergine);
  cursor: pointer;
}

.mcg-menu-btn span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0 auto;
  background: var(--gold);
}

.mcg-mobile-menu {
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--aubergine);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1rem 1rem;
}

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

.mcg-mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
}

.mcg-mobile-menu a:hover {
  color: var(--gold);
}

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

  .mcg-header__meta {
    display: flex;
    margin-left: 0;
  }

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

@media (min-width: 1024px) {
  .mcg-header__meta {
    margin-left: auto;
  }
}

/* Hero */
.mcg-hero {
  position: relative;
  min-height: 420px;
}

.mcg-hero__frame {
  position: relative;
  border: 1px solid var(--border);
  margin: 0.75rem 1rem 0;
  border-radius: 6px;
  overflow: hidden;
}

.mcg-hero__media {
  position: relative;
  height: 280px;
}

.mcg-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.mcg-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 7, 16, 0.35) 0%,
    rgba(12, 7, 16, 0.55) 45%,
    rgba(12, 7, 16, 0.85) 100%
  );
  pointer-events: none;
}

.mcg-hero__panel-wrap {
  position: relative;
  margin-top: -4.5rem;
  padding: 0 1rem 1.5rem;
  z-index: 2;
}

.mcg-hero__panel {
  max-width: 36rem;
  margin: 0 auto;
  padding: 1.25rem 1.35rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.mcg-hero__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--amber);
  text-transform: uppercase;
}

.mcg-hero__panel h1 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--cream);
  font-weight: 700;
}

.mcg-hero__intro {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--soft-cream);
}

.mcg-hero__support {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(231, 210, 174, 0.9);
}

.mcg-hero__caption {
  margin: 0.75rem 1rem 0;
  padding: 0 0 0.5rem;
  font-size: 0.7rem;
  color: rgba(231, 210, 174, 0.75);
  text-align: center;
  line-height: 1.4;
}

.mcg-cta-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mcg-cta-label {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.mcg-plaque {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  font-family: inherit;
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  color: var(--night);
  cursor: pointer;
  box-shadow: 0 0 20px rgba(244, 189, 63, 0.35);
}

.mcg-plaque--active:hover {
  filter: brightness(1.05);
}

.mcg-hero__responsible {
  margin: 0.65rem 0 0;
  font-size: 0.72rem;
  color: rgba(231, 210, 174, 0.7);
}

.affiliate-disclosure {
  margin: 0.5rem 0 0;
  font-size: 0.68rem;
  line-height: 1.45;
  color: rgba(231, 210, 174, 0.75);
}

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

@media (min-width: 768px) {
  .mcg-hero__media {
    height: 560px;
  }

  .mcg-hero__panel-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding: 2rem;
    pointer-events: none;
  }

  .mcg-hero__panel {
    pointer-events: auto;
    padding: 1.75rem 2rem;
  }

  .mcg-hero__panel h1 {
    font-size: 1.75rem;
  }

  .mcg-hero__intro {
    font-size: 0.95rem;
  }

  .mcg-hero {
    min-height: 620px;
  }

  .mcg-hero__frame {
    margin: 1rem 1.5rem 0;
    min-height: 660px;
  }

  .mcg-hero__caption {
    position: absolute;
    bottom: 0.75rem;
    left: 0;
    right: 0;
    z-index: 3;
    margin: 0;
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .mcg-hero__media {
    height: 680px;
  }

  .mcg-hero__frame {
    min-height: 700px;
  }
}

/* Main sections */
.mcg-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}

.mcg-section {
  margin-bottom: 2.5rem;
}

.mcg-section h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  color: var(--cream);
  font-weight: 700;
}

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

.mcg-facts-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-top: 1rem;
}

.mcg-fact-chip {
  padding: 0.65rem 0.75rem;
  background: var(--aubergine);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
}

.mcg-fact-chip strong {
  display: block;
  font-size: 1rem;
  color: var(--gold);
}

.mcg-fact-chip span {
  font-size: 0.75rem;
  color: var(--soft-cream);
}

@media (min-width: 640px) {
  .mcg-facts-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Banknote ticket visual */
.mcg-ticket {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.25rem 0;
  padding: 1rem;
  background: linear-gradient(135deg, var(--plum) 0%, var(--aubergine) 100%);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.mcg-ticket__part {
  flex: 1;
  padding: 1rem;
  text-align: center;
  background: rgba(12, 7, 16, 0.5);
  border: 1px dashed var(--border);
  border-radius: 4px;
}

.mcg-ticket__part--centre {
  border-color: var(--gold);
  background: rgba(96, 48, 130, 0.35);
}

.mcg-ticket__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.35rem;
}

.mcg-ticket__value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

.mcg-ticket__note {
  font-size: 0.8rem;
  color: var(--soft-cream);
  margin-top: 0.25rem;
}

.mcg-ticket__arrow {
  text-align: center;
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .mcg-ticket {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  .mcg-ticket__part {
    border-radius: 0;
    border-top: none;
    border-bottom: none;
    border-left: none;
  }

  .mcg-ticket__part:first-child {
    border-left: none;
  }

  .mcg-ticket__arrow {
    display: none;
  }

  .mcg-ticket__part--centre {
    border-left: 1px dashed var(--gold);
    border-right: 1px dashed var(--gold);
  }
}

/* Feature rows */
.mcg-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mcg-feature-row {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  background: var(--aubergine);
  border: 1px solid var(--border);
  border-radius: 4px;
  border-left: 3px solid var(--cash-green);
}

.mcg-feature-row:nth-child(2) {
  border-left-color: var(--royal-purple);
}

.mcg-feature-row:nth-child(3) {
  border-left-color: var(--amber);
}

.mcg-feature-row h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--cream);
}

.mcg-feature-row p {
  margin: 0;
  font-size: 0.9rem;
}

.mcg-feature-row ul {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.9rem;
}

.mcg-feature-row li {
  margin-bottom: 0.35rem;
}

/* Verified facts */
.mcg-facts-list {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mcg-facts-list li {
  padding: 0.5rem 0.75rem;
  background: rgba(33, 16, 42, 0.6);
  border-left: 2px solid var(--gold);
  font-size: 0.9rem;
}

.mcg-facts-qualifier {
  margin-top: 1rem;
  padding: 0.75rem;
  font-size: 0.85rem;
  background: rgba(96, 48, 130, 0.2);
  border-radius: 4px;
  color: var(--soft-cream);
}

/* FAQ */
.mcg-faq details {
  margin-bottom: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--aubergine);
}

.mcg-faq summary {
  padding: 0.85rem 1rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--cream);
  list-style: none;
}

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

.mcg-faq details[open] summary {
  border-bottom: 1px solid var(--border);
}

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

/* Closing demo panel */
.mcg-closing {
  padding: 1.5rem;
  background: linear-gradient(180deg, var(--plum) 0%, var(--aubergine) 100%);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
}

.mcg-closing p {
  max-width: 32rem;
  margin: 0 auto 1rem;
  font-size: 0.9rem;
}

.mcg-closing [data-cash-mania-slot] {
  max-width: 20rem;
  margin: 0 auto;
}

/* Footer */
.mcg-footer {
  background: var(--aubergine);
  border-top: 1px solid var(--border);
  padding: 1.25rem 1rem 1.5rem;
}

.mcg-footer__row {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  font-size: 0.78rem;
}

.mcg-footer__row a {
  color: var(--soft-cream);
  text-decoration: none;
}

.mcg-footer__row a:hover,
.mcg-footer__row a[aria-current="page"] {
  color: var(--gold);
}

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

.mcg-footer__brand img {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.mcg-footer__end {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.mcg-footer__divider {
  max-width: var(--max);
  margin: 0.75rem auto;
  border: none;
  border-top: 1px solid var(--border);
}

.mcg-footer__note {
  max-width: var(--max);
  margin: 0 auto;
  font-size: 0.72rem;
  color: rgba(231, 210, 174, 0.75);
  line-height: 1.5;
}

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

.mcg-trust h1 {
  font-size: 1.5rem;
  color: var(--cream);
  margin: 0 0 1rem;
}

.mcg-trust h2 {
  font-size: 1.1rem;
  color: var(--cream);
  margin: 1.5rem 0 0.5rem;
}

.mcg-trust p,
.mcg-trust li {
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.mcg-trust .mcg-back {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
