/* Tokens from new_design.html, adapted to the current index.html flow. */
:root {
  --bg: #0b0d1e;
  --bg2: #10143a;
  --purple-d: #1a0a3c;
  --purple-m: #4b1a8a;
  --teal: #0d3d4f;
  --pink: #d63fff;
  --cyan: #00e5ff;
  --accent: #b44fff;
  --btn-cta: #c850ff;
  --btn-cta-h: #a020e0;
  --white: #ffffff;
  --white60: rgba(255, 255, 255, 0.6);
  --white20: rgba(255, 255, 255, 0.15);
  --input-br: rgba(255, 255, 255, 0.35);
  --green: #22d47a;
  --r: 8px;
  --r-pill: 999px;
  --font-ui: "Segoe UI", system-ui, sans-serif;
}

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

html,
body {
  min-height: 100%;
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body.lock-scroll {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  overscroll-behavior: none;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(214, 63, 255, 0.26), transparent 26%),
    radial-gradient(circle at 82% 24%, rgba(0, 229, 255, 0.2), transparent 25%),
    linear-gradient(140deg, rgba(11, 13, 30, 0.25), rgba(26, 10, 60, 0.55)),
    url("../img/bg-desktop.png") center center / cover no-repeat;
}

body::after {
  z-index: 0;
  background: rgba(10, 8, 30, 0.2);
}

a {
  color: var(--white);
  text-decoration: underline;
}

img {
  max-width: 100%;
}

.d-none {
  display: none !important;
}

.section-email,
.section-form,
.section-ty {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  color: var(--white);
}

.section-email {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100svh;
  max-height: 100svh;
  overflow: hidden;
  padding: 24px 20px;
}

.section-email .container-fluid,
.section-email .row {
  height: 100%;
  min-height: 0;
}

.section-email-movil {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.name-img {
  width: min(100%, 500px);
  margin: 0 auto 32px;
  animation: floatIn 0.7s cubic-bezier(0.22, 0.68, 0, 1.2) both;
}

.name-img img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 18px rgba(200, 80, 255, 0.35));
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.email-form {
  width: 100%;
  max-width: 440px;
  padding: 36px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(16, 12, 40, 0.6);
  border: 1px solid var(--white20);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  animation: floatIn 0.8s 0.2s cubic-bezier(0.22, 0.68, 0, 1.2) both;
}

.email-form-container {
  width: 100%;
}

.form-label,
form label {
  display: block;
  margin-bottom: 5px;
  color: var(--white60);
  font-size: 12px;
  letter-spacing: 0.4px;
}

.form-control,
.form-select,
.choices__inner,
#form-field-ladaSelect {
  min-height: 44px;
  width: 100%;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid var(--input-br) !important;
  border-radius: var(--r) !important;
  color: var(--white) !important;
  font-size: 14px;
  outline: none;
  box-shadow: none !important;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus,
.form-select:focus,
#form-field-ladaSelect:focus,
.choices.is-focused .choices__inner,
.choices.is-open .choices__inner {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(180, 79, 255, 0.18) !important;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-select {
  appearance: none;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='rgba(255,255,255,.5)' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
}

.form-select option {
  background: var(--purple-d);
  color: var(--white);
}

.btn-registro,
.btn-presave {
  min-height: 48px;
  border: none;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--btn-cta), #8844dd);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(180, 79, 255, 0.35);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-registro {
  width: 100%;
  max-width: 400px;
  padding: 0 24px;
  display: block;
}

.btn-presave {
  width: max-content;
  max-width: min(100%, 420px);
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-registro:hover,
.btn-presave:hover {
  color: var(--white);
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 6px 32px rgba(180, 79, 255, 0.5);
}

.btn-registro:active,
.btn-presave:active {
  transform: translateY(0);
}

.section-form {
  padding: 48px 52px 8px;
}

.section-form .container-fluid,
.section-form .form-container,
.section-form .row {
  min-height: calc(100vh - 108px);
}

.section-form .row {
  align-items: flex-start;
}

.section-form .col-md-6 {
  position: sticky;
  top: 48px;
  align-self: flex-start;
  height: calc(100vh - 108px);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.section-form .col-md-6 figure {
  width: min(100%, 500px);
}

.section-form .col-md-4 {
  display: flex;
  align-items: flex-start;
}

#registration-form {
  width: 100%;
  max-width: 400px;
  padding-bottom: 8px;
}

form .form-text {
  max-width: 400px;
  margin-bottom: 28px !important;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.4;
  text-transform: uppercase;
}

#registration-form .mb-3 {
  margin-bottom: 14px !important;
}

.phone-input-container {
  display: flex;
  gap: 8px;
  border: 0;
}

