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

html {
  scroll-behavior: smooth;
}

:root {
  --mp-bg0: #06101a;
  --mp-bg1: #071a24;
  --mp-ink: #f3f6fb;
  --mp-muted: rgba(243, 246, 251, 0.75);
  --mp-faint: rgba(243, 246, 251, 0.6);
  --mp-stroke: rgba(203, 213, 225, 0.22);

  --mp-accent: #22d3ee;
  --mp-accent2: #a78bfa;
  --mp-warm: #f59e0b;

  --mp-card: rgba(10, 22, 33, 0.78);
  --mp-card2: rgba(10, 22, 33, 0.62);
  --mp-shadow: 0 20px 46px rgba(0, 0, 0, 0.45);
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(1100px circle at 18% 10%, rgba(34, 211, 238, 0.16), transparent 55%),
    radial-gradient(900px circle at 82% 0%, rgba(167, 139, 250, 0.14), transparent 55%),
    linear-gradient(165deg, var(--mp-bg1), var(--mp-bg0));
  color: var(--mp-ink);
  line-height: 1.65;
}


.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


.mp-agebar {
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.95), rgba(167, 139, 250, 0.95));
  color: #041016;
  font-size: 0.92rem;
}
.mp-agebar__inner {
  padding: 0.7rem 0.25rem;
}
.mp-agebar p {
  margin: 0;
  padding: 0 15px;
}


.mp-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(to right, rgba(5, 12, 20, 0.92), rgba(5, 18, 24, 0.92));
  border-bottom: 1px solid var(--mp-stroke);
}
.mp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 15px;
  gap: 1.25rem;
}

.mp-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: inherit;
}
.mp-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: radial-gradient(circle at top, rgba(34, 211, 238, 0.25), rgba(167, 139, 250, 0.18));
  overflow: hidden;
}
.mp-brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mp-brand__text {
  display: flex;
  flex-direction: column;
}
.mp-brand__title {
  font-weight: 650;
  letter-spacing: 0.02em;
  font-size: 1.02rem;
}
.mp-brand__subtitle {
  font-size: 0.74rem;
  color: var(--mp-muted);
}


.mp-nav {
  position: relative;
}
.mp-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  font-size: 0.92rem;
}
.mp-nav__list a {
  text-decoration: none;
  color: rgba(243, 246, 251, 0.92);
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.mp-nav__list a:hover {
  background: rgba(203, 213, 225, 0.12);
  border-color: rgba(203, 213, 225, 0.18);
  transform: translateY(-1px);
}

.mp-nav__cta a {
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.95), rgba(34, 211, 238, 0.92));
  color: #0b1020;
  font-weight: 700;
}
.mp-nav__cta a:hover {
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.95), rgba(167, 139, 250, 0.92));
}

.mp-nav__divider {
  height: 1.15rem;
  width: 1px;
  background: rgba(203, 213, 225, 0.55);
}


.mp-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(203, 213, 225, 0.45);
  background: radial-gradient(circle at top, rgba(203, 213, 225, 0.12), rgba(5, 18, 24, 0.95));
  padding: 0;
}
.mp-nav__toggle span {
  display: block;
  height: 2px;
  width: 1.12rem;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(243, 246, 251, 0.92);
  transition: transform 0.18s ease, opacity 0.18s ease;
}


.mp-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  filter: saturate(1.05) contrast(1.03);
}
.mp-backdrop--hero {
  background-image: url(../img/hero-bg.jpg);
}
.mp-backdrop--soft {
  background-image: url(../img/background.jpg);
  opacity: 0.12;
}


.mp-hero {
  position: relative;
  padding: 4.2rem 0 4.6rem 0;
}
.mp-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 2.6rem;
  align-items: start;
}
.mp-hero__content h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
}
.mp-lead {
  font-size: 1.05rem;
  color: var(--mp-muted);
  margin: 0 0 1.2rem 0;
  max-width: 60ch;
}

.mp-bullets {
  margin: 0 0 1.25rem 0;
  padding-left: 1.1rem;
  color: rgba(243, 246, 251, 0.9);
}
.mp-bullets li {
  margin-bottom: 0.35rem;
}

.mp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.mp-btn-primary,
.mp-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.62rem 1.05rem;
  font-weight: 700;
  border: 1px solid rgba(203, 213, 225, 0.25);
  transition: transform 0.18s ease, filter 0.18s ease, background 0.18s ease;
}
.mp-btn-primary {
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.92), rgba(167, 139, 250, 0.92));
  color: #071018;
  border-color: rgba(255, 255, 255, 0.18);
}
.mp-btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}
.mp-btn-secondary {
  background: rgba(10, 22, 33, 0.62);
  color: rgba(243, 246, 251, 0.92);
}
.mp-btn-secondary:hover {
  transform: translateY(-1px);
  background: rgba(10, 22, 33, 0.74);
}
.mp-full {
  width: 100%;
}

