:root {
  --mc-bg: #05060b;
  --mc-panel: rgba(13, 17, 31, 0.86);
  --mc-panel-solid: #111523;
  --mc-text: #ffffff;
  --mc-muted: #b8c0d6;
  --mc-pink: #ff0b50;
  --mc-blue: #075bff;
  --mc-cyan: #32e6ff;
  --mc-gold: #ffd166;
  --mc-line: rgba(50, 230, 255, 0.32);
  --mc-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--mc-bg);
  overflow-x: hidden;
}

body.mc-body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 11, 80, 0.24), transparent 34%),
    radial-gradient(circle at 86% 10%, rgba(7, 91, 255, 0.2), transparent 30%),
    linear-gradient(180deg, #060711 0%, #080913 42%, #05060b 100%);
  color: var(--mc-text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.mc-body a {
  color: inherit;
}

.mc-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 70px;
  padding: 12px 28px;
  border-bottom: 1px solid rgba(50, 230, 255, 0.22);
  background: rgba(5, 6, 11, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.38), 0 0 32px rgba(255, 11, 80, 0.12);
}

.mc-brand,
.mc-nav-cta,
.mc-btn,
.mc-game-card a,
.mc-contact-form__btn {
  text-decoration: none;
}

.mc-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(255, 11, 80, 0.72);
}

.mc-brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 11, 80, 0.9);
  background: linear-gradient(135deg, rgba(255, 11, 80, 0.92), rgba(7, 91, 255, 0.82));
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 0 24px rgba(255, 11, 80, 0.5), 0 0 24px rgba(7, 91, 255, 0.45);
}

.mc-brand-text {
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mc-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.mc-nav a,
.mc-footer-links a {
  color: var(--mc-muted);
  text-decoration: none;
  text-shadow: 0 0 12px rgba(7, 91, 255, 0.38);
}

.mc-nav a:hover,
.mc-footer-links a:hover {
  color: var(--mc-text);
}

.mc-nav-cta,
.mc-btn,
.mc-game-card a,
.mc-contact-form__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #ff004d 0%, #ff1e63 48%, #075bff 100%);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 28px rgba(255, 11, 80, 0.5), 0 0 28px rgba(7, 91, 255, 0.28);
  overflow: hidden;
}

.mc-nav-cta::before,
.mc-btn::before,
.mc-game-card a::before,
.mc-contact-form__btn::before,
.mc-proof-card::before,
.mc-step::before,
.mc-final-cta::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -55%;
  width: 42%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  opacity: 0;
  pointer-events: none;
}

.mc-nav-cta:hover::before,
.mc-btn:hover::before,
.mc-game-card a:hover::before,
.mc-contact-form__btn:hover::before,
.mc-proof-card:hover::before,
.mc-step:hover::before,
.mc-final-cta:hover::before {
  opacity: 1;
  animation: mc-shine 760ms ease;
}

.mc-main {
  min-height: 64vh;
}

.mc-shell {
  width: min(var(--mc-max), calc(100% - 40px));
  margin: 0 auto;
}

.mc-hero {
  position: relative;
  min-height: 705px;
  display: grid;
  align-items: center;
  padding: 82px 0 42px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 6, 11, 0.3), rgba(5, 6, 11, 0.88)),
    linear-gradient(90deg, rgba(5, 6, 11, 0.82), rgba(13, 8, 27, 0.38), rgba(5, 6, 11, 0.72)),
    url("images/hero-neon-casino.jpg") center / cover no-repeat;
  border-bottom: 1px solid rgba(50, 230, 255, 0.28);
  box-shadow: inset 0 -80px 100px rgba(5, 6, 11, 0.94);
}

.mc-hero::before,
.mc-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.mc-hero::before {
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 11, 80, 0.26), transparent 34%),
    radial-gradient(circle at 72% 20%, rgba(50, 230, 255, 0.18), transparent 32%);
}

.mc-hero::after {
  left: 0;
  right: 0;
  bottom: -1px;
  height: 110px;
  background: linear-gradient(180deg, transparent, #05060b);
}

.mc-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
  justify-items: center;
  text-align: center;
}

