/* ══════════════════════════════════════
   1. RESET & BASE
   ══════════════════════════════════════ */
*, :after, :before {
  box-sizing: border-box;
  background-repeat: no-repeat;
}
:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}
:where(:root) {
  cursor: default;
  line-height: 1.5;
  word-wrap: break-word;
  tab-size: 4;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}
html {
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
}
body, html {
  height: 100%;
  position: relative;
}
body {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  background: #000;
  color: #fff;
  min-height: 870px;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  line-height: normal;
}
input, textarea {
  font-family: inherit;
}
select {
  background: #fff;
}
#__layout, #__nuxt, .l-wrapper {
  height: 100%;
}
#__layout .l-wrapper > div,
#__layout > div {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
#__layout > div.p-main {
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  height: fit-content;
}

/* ══════════════════════════════════════
   2. LAYOUT & MAIN
   ══════════════════════════════════════ */
.desktop { display: block; }
.mobile { display: none; }

.p-main {
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  height: 100%;
  position: relative;
}
.p-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(58, 38, 38, 0.6);
  z-index: 999;
}
.p-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 1000;
  position: absolute;
  bottom: 0;
}
.p-container {
  margin: 0 auto;
}

/* ══════════════════════════════════════
   3. HEADER, LOGO & PROGRESS BAR
   ══════════════════════════════════════ */
.p-header {
  padding: 2.8rem 2.4rem;
  background: transparent;
  position: relative;
  z-index: 1000;
}
.p-header-inner img {
  width: 10rem;
}
.logo {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
}
.logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0px 0px 2px #000);
}
.p-progress-chat {
  text-align: center;
  background: rgba(25, 34, 51, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  padding: 1.1rem;
}
.p-progress-chat-bg {
  width: 100%;
  border-radius: 0.67rem;
  background-color: hsla(0, 0%, 100%, 0.5);
}
.p-progress-chat-bar {
  width: 0;
  max-width: 100%;
  height: 0.8rem;
  line-height: 3rem;
  border-radius: 0.2rem;
  transition: width 400ms;
}

/* ══════════════════════════════════════
   4. CHAT UI
   ══════════════════════════════════════ */
.p-chat {
  background: rgba(51, 25, 25, 0.8);
  width: 100%;
  max-width: 52.8rem;
  position: relative;
  border-radius: 1.1rem;
  overflow: hidden;
  min-height: fit-content;
  margin: 0 auto;
  padding: 4.4rem 2.4rem;
}
.p-chat-messages {
  margin-bottom: 3.6rem;
}
.p-chat-message-list {
  margin: 0;
  padding: 0;
}
.p-chat-user {
  display: inline-block;
  position: relative;
  margin-right: 1rem;
}
.p-chat-user-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #fff;
}
.p-chat-user-status {
  width: 10px;
  height: 10px;
  background: #4cd964;
  border-radius: 50%;
  border: 1px solid #fff;
  position: absolute;
  top: 32px;
  right: 2px;
}
.p-chat-message {
  margin: 0 1.5rem 0.85rem;
  list-style: none;
  display: flex;
}
.p-chat-message-item,
.p-chat-message .typing {
  border-radius: 2.3rem 2.3rem 2.3rem 0.5rem;
  padding: 1.2rem 1.6rem;
  font-size: 1.6rem;
  display: inline-block;
}
.p-chat-message--full {
  display: flex;
  align-items: center;
}
.p-chat-initial-2,
#activationinitial22 {
  visibility: hidden;
}

/* Typing dots */
.typing {
  display: inline-block;
  width: 5rem;
  height: 3.5rem;
  position: relative;
}
.typing-dot {
  content: "";
  animation: blink-data 1.5s infinite;
  animation-fill-mode: both;
  height: 0.5rem;
  width: 0.5rem;
  background: #fff;
  position: absolute;
  left: 1rem;
  bottom: 1.2rem;
  border-radius: 50%;
}
.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
  margin-left: 0.75rem;
}
.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
  margin-left: 1.5rem;
}

/* ══════════════════════════════════════
   5. STEPS & VARIANTS
   ══════════════════════════════════════ */
.step { display: none; }
.step.active { display: block; }