.mp-hero__note {
  font-size: 0.9rem;
  color: rgba(243, 246, 251, 0.72);
  margin: 0.75rem 0 0 0;
}


.mp-hero__panel {
  position: relative;
  border-radius: 1.25rem;
  padding: 1.2rem;
  background: linear-gradient(155deg, rgba(10, 22, 33, 0.74), rgba(10, 22, 33, 0.56));
  border: 1px solid rgba(203, 213, 225, 0.22);
  box-shadow: var(--mp-shadow);
}

.mp-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 1.15rem;
}
.mp-stat {
  border-radius: 0.9rem;
  padding: 0.72rem 0.75rem;
  background: rgba(7, 16, 26, 0.48);
  border: 1px solid rgba(203, 213, 225, 0.18);
}
.mp-stat__label {
  display: block;
  font-size: 0.72rem;
  color: rgba(243, 246, 251, 0.66);
}
.mp-stat__value {
  font-size: 0.9rem;
  font-weight: 700;
}

.mp-how__title {
  font-size: 1.08rem;
  margin: 0 0 0.6rem 0;
}
.mp-how ol {
  padding-left: 1.15rem;
  margin: 0;
  font-size: 0.95rem;
  color: rgba(243, 246, 251, 0.86);
}
.mp-how li {
  margin-bottom: 0.35rem;
}


.mp-section,
.mp-section-alt {
  position: relative;
  padding: 5rem 0;
}
.mp-section-alt {
  background: radial-gradient(700px circle at 70% 18%, rgba(34, 211, 238, 0.12), transparent 60%),
    radial-gradient(700px circle at 22% 35%, rgba(245, 158, 11, 0.07), transparent 60%);
}

.mp-section__header {
  max-width: 760px;
  margin: 0 auto 2.7rem auto;
  text-align: center;
}
.mp-section__header h2 {
  font-size: 2.0rem;
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}
.mp-section__header p {
  color: var(--mp-muted);
  font-size: 1.0rem;
}


.mp-grid {
  display: grid;
  gap: 1.6rem;
}
.mp-grid-games {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.mp-grid-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.mp-grid-resp {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mp-card {
  background: linear-gradient(145deg, var(--mp-card), var(--mp-card2));
  border-radius: 1.25rem;
  padding: 1.45rem 1.35rem 1.55rem 1.35rem;
  border: 1px solid rgba(203, 213, 225, 0.18);
  box-shadow: var(--mp-shadow);
}
.mp-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.12rem;
}
.mp-card p {
  font-size: 0.96rem;
}


.mp-gamecard {
  position: relative;
}
.mp-gamecard__media {
  width: 100%;
  margin-bottom: 12px;
}
.mp-gamecard__media img {
  width: 100%;
  border-radius: 0.9rem;
  border: 1px solid rgba(203, 213, 225, 0.14);
}
.mp-gamecard__tagline {
  color: var(--mp-muted);
  font-size: 0.92rem;
  margin-top: -0.1rem;
  margin-bottom: 0.85rem;
}
.mp-gamecard h4 {
  margin-top: 0.95rem;
  margin-bottom: 0.45rem;
  font-size: 0.98rem;
}
.mp-gamecard ul {
  padding-left: 1.12rem;
  margin: 0 0 0.5rem 0;
  font-size: 0.92rem;
}


.mp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}
.mp-chip {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(203, 213, 225, 0.08);
  border: 1px solid rgba(203, 213, 225, 0.2);
}


.mp-stepcard p {
  font-size: 0.92rem;
  color: rgba(243, 246, 251, 0.88);
}


.mp-checklist {
  padding-left: 1.15rem;
  margin: 0;
  font-size: 0.92rem;
  color: rgba(243, 246, 251, 0.88);
}
.mp-checklist li {
  margin-bottom: 0.28rem;
}


.mp-faq {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.8rem;
}
.mp-faq__item {
  border-radius: 1.05rem;
  border: 1px solid rgba(203, 213, 225, 0.22);
  background: rgba(10, 22, 33, 0.64);
  padding: 0.35rem 1.0rem;
}
.mp-faq__item summary {
  cursor: pointer;
  padding: 0.58rem 0;
  font-weight: 650;
  list-style: none;
}
.mp-faq__item summary::-webkit-details-marker {
  display: none;
}
.mp-faq__item summary::after {
  content: "+";
  float: right;
  font-weight: 400;
  color: rgba(243, 246, 251, 0.6);
}
.mp-faq__item[open] summary::after {
  content: "–";
}
.mp-faq__item p {
  padding: 0 0 0.75rem 0;
  margin: 0;
  border-top: 1px solid rgba(203, 213, 225, 0.16);
  color: rgba(243, 246, 251, 0.86);
}


