:root {
  --bg: #161a35;
  --bg-alt: #161a35;
  --surface: #1f243a;
  --surface-2: #1f243a;
  --text: #ffffff;
  --muted: #ffffff;
  --accent: #8b01ff;
  --accent-2: #A46DFC;
  --accent-3: #925BEB;
  --accent-hover: #7900D6;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(6, 4, 18, 0.6);
  --radius: 18px;
  --radius-sm: 12px;
  --font-primary: "Poppins", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  background: var(--bg);
  color: var(--text);
  min-height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s ease;
}

a:hover {
  transform: scale(1.05);
  color: white;
}

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

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1160px, calc(100% - 120px));
  margin: 0 auto;
  z-index: 1;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 16px;
}

.col-span-1 {
  grid-column: span 1;
}

.col-span-2 {
  grid-column: span 2;
}

.col-span-3 {
  grid-column: span 3;
}

.col-span-4 {
  grid-column: span 4;
}

.col-span-5 {
  grid-column: span 5;
}

.col-span-6 {
  grid-column: span 6;
}

.col-span-7 {
  grid-column: span 7;
}

.col-span-8 {
  grid-column: span 8;
}

.col-span-9 {
  grid-column: span 9;
}

.col-span-10 {
  grid-column: span 10;
}

.col-span-11 {
  grid-column: span 11;
}

.col-span-12 {
  grid-column: span 12;
}


.hero {
  padding: 110px 0 80px;
}

.hero-card {
  background: linear-gradient(140deg, rgba(125, 75, 255, 0.2), rgba(35, 212, 255, 0.1));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-visual {
  min-height: 320px;
  border-radius: var(--radius);
  background: radial-gradient(circle at 20% 20%, rgba(125, 75, 255, 0.45), transparent 45%),
    radial-gradient(circle at 70% 20%, rgba(35, 212, 255, 0.35), transparent 40%),
    linear-gradient(140deg, rgba(18, 12, 34, 0.9), rgba(7, 6, 18, 0.95));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: calc(var(--radius) - 8px);
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--accent-2);
}

h1,
h2,
h3 {
  margin: 0 0 12px;
}

h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-copy {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 200;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 200;
}

small {
  display: block;
  margin-top: 106px;
  font-size: 14px;
  color: #AFB1BE;
  /* subtle grey */
  line-height: 1.4;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  padding: 8px 16px;
  justify-content: center;
  border-radius: 4px;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  border: 1px solid transparent;
  letter-spacing: 0.5px;
  transition: transform 0.15s ease, background 0.2s ease;
  cursor: pointer;
}