#form-field-ladaSelect {
  flex: 0 0 100px;
  width: auto;
  opacity: 1;
  appearance: none;
  cursor: default;
}

#form-field-ladaSelect:disabled {
  background: rgba(255, 255, 255, 0.06) !important;
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white);
  opacity: 1;
}

#form-field-ladaSelect option {
  background: var(--purple-d);
  color: var(--white);
}

#form-field-Phone {
  border: 1px solid var(--input-br) !important;
}

.elementor-field-type-html p {
  margin-bottom: 4px !important;
  color: var(--white60) !important;
  font-size: 11px !important;
}

.elementor-field-type-html svg {
  margin-right: 6px;
}

.form-check {
  width: 100%;
  margin-top: 8px;
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

#registration-form .form-check.mt-5 {
  margin-top: 18px !important;
}

#registration-form .form-check .form-check-input-new {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 0;
  float: none;
  border: 1px solid var(--input-br);
  border-radius: 3px;
  background-color: transparent;
  cursor: pointer;
  display: inline-grid;
  place-content: center;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

#registration-form .form-check .form-check-input-new::before {
  content: "";
  width: 9px;
  height: 9px;
  transform: scale(0);
  transition: transform 0.15s ease-in-out;
  box-shadow: inset 1em 1em #fff;
  clip-path: polygon(14% 44%, 0 59%, 42% 100%, 100% 20%, 84% 6%, 42% 73%);
}

#registration-form .form-check .form-check-input-new:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

#registration-form .form-check .form-check-input-new:checked::before {
  transform: scale(1);
}

#registration-form .form-check .form-check-input-new:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(180, 79, 255, 0.18);
}

.form-check-label {
  min-height: 14px;
  display: flex;
  align-items: center;
  color: var(--white60);
  font-size: 12px;
  line-height: 1.2;
}

.form-check-label a {
  color: var(--white);
  text-decoration: underline;
}

.section-ty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 44px;
  text-align: center;
}

.s3-wrap {
  width: 100%;
  min-height: calc(100vh - 92px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.s3-title {
  color: var(--white);
  font-size: clamp(30px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 18px;
  text-transform: uppercase;
  text-shadow: 0 0 26px rgba(200, 80, 255, 0.38);
  animation: floatIn 0.6s both;
}

.s3-pretitle {
  margin-bottom: 10px;
  color: var(--white60);
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 500;
  animation: floatIn 0.65s 0.05s both;
}

.s3-logo {
  margin-bottom: 12px;
  animation: floatIn 0.7s 0.1s both;
}

.s3-logo-img {
  width: clamp(240px, 45vw, 500px);
  height: auto;
  display: block;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 20px rgba(200, 80, 255, 0.4));
}

.s3-desc {
  margin: 0 0 24px;
  color: var(--white60);
  font-size: clamp(13px, 1.7vw, 18px);
  font-weight: 500;
  line-height: 1.45;
  animation: floatIn 0.75s 0.15s both;
}

.s3-cta {
  margin-bottom: 36px;
  box-shadow: 0 4px 30px rgba(200, 40, 255, 0.48);
  animation: floatIn 0.8s 0.2s both;
}

.ty-presave-song-name {
  color: var(--white);
}

.s3-merch {
  width: min(100%, 780px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(14px, 4vw, 44px);
  animation: floatIn 0.9s 0.3s both;
}

.s3-merch-item {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.merch-img {
  display: block;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.35));
}

.merch-img--sm {
  width: clamp(100px, 18vw, 170px);
}

.merch-img--lg {
  width: clamp(130px, 23vw, 230px);
}

.merch-img--vinyl {
  width: clamp(130px, 23vw, 290px);
}

.input-error,
.form-control.input-error,
.form-select.input-error {
  border-color: #ff4f8b !important;
  box-shadow: 0 0 0 3px rgba(255, 79, 139, 0.18) !important;
}

.suggestions {
  margin-top: 6px;
  padding: 10px 12px;
  background: rgba(16, 12, 40, 0.92);
  border: 1px solid var(--white20);
  border-radius: var(--r);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.choices {
  margin-bottom: 0;
}

.choices__inner {
  display: flex;
  align-items: center;
  padding: 0 14px !important;
}

.choices__list--single {
  padding: 0 !important;
}

.choices__item {
  color: var(--white);
  font-family: var(--font-ui);
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
  overflow: hidden;
  background: var(--purple-d) !important;
  border: 1px solid var(--white20) !important;
  border-radius: var(--r) !important;
  color: var(--white);
}

.choices__list--dropdown .choices__item,
.choices__list[aria-expanded] .choices__item {
  color: var(--white);
}

.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background: rgba(180, 79, 255, 0.28);
}