.mc-hero-copy {
  display: grid;
  justify-items: center;
}

.mc-kicker {
  margin: 0 0 10px;
  color: var(--mc-cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(50, 230, 255, 0.95), 0 0 30px rgba(7, 91, 255, 0.6);
}

.mc-hero h1 {
  max-width: 1120px;
  margin: 0;
  color: #fff;
  font-size: 78px;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.35),
    0 0 26px rgba(255, 11, 80, 0.9),
    0 0 58px rgba(255, 11, 80, 0.72),
    0 0 84px rgba(7, 91, 255, 0.42);
}

.mc-hero--compact {
  min-height: 430px;
}

.mc-hero--compact .mc-hero-grid {
  min-height: 310px;
}

.mc-hero--compact h1 {
  max-width: 920px;
  font-size: 58px;
}

.mc-lead {
  max-width: 780px;
  margin: 18px 0 24px;
  color: #dce6ff;
  font-size: 19px;
  text-shadow: 0 0 14px rgba(7, 91, 255, 0.5);
}

.mc-fineprint {
  margin: 16px 0 0;
  color: rgba(230, 236, 255, 0.82);
  font-size: 13px;
}

.mc-hero-panel {
  width: min(690px, 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.mc-bonus-card {
  position: relative;
  width: 100%;
  padding: 28px 30px;
  border: 1px solid rgba(50, 230, 255, 0.74);
  background:
    linear-gradient(135deg, rgba(255, 11, 80, 0.38), rgba(7, 91, 255, 0.48)),
    rgba(12, 15, 31, 0.72);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 34px rgba(7, 91, 255, 0.55),
    0 0 58px rgba(255, 11, 80, 0.32);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.mc-bonus-card::before {
  content: "";
  position: absolute;
  inset: -35% -20% auto auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.24), transparent 62%);
  transform: rotate(24deg);
}

.mc-bonus-card span,
.mc-bonus-card em {
  position: relative;
  display: block;
  font-style: normal;
}

.mc-bonus-card span {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.mc-bonus-card strong {
  position: relative;
  display: block;
  color: #fff;
  font-size: 70px;
  line-height: 1;
  text-shadow: 0 0 22px rgba(255, 11, 80, 0.9), 0 0 36px rgba(7, 91, 255, 0.7);
}

.mc-bonus-card em {
  color: #1680ff;
  font-size: 26px;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(50, 230, 255, 0.65);
}

.mc-chip {
  padding: 10px 15px;
  border: 1px solid rgba(50, 230, 255, 0.32);
  background: rgba(5, 6, 11, 0.62);
  color: #e8edff;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(7, 91, 255, 0.24);
}

.mc-content-wrap {
  padding: 42px 0 54px;
}

.mc-content,
.mc-final-cta,
.mc-faq,
.mc-contact,
.mc-proof-card,
.mc-step,
.mc-payments,
.mc-action-panel {
  border: 1px solid rgba(50, 230, 255, 0.25);
  background:
    linear-gradient(145deg, rgba(255, 11, 80, 0.08), rgba(7, 91, 255, 0.1)),
    var(--mc-panel);
  box-shadow: 0 0 30px rgba(7, 91, 255, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.mc-content,
.mc-final-cta,
.mc-faq,
.mc-payments,
.mc-action-panel {
  padding: 28px;
}

.mc-content h2,
.mc-content h3,
.mc-final-cta h2,
.mc-section-head h2,
.mc-proof-card h2,
.mc-step h3,
.mc-action-panel h2,
.mc-faq__title,
.mc-faq__q {
  color: #fff;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(7, 91, 255, 0.62);
}

.mc-content p,
.mc-content li,
.mc-proof-card p,
.mc-step p,
.mc-action-panel p,
.mc-action-panel li,
.mc-faq__a {
  color: var(--mc-muted);
}

.mc-content img {
  max-width: 100%;
  height: auto;
}

.mc-contact {
  padding: 28px;
}

.mc-contact-form {
  display: grid;
  gap: 18px;
}

.mc-contact-form__group {
  display: grid;
  gap: 8px;
}

.mc-contact-form__label {
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(7, 91, 255, 0.54);
}

.mc-contact-form__req {
  color: var(--mc-red);
}

.mc-contact-form__input,
.mc-contact-form__textarea {
  width: 100%;
  border: 1px solid rgba(50, 230, 255, 0.32);
  background: rgba(5, 6, 12, 0.76);
  color: var(--mc-text);
  padding: 13px 14px;
  font: inherit;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 18px rgba(7, 91, 255, 0.1);
}

.mc-contact-form__textarea {
  resize: vertical;
}

.mc-contact-form__input:focus,
.mc-contact-form__textarea:focus {
  border-color: rgba(255, 11, 80, 0.72);
  box-shadow: 0 0 24px rgba(255, 11, 80, 0.18), 0 0 24px rgba(7, 91, 255, 0.14);
}

.mc-contact-form__btn {
  border: 0;
  cursor: pointer;
}

.mc-contact-form__status {
  margin: 0;
  color: var(--mc-muted);
}

.mc-contact-form__status.is-success {
  color: #7dffca;
}

.mc-contact-form__status.is-error {
  color: #ff8a9f;
}

.mc-final-cta,
.mc-faq,
.mc-contact,
.mc-proof-grid,
.mc-games,
.mc-steps,
.mc-payments,
.mc-action-panel {
  margin-top: 28px;
}

.mc-proof-grid,
.mc-step-grid {
  display: grid;
  gap: 18px;
}

.mc-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mc-proof-card,
.mc-step,
.mc-final-cta {
  position: relative;
  overflow: hidden;
}

.mc-proof-card,
.mc-step {
  padding: 22px;
}

.mc-proof-value {
  display: block;
  color: var(--mc-cyan);
  font-size: 34px;
  font-weight: 900;
  text-shadow: 0 0 22px rgba(50, 230, 255, 0.92);
}

.mc-section-head {
  margin-bottom: 18px;
  text-align: center;
}

.mc-section-head h2 {
  margin: 0;
  font-size: 38px;
}

.mc-games {
  width: 100%;
  overflow: hidden;
  padding: 26px 0 34px;
  background:
    linear-gradient(90deg, rgba(7, 91, 255, 0.18), transparent 16%, transparent 84%, rgba(255, 11, 80, 0.18)),
    #18191c;
  border-top: 1px solid rgba(7, 91, 255, 0.66);
  border-bottom: 1px solid rgba(7, 91, 255, 0.66);
  box-shadow: inset 0 0 38px rgba(7, 91, 255, 0.24);
}

.mc-games .mc-section-head h2 {
  font-size: 42px;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.4), 0 0 28px rgba(7, 91, 255, 1);
}

.mc-games-ribbon {
  --mc-marquee-distance: 0px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 316px);
  gap: 32px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 20px 10px;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--mc-blue) #1b1b20;
  will-change: transform;
}

.mc-games-ribbon.is-marquee-ready {
  overflow-x: visible;
  animation: mc-ribbon-boomerang 18s ease-in-out infinite alternate;
}

.mc-games:hover .mc-games-ribbon.is-marquee-ready,
.mc-games:focus-within .mc-games-ribbon.is-marquee-ready {
  animation-play-state: paused;
}

.mc-game-card {
  position: relative;
  min-height: 338px;
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-items: end;
  gap: 14px;
  padding: 206px 16px 18px;
  overflow: hidden;
  scroll-snap-align: start;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0 52%, rgba(20, 20, 24, 0.92) 53%),
    var(--mc-game-img) center top / 100% 60% no-repeat,
    var(--mc-panel-solid);
  border: 1px solid rgba(7, 91, 255, 0.9);
  box-shadow: 0 0 20px rgba(7, 91, 255, 0.74), 0 0 30px rgba(255, 11, 80, 0.15);
}