.button:hover {
  background: var(--accent-hover);
  color: #ffffff;
  transform: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button-ghost {
  background: transparent;
  border: 1px solid #ffffff;
  color: var(--text);
  box-shadow: none;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.scroll-indicator {
  margin-top: 26px;
  font-size: 1.4rem;
  color: var(--text);
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.scroll-indicator:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
}

.scroll-indicator:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.pc-panel-1-copy h2,
.pc-panel-2-copy h2,
.pc-panel-3-copy h2,
.pc-panel-4-copy h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.section {
  padding: 50px 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px;
  min-height: 160px;
}

.card h3 {
  margin-bottom: 8px;
}

.highlight {
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 1px solid var(--border);
}




.panel-split {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(240px, 0.9fr);
  gap: 36px;
  align-items: center;
}

.banner {
  background: linear-gradient(213.3deg,
      #4bd1e4,
      #48c0e7 10%,
      #45a9ed 20%,
      #4291f2 30%,
      #556cf5 40%,
      #6649f8 50%,
      #7727fb 60%,
      #8609fe 70%,
      #a410f3 80%,
      #c423e6 90%,
      #cd28e2);
}

.banner .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 8px 4px;
  flex-wrap: nowrap;
  flex-direction: row;
}

.banner p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  flex: 1 1 320px;
}

.banner .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.banner a {
  font-weight: 600;
  color: var(--text);
}

.phone-stack {
  position: relative;
  min-height: 260px;
}

.phone {
  position: absolute;
  right: 0;
  top: 0;
  width: 180px;
  height: 320px;
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(125, 75, 255, 0.8), rgba(35, 212, 255, 0.4));
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.phone.secondary {
  right: 110px;
  top: 30px;
  transform: rotate(-6deg);
  background: linear-gradient(160deg, rgba(255, 95, 191, 0.7), rgba(125, 75, 255, 0.4));
}

.games-strip {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.games-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.game-tile {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(125, 75, 255, 0.4), rgba(35, 212, 255, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

@media (max-width: 900px) {

  .hero,
  .panel-split {
    grid-template-columns: 1fr;
  }

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

  .phone-stack {
    min-height: 320px;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.legal {
  display: grid;
  gap: 18px;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 60px;
  }

  .container {
    width: min(1160px, calc(100% - 80px));
    margin: 0 auto;
  }
}

.signup-modal {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.signup-modal__consent-wrap {
  margin-top: 10px;
}

.signup-modal.is-open {
  display: flex;
}

.signup-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 28, 0.75);
}

.signup-modal__dialog {
  position: relative;
  width: min(740px, 100%);
  max-height: calc(100vh - 24px);
  overflow-y: auto;
  margin: 0;
  padding: 26px 32px 32px;
  border-radius: 12px;
  background: #1c213a;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.signup-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff14;
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  padding: 0;
  line-height: 0;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
}

.signup-modal__close:hover {
  background-color: #ffffff3d;
}

.signup-modal__close img {
  width: 16px;
  height: 16px;
  display: block;
}

.signup-modal__dialog h2 {
  margin: 0 0 10px;
  text-align: center;
  font-size: 22px;
}

.signup-modal__dialog>p,
#signUpFormBody>p {
  margin: 0 auto 20px;
  max-width: 620px;
  text-align: center;
  color: #AFB1BE;
}

.signup-modal__form {
  display: grid;
  gap: 14px;
}

.signup-modal__form label {
  display: grid;
  gap: 6px;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}

.signup-modal__grid {
  display: grid;
  gap: 14px;
}

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

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

.signup-modal input,
.signup-modal select {
  width: 100%;
  height: 42px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #1c213a;
  color: #AFB1BE;
  padding: 0 12px;
  font: inherit;
  font-size: 14px;
  font-weight: 200;
}

.signup-modal input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.signup-modal__consent {
  display: grid !important;
  grid-template-columns: 26px 1fr;
  gap: 10px !important;
  align-items: start;
  margin-top: 0;
  line-height: 1.5;
  font-weight: 400;
  font-size: 13px;
  color: #fff;
}

.signup-modal__consent-text {
  display: flex;
  flex-direction: column;
}


.signup-modal__checkbox {
  display: inline-block;
  width: 26px;
  height: 26px;
  min-width: 26px;
  margin-top: 1px;
  cursor: pointer;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  border: 1px solid #454756;
  border-radius: 0.2rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.signup-modal__consent input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.signup-modal__consent a {
  color: #A46DFC;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.signup-modal__consent a:hover {
  color: var(--accent-2);
  transform: scale(1.01);
}

.signup-modal__submit {
  height: 42px;
  border-radius: 4px;
  border: 1px solid white;
  background: transparent;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-primary);
}

.signup-modal__submit:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

body.signup-modal-open {
  overflow: hidden;
}

.signup-modal select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  width: 100%;
  padding: 10px 36px 10px 12px;
  /* space for icon on right */

  background-image: url("https://vanrmarketingassets.blob.core.windows.net/assets/Other/Icon_Chevron_down_White.png");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;

  cursor: pointer;
}

.signup-modal input:active,
.signup-modal select:active {
  border: 1px solid white;
}

.signup-modal input:focus,
.signup-modal select:focus {
  border: 1px solid var(--accent-2);
  outline: none;
}

.signup-modal input,
.signup-modal select {
  color: white;
  /* text user types */
}

.signup-modal input::placeholder {
  color: #AFB1BE;
  /* lighter placeholder */
}


/* tick icon */
.signup-modal__consent input:checked+.signup-modal__checkbox {
  background-color: #A46DFC;
  border-color: #A46DFC;
  background-image: url("https://vanrmarketingassets.blob.core.windows.net/assets/Other/Icon_Tick.png");
}

.signup-modal__checkbox.errorsExist {
  border: 1px solid rgb(255, 60, 60) !important;
  border-radius: 0.2rem;
}

#terms-and-conditions-text {
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
}


.signup-modal input:-webkit-autofill,
.signup-modal input:-webkit-autofill:hover,
.signup-modal input:-webkit-autofill:focus,
.signup-modal input:-webkit-autofill:active,
.signup-modal select:-webkit-autofill,
.signup-modal select:-webkit-autofill:hover,
.signup-modal select:-webkit-autofill:focus,
.signup-modal select:-webkit-autofill:active {
  -webkit-text-fill-color: white;
  -webkit-box-shadow: 0 0 0 1000px #1c213a inset;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background-color 5000s ease-in-out 0s;
}

.signup-modal input:-webkit-autofill:focus,
.signup-modal select:-webkit-autofill:focus {
  -webkit-text-fill-color: white;
  -webkit-box-shadow: 0 0 0 1000px #1c213a inset, 0 0 0 1px var(--accent-2);
  caret-color: white;
  border: 1px solid var(--accent-2);
  outline: none;
}

.signup-modal input:autofill,
.signup-modal select:autofill {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #1c213a;
  color: white;
}

.signup-modal input {
  caret-color: white;
}

@media (max-width: 760px) {
  .signup-modal__dialog {
    padding: 22px 16px 18px;
  }

  .signup-modal__grid--2,
  .signup-modal__grid--3 {
    grid-template-columns: 1fr;
  }
}


/* ── Multi-select ───────────────────────────────────────────────────────── */

.gamesContainer {
  position: relative;
}

.signup-modal__form>label {
  padding-left: 2px;
}

.multi-selection {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  min-height: 42px;
}

.multi-selection input {
  border: none !important;
  background-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  width: 100%;
  color: white;
  height: 42px;
  padding: 0;
}

.multi-selection-options {
  position: absolute;
  background-color: #1a1f35;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  max-height: 210px;
  overflow: auto;
  z-index: 9999;
  box-shadow: 3px 10px 12px rgba(0, 0, 0, 0.2);
}

.multi-selection-selections {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 6px 6px;
}

.gameSelection {
  font-size: 12px;
  border-radius: 4px;
  padding: 6px 8px;
  color: #fff;
  background-color: #a46dfc;
  height: fit-content;
}

.selection-close-button {
  margin-left: 0.5rem;
  cursor: pointer;
}

.otherGameSelection {
  padding: 10px 12px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
}

.otherGameSelection.selected {
  color: rgba(255, 255, 255, 0.4);
}

.otherGameSelection.notSelected:hover {
  background-color: #252840;
  cursor: pointer;
}


/* ── Validation ─────────────────────────────────────────────────────────── */

.errorsExist {
  border: 1px solid rgb(255, 60, 60) !important;
  border-radius: 4px;
}

.error-message {
  margin-top: 6px;
  color: rgb(255, 60, 60);
  font-size: 0.8rem;
}

.blank-option {
  color: #AFB1BE !important;
}

.error-notification {
  color: white;
  display: flex;
  align-items: center;
  position: fixed;
  top: 20px;
  right: 20px;
  max-width: 360px;
  z-index: 999999999;
  background-color: #111;
  border-radius: 8px;
  font-size: 13px;
  border: 1px solid rgb(255, 60, 60) !important;
}

.error-icon-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0.8rem;
  background-color: red;
  border-radius: 100%;
  padding: 0.2rem;
  height: fit-content;
}

