@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

:root {
  --brand-blue: #00a0fa;
  --brand-blue-dark: #167cd1;
  --brand-purple: #7e39b3;
  --ink: #111111;
  --header: #f0f0f0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 121px;
  color: var(--ink);
  background: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

a:hover,
a:focus {
  color: var(--brand-blue-dark);
}

.notice-strip {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 36px;
  background: var(--brand-blue);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.12);
}

.notice-strip a {
  display: block;
  padding: 8px 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.notice-strip a:hover,
.notice-strip a:focus {
  background: var(--brand-blue-dark);
  color: #ffffff;
  text-decoration: underline;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 36px;
  left: 0;
  width: 100%;
  height: 85px;
  background: var(--header);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

.brand {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 161px;
  height: 50px;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.top-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 161px;
  height: 50px;
  overflow: hidden;
  background-image: url("sprite-mrplay-main.png?v=3544");
  background-repeat: no-repeat;
  background-position: 0 0;
  text-indent: -300px;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.header-cta {
  position: absolute;
  top: 50%;
  right: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  height: 38px;
  padding: 0 22px;
  border: 1px solid var(--brand-blue);
  border-radius: 5px;
  background: var(--brand-blue);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(-50%);
  transition: background 160ms ease, border-color 160ms ease;
}

.header-cta:hover,
.header-cta:focus,
.submit-button:hover,
.submit-button:focus {
  background: var(--brand-blue-dark) !important;
  border-color: var(--brand-blue-dark) !important;
  color: #ffffff !important;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(520px, calc(100svh - 120px), 720px);
  padding: 54px clamp(22px, 6vw, 96px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 46%, rgba(255, 255, 255, 0.28) 78%),
    url("star-bg.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: var(--brand-blue);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(660px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 630px;
  margin-bottom: 18px;
  color: #303030;
  font-size: 19px;
  line-height: 1.45;
}

.site-footer a {
  color: var(--brand-blue);
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--brand-blue-dark);
  text-decoration: underline;
}

.hero-model {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(30vw, 300px);
  min-width: 220px;
  filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.email-form {
  max-width: 590px;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  width: 100%;
  padding: 4px;
  border: 2px solid var(--brand-blue);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.95);
}

.form-row input {
  width: 100%;
  min-width: 0;
  height: 54px;
  padding: 0 18px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 17px;
}

.form-row input::placeholder {
  color: #929292;
}

.submit-button {
  min-width: 152px;
  height: 54px;
  padding: 0 24px;
  border: 1px solid var(--brand-blue);
  border-radius: 5px;
  background: var(--brand-blue);
  color: #ffffff;
  font: inherit;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  max-width: 560px;
  margin-top: 14px;
  color: #424242;
  font-size: 13px;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand-blue);
  transform: translateY(1px);
}

.form-status {
  min-height: 24px;
  margin: 8px 0 0;
  color: var(--brand-purple);
  font-size: 14px;
  font-weight: 600;
}

.form-status.error {
  color: #b00020;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
  padding: 32px clamp(22px, 6vw, 96px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--header);
  color: var(--ink);
}

.footer-content {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer-links a {
  font-size: 13px;
  font-weight: 600;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--brand-blue);
}

.site-footer .top-logo {
  position: relative;
  top: auto;
  left: auto;
  flex: 0 0 auto;
  border-radius: 5px;
  transform: none;
}

.site-footer p {
  margin: 0;
  color: #555555;
  font-size: 14px;
}

.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;
}

@media (max-width: 1080px) {
  .hero-model {
    right: 0;
    width: 240px;
    opacity: 0.45;
  }
}

@media (max-width: 720px) {
  body {
    padding-top: 112px;
  }

  .site-header {
    top: 48px;
    height: 64px;
  }

  .notice-strip {
    min-height: 48px;
  }

  .notice-strip a {
    padding: 7px 14px;
    font-size: 13px;
  }

  .brand {
    left: 18px;
    transform: translateY(-50%) scale(0.62);
    transform-origin: left center;
  }

  .header-cta {
    right: 12px;
    min-width: 104px;
    height: 36px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero {
    align-items: flex-start;
    min-height: clamp(560px, calc(100svh - 92px), 680px);
    padding: 40px 20px 34px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.90) 68%, rgba(255, 255, 255, 0.72) 100%),
      url("star-bg.jpg") center / cover no-repeat;
  }

  .hero::before {
    width: 5px;
  }

  h1 {
    max-width: 360px;
    font-size: clamp(31px, 9.5vw, 42px);
    line-height: 1.04;
  }

  .hero-copy {
    max-width: 340px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-model {
    right: 0;
    width: 210px;
    min-width: 0;
    opacity: 0.18;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .submit-button,
  .form-row input {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 380px) {
  .header-cta {
    min-width: 94px;
    padding: 0 10px;
    font-size: 12px;
  }

  .brand {
    transform: translateY(-50%) scale(0.56);
  }

  h1 {
    font-size: 30px;
  }
}