.mp-support {
  margin-top: 2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(203, 213, 225, 0.18);
  background: rgba(10, 22, 33, 0.5);
  padding: 1.35rem 1.35rem 1.25rem 1.35rem;
}
.mp-support h3 {
  margin: 0 0 0.6rem 0;
}


.mp-auth {
  padding: 4rem 0;
}
.mp-auth__container {
  max-width: 760px;
}
.mp-auth__card {
  padding: 1.6rem 1.45rem;
}
.mp-auth__intro {
  color: var(--mp-muted);
  margin-top: 0.25rem;
  margin-bottom: 1.2rem;
}


.mp-form {
  display: grid;
  gap: 1.05rem;
}
.mp-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.mp-form__field label {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
  color: rgba(243, 246, 251, 0.86);
}
.mp-form__field input,
.mp-form__field select,
.mp-form__field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(203, 213, 225, 0.2);
  background: rgba(7, 16, 26, 0.55);
  color: rgba(243, 246, 251, 0.94);
  outline: none;
}
.mp-form__field input:focus,
.mp-form__field select:focus,
.mp-form__field textarea:focus {
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.14);
}

.mp-form__row {
  display: flex;
  justify-content: flex-start;
}

.mp-check {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: rgba(243, 246, 251, 0.9);
}
.mp-check input {
  margin-top: 0.12rem;
}
.mp-form__note {
  font-size: 0.88rem;
  color: rgba(243, 246, 251, 0.7);
  margin: 0;
}


.mp-legal {
  width: 100%;
  padding: 1.25rem 0;
  display: flex;
  justify-content: center;
}
.mp-legal__container {
  width: 100%;
  max-width: 860px;
  padding: 1.55rem 1.45rem;
  border-radius: 1.25rem;
  background: rgba(10, 22, 33, 0.62);
  border: 1px solid rgba(203, 213, 225, 0.18);
  box-shadow: var(--mp-shadow);
}
.mp-legal__title {
  margin-top: 0;
}
.mp-legal__domain {
  color: rgba(243, 246, 251, 0.66);
  margin-top: -0.25rem;
}
.mp-legal__contact {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(203, 213, 225, 0.16);
  background: rgba(7, 16, 26, 0.4);
}
.mp-legal__note {
  color: rgba(243, 246, 251, 0.66);
  font-size: 0.9rem;
}


a {
  color: rgba(34, 211, 238, 0.95);
}
a:hover {
  color: rgba(245, 158, 11, 0.95);
}


@media (max-width: 960px) {
  .mp-nav__toggle {
    display: flex;
  }

  .mp-hero__inner {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  }

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

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

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

  .mp-nav__list {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(5, 18, 24, 0.98);
    border-radius: 1.05rem;
    padding: 0.55rem;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
    min-width: 12.5rem;
    display: none;
  }

  .mp-nav.mp-nav--open .mp-nav__list {
    display: flex;
  }

  .mp-nav__list a {
    width: 100%;
  }

  .mp-nav__divider {
    width: 100%;
    height: 1px;
    background: rgba(203, 213, 225, 0.22);
  }

  .mp-form__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .mp-hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .mp-hero__panel {
    margin-top: 0.75rem;
  }

  .mp-hero__content h1 {
    font-size: 2.05rem;
  }

  .mp-grid-games,
  .mp-grid-steps,
  .mp-grid-resp {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (max-width: 480px) {
  .mp-hero {
    padding-top: 3.4rem;
  }

  .mp-hero__content h1 {
    font-size: 1.8rem;
  }
}
 


.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(3, 7, 18, 0.98));
  padding: 2.2rem 0 1.8rem 0;
}

.site-footer.compact {
  padding: 1.7rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.footer-main {
  max-width: 600px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.footer-title {
  font-size: 0.96rem;
  font-weight: 600;
}

.footer-text {
  font-size: 0.84rem;
  color: #9ca3af;
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr) minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 1.2rem;
  font-size: 0.85rem;
}

.logo-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}
.age18 {
  color: #800;
  font-size: 22px;
  font-weight: 900;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #800;
  user-select: none;
  background: #fff;
}
.logo-trust a {
  height: 48px;
  padding: 6px;
  border-radius: 4px;
  border: 1px solid #fff2;
  display: block;
  margin: 0;
  background: rgba(38, 81, 73, 0.29);
}
.logo-trust img {
  height: 100%;
}

.footer-column h3 {
  font-size: 0.86rem;
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.25rem;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: none;
  color: #fff
}

.footer-bottom {
  border-top: 1px solid rgba(55, 65, 81, 0.9);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  font-size: 16px;
  color: #ccc;
  text-align: center;
}
.footer-bottom p {
  margin: 10px 0;
}

.logo-mark img {
  width: 100%;
}
.logo-mark {
  width: 42px;
}