.close-button-error {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  object-fit: contain;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 6px;
  border-radius: 999px;
  margin: 0.8rem;
  box-sizing: content-box;
  cursor: pointer;
}

.close-button-error:hover {
  background-color: rgba(255, 255, 255, 0.24);
}


/* ── Email indicator ────────────────────────────────────────────────────── */

#email-indicator {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  line-height: 0;
}

#email-indicator img {
  width: 10px;
}

.email-error-icon-container,
.email-success-icon-container {
  border-radius: 100%;
  padding: 0.2rem;
}

.email-error-icon-container {
  background-color: red;
}

.email-success-icon-container {
  background-color: #3EC569;
}


/* ── Confirmation ───────────────────────────────────────────────────────── */

.signup-modal__confirmation {
  position: relative;
  width: min(480px, 100%);
  background: #1c213a;
  padding: 2.5rem 2rem 2rem;
  border-radius: 12px;
  text-align: center;
  z-index: 1;
}

.signup-modal__confirmation-image {
  width: 160px;
  display: block;
  margin: 0 auto 1rem;
}

.signup-modal__confirmation-title {
  font-size: 1.2rem;
  color: white;
  margin: 1rem 0;
}

#doneButton {
  width: 100%;
  margin-top: 1rem;
}

.signup-modal__confirmation-message,
.signup-modal__confirmation-cta {
  color: white;
  font-size: 13px;
  margin: 1rem 0;
  line-height: 1.5;
}

.signup-modal select option,
.signup-modal select optgroup {
  background-color: #1c213a;
  color: white;
}