.mc-game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.2) 42%, transparent 56%);
  transform: translateX(-120%);
  pointer-events: none;
}

.mc-game-card:hover::before {
  animation: mc-card-shine 900ms ease;
}

.mc-game-card span {
  position: relative;
  z-index: 1;
  font-size: 21px;
  font-weight: 900;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.24);
}

.mc-game-card a {
  z-index: 1;
  min-height: 48px;
  background: linear-gradient(135deg, #075bff, #0448dc);
  box-shadow: 0 0 22px rgba(7, 91, 255, 0.62);
}

.mc-step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mc-step span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--mc-pink);
  color: #fff;
  background: linear-gradient(135deg, var(--mc-pink), var(--mc-blue));
  font-weight: 900;
  box-shadow: 0 0 22px rgba(255, 11, 80, 0.45);
}

.mc-table-wrap {
  overflow-x: auto;
}

.mc-payment-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.mc-payment-table th,
.mc-payment-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(50, 230, 255, 0.16);
  text-align: left;
}

.mc-payment-table th {
  color: var(--mc-cyan);
  text-shadow: 0 0 12px rgba(50, 230, 255, 0.68);
}

.mc-action-panel ul {
  margin: 0;
  padding-left: 20px;
}

.mc-footer {
  position: relative;
  border-top: 1px solid rgba(255, 11, 80, 0.42);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 11, 80, 0.2), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(7, 91, 255, 0.2), transparent 28%),
    #05060b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 -22px 58px rgba(255, 11, 80, 0.1);
}