.p-step-wrapper {
  bottom: 0;
  left: 0;
  width: 100%;
}
.p-step-variants,
.p-step-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-step-variants {
  position: relative;
  opacity: 0;
}
.p-step-button {
  height: 11.5rem;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 1rem;
  border-radius: 1.2rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.15s ease-in;
  background-position: 50%;
}
.p-step-button:hover {
  filter: brightness(1.15);
}
.p-step-button span {
  font-size: 1.8rem;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  line-height: 6rem;
  text-shadow: rgba(25, 34, 51, 1) 2px 2px;
}
.p-step-button--female,
.p-step-button--male,
.p-step-button--man,
.p-step-button--woman {
  height: 18.4rem;
}
.overlay-input-wrapper {
  width: 100%;
  max-width: 80%;
  position: relative;
  margin-left: 1rem;
  margin-bottom: 1.5rem;
}
.step-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1.139rem;
  position: relative;
}
.step-wrapper--email,
.step-wrapper--location,
.step-wrapper--password,
.step-wrapper--username {
  flex-direction: column;
}
.step-wrapper--email .overlay-input-wrapper {
  margin-left: 0;
  max-width: none;
  margin-bottom: 0;
}
.step-wrapper--email .p-step-cta--single {
  width: 100%;
  padding: 12px 0;
  margin-left: 0;
}
.p-step-cta {
  margin-left: 1rem;
  cursor: pointer;
  position: relative;
  z-index: 2;
  background: #db6ab5;
  padding: 1.4rem 2.4rem 1.6rem;
  width: 80%;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  height: auto;
  border-radius: 2.4rem;
  transition: all 0.15s ease-in;
}
.p-step-cta:hover {
  filter: brightness(1.05);
}

/* ══════════════════════════════════════
   6. REGISTRATION CONTENT
   ══════════════════════════════════════ */
.content {
  background-color: #e9e9e9;
  width: 100%;
  max-width: 460px;
  position: absolute;
  left: 50%;
  top: 170px;
  transform: translateX(-50%);
  padding: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, .8);
  border-radius: 0;
}
.bar-container {
  background: rgba(255, 79, 137, .1);
  height: 10px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}
.bar {
  background-color: #ff4f89;
  height: 10px;
  width: 0%;
  border-radius: 10px;
  transition: width 400ms;
}
#regForm {
  padding: 0;
  max-width: 100%;
}
.startregisterselection {
  width: 80%;
  margin: 0 auto;
  opacity: 0;
}
.finalcontent {
  display: none;
  width: 80%;
  margin: 0 auto;
  opacity: 0;
}
.buttonnext {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
}

/* ══════════════════════════════════════
   7. FORM ELEMENTS
   ══════════════════════════════════════ */
input, select {
  background: #fff;
  padding: 10px 20px 10px 0;
  text-indent: 20px;
  height: 53.5px;
  width: 100%;
  margin: 0 auto 10px;
  font-size: 15px !important;
  border-radius: 25px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: 1px solid #ddd;
}
.select-container, .select-containertwo {
  position: relative;
  display: inline;
}
.select-container:after, .select-containertwo:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  pointer-events: none;
}
.select-container:after {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  top: 0;
  right: 20px;
  border-top: 8px solid black;
  opacity: 1;
}
.select-containertwo:after {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  top: 22px;
  right: 20px;
  border-top: 8px solid black;
  opacity: 1;
}
select::-ms-expand {
  display: none;
}
.row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.country {
  width: calc(30% - 10px);
}
.region {
  width: 70%;
}
.full {
  width: 100%;
}
.hidden {
  display: none;
}

/* ══════════════════════════════════════
   8. BUTTON
   ══════════════════════════════════════ */
button {
  box-shadow: 0 2px 4px 0 rgba(155, 155, 155, 0.2);
  background-position: center;
  background-size: cover;
  background-color: transparent;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border: none;
  outline: none;
  width: 100%;
  height: 53.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* ══════════════════════════════════════
   9. TERMS & AGREEMENT
   ══════════════════════════════════════ */
.terms {
  position: absolute;
  visibility: hidden;
  pointer-events: none;
  text-align: center;
  padding: 15px 10px 0;
  font-size: 12px;
  line-height: 22px;
}
.terms.is-visible {
  visibility: visible;
  opacity: 1;
  display: flex;
  pointer-events: auto;
}
.terms a {
  font-size: 12px;
  color: #fff;
  text-decoration: underline;
}
.agreement-checkbox-firstlabel {
  height: 21px;
  width: 21px;
  margin-right: 13px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}
.agreement-checkbox-firstlabel input[type="checkbox"] {
  appearance: auto;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  margin: 0;
}
.agreement-checkbox-firstlabel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 21px;
  height: 21px;
  border: 2px solid #ddd;
  border-radius: 4px;
  background: white;
  transition: all 0.3s ease;
  pointer-events: none;
}
.agreement-checkbox-firstlabel:hover::before {
  border-color: #E91E63;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}
.agreement-checkbox-firstlabel:has(input[type="checkbox"]:checked)::before {
  background: linear-gradient(135deg, #E91E63, #FF4081);
  border-color: #E91E63;
}
.agreement-checkbox-firstlabel::after {
  content: '';
  position: absolute;
  top: 3.1px;
  left: 7px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
}
.agreement-checkbox-firstlabel:has(input[type="checkbox"]:checked)::after {
  transform: rotate(45deg) scale(1.1);
}
.agreement-checkbox-firstlabel:has(input[type="checkbox"]:focus)::before {
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.2);
}
.agreement-checkbox-firstlabel:active::before {
  transform: scale(0.92);
}
.agreement-checkbox-secondlabel {
  text-align: left;
}

/* ══════════════════════════════════════
   10. ERRORS
   ══════════════════════════════════════ */
#errors {
  display: none;
  text-align: center;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  padding: 0;
  margin-top: -5px;
  margin-bottom: 15px;
}