.mc-footer-inner {
  width: min(var(--mc-max), calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0;
}

.mc-footer-brand {
  margin-bottom: 14px;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(255, 11, 80, 0.86), 0 0 28px rgba(7, 91, 255, 0.55);
}

.mc-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.mc-footer-note,
.mc-footer-copy {
  margin: 8px 0 0;
  color: var(--mc-muted);
  font-size: 14px;
}

@keyframes mc-shine {
  from { transform: translateX(0) rotate(18deg); }
  to { transform: translateX(420%) rotate(18deg); }
}

@keyframes mc-card-shine {
  from { transform: translateX(-120%); }
  to { transform: translateX(130%); }
}

@keyframes mc-ribbon-boomerang {
  from { transform: translateX(0); }
  to { transform: translateX(calc(var(--mc-marquee-distance) * -1)); }
}

@media (max-width: 920px) {
  .mc-header {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mc-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .mc-nav-cta {
    width: 100%;
  }

  .mc-hero {
    min-height: 660px;
    padding-top: 54px;
  }

  .mc-hero h1 {
    font-size: 46px;
  }

  .mc-proof-grid,
  .mc-step-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .mc-shell {
    width: min(var(--mc-max), calc(100% - 28px));
  }

  .mc-header {
    padding: 12px 16px;
  }

  .mc-hero {
    min-height: 640px;
  }

  .mc-hero h1 {
    font-size: 34px;
  }

  .mc-lead {
    font-size: 16px;
  }

  .mc-bonus-card {
    padding: 22px 18px;
  }

  .mc-bonus-card strong {
    font-size: 54px;
  }

  .mc-games-ribbon {
    grid-auto-columns: minmax(248px, 82vw);
    gap: 18px;
  }

  .mc-section-head h2,
  .mc-games .mc-section-head h2 {
    font-size: 30px;
  }
}

.mc-js [data-mc-boot] .mc-hero-copy,
.mc-js [data-mc-boot] .mc-hero-panel,
.mc-js [data-mc-reveal] {
  opacity: 0;
  transform: translateY(18px);
}

.mc-js [data-mc-boot].is-ready .mc-hero-copy,
.mc-js [data-mc-boot].is-ready .mc-hero-panel,
.mc-js [data-mc-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

.mc-js [data-mc-boot].is-ready .mc-hero-panel {
  transition-delay: 100ms;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .mc-js [data-mc-boot] .mc-hero-copy,
  .mc-js [data-mc-boot] .mc-hero-panel,
  .mc-js [data-mc-reveal] {
    opacity: 1;
    transform: none;
  }

  .mc-games-ribbon.is-marquee-ready {
    overflow-x: auto;
    animation: none;
  }
}