/* ══════════════════════════════════════
   11. OAUTH BUTTONS
   ══════════════════════════════════════ */
.btn-con.oauth .btn.btn-microsoft-oauth {
  border: solid 1px #2f2f2f;
  background: #2f2f2f;
  color: #fff;
}
.btn-con.oauth .btn.btn-microsoft-oauth span.icon-bg {
  border: 2px solid #2f2f2f;
}
.btn-con.oauth .btn.btn-microsoft-oauth i.icon {
  left: 12px;
}
.btn-con.oauth .btn.btn-microsoft-oauth span:last-child {
  font-weight: 300;
}
.btn-con.oauth .btn.btn-google-oauth,
.btn-con.oauth .btn.btn-yahoo-oauth,
.btn-con.oauth .btn.btn-microsoft-oauth {
  width: 338px;
}
.btn-con.oauth .btn.btn-otheremails-oauth {
  max-width: 100%;
  width: 338px;
  padding: 15px;
  border-radius: 0;
  position: relative;
  margin: 5px auto 0;
  display: block;
  cursor: pointer;
  text-decoration: none;
  border: solid 1px #000;
  background: #fff;
  color: #000;
}
.btn-con.oauth .btn.btn-otheremails-oauth span.icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 46px;
  height: 100%;
  background: #fff;
  border: 2px solid #fff;
}
.btn-con.oauth .btn.btn-otheremails-oauth i.icon {
  z-index: 10;
  width: 30px;
  position: absolute;
  height: 19px;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  text-decoration: none;
  text-transform: none;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.cancel-oauth-wrap a.turn-back-yahoo {
  display: none;
}
.link-back span {
  cursor: pointer;
  color: #fff;
  font-size: 13px;
}
.link-back span:hover {
  text-decoration: underline;
}

/* ══════════════════════════════════════
   12. ANIMATIONS
   ══════════════════════════════════════ */
@keyframes blink-data {
  0% { opacity: 0.1; }
  20% { opacity: 1; }
  to { opacity: 0.1; }
}
.animationFrames {
  animation: animationFrames 0.4s ease;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  transform-origin: 0 0;
}
@keyframes animationFrames {
  0% { transform: scale(0); }
  to { transform: scale(1); }
}
.show-data {
  transition: 0.4s;
  animation: show-data 3s 1;
  animation-fill-mode: forwards;
  animation-delay: 0.4s;
}
@keyframes show-data {
  0% { opacity: 0; }
  to { opacity: 1; }
}
.show-block {
  transition: 0.3s;
  animation: show-data 2s 1;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}

/* ══════════════════════════════════════
   13. HIDDEN CONTENT IDS
   ══════════════════════════════════════ */
#showcontent0,
#showcontent1,
#showcontent2,
#showcontentfour {
  display: none;
}

/* ══════════════════════════════════════
   14. RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 920px) {
  .p-content {
    flex-direction: column;
    justify-content: center;
  }
  .p-header {
    padding: 0.6rem 0;
    width: 96%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .p-chat {
    background: rgba(51, 25, 25, 0.4);
    width: 96%;
    padding: 3.2rem 2.4rem 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .p-chat-user-photo {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 500px) {
  body {
    position: relative;
    min-height: 750px;
  }
  .bodymobile {
    min-height: 600px;
  }
  .desktop { display: none; }
  .mobile { display: block; }
  .logo {
    top: 30px;
  }
  .logo img {
    height: 50px;
  }
  .p-content {
    justify-content: start;
  }
  .p-contentmobile {
    justify-content: center;
  }
  .p-chat {
    margin-top: 100px;
    padding: 3.2rem 2.4rem 3.0rem;
  }
  .p-chatmobile {
    margin-top: 0;
  }
  .content {
    background-color: #e9e9e9;
    width: 90%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 15px;
  }
  .startregisterselection,
  .finalcontent {
    width: 90%;
  }
  #errors {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .overlay-input-wrapper {
    max-width: none;
  }
  .step-wrapper {
    justify-content: space-between;
    padding: 0 1.5rem;
  }
  .p-step-button {
    height: 11rem;
  }
  .p-step-button span {
    font-size: 1.8rem;
  }
  .p-chat-message-item,
  .p-chat-message .typing {
    font-size: 1.55rem;
  }
}

@media (max-width: 410px) {
  input, select {
    font-size: 16px;
    text-indent: 15px;
  }
  .select-container:after,
  .select-containertwo:after {
    right: 15px;
  }
}

@media (max-width: 360px) {
  main h2 {
    font-size: 15px;
  }
}
