/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

/* Body Background */
body {
  height: 100vh;
  width: 100%;
  background-color: #000;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;


}
  .card {
    width: 100%;
    position: absolute;
    height: 110vh;
    background: transparent;
    backdrop-filter: blur(550px);
    -webkit-backdrop-filter: blur(550px);
    top: 0;


  }
  
  .circle-img {
  position: absolute;
  bottom: -70vh; /* starting position */
  right: -48vw;
  width: 110%;
  height: 129%;
  /* animation: moveUp 4s ease-out forwards; */

}

@keyframes moveUp {
  from {
    bottom: -70%;
  }
  to {
    bottom: 1000px; /* final position */
  }
}

.pink-circle{
  width: 92%;
  height: 107%;
  position: absolute;
  right: -60%;
  top: -22%;
    opacity: 0; /* hidden at start */
 animation:
    showMoveHide 3s ease-out 1.5s forwards,
    moveDown 2s ease-in 4.5s forwards; 
}
@keyframes showMoveHide {
  0% {
    top: -220px;
    opacity: 0; /* fully hidden */
  }
20%{
  opacity: 0.3;
}
  30% {
    opacity: 0.5; /* slowly fade in */
  }
  40%{
    opacity: 0.6;
  }
  50%{
    opacity: 0.7;
  }
  60% {

    opacity: 0.75; /* stay visible */
  }
  65%{
    opacity: 0.77;
  }
  70% {
    top: -70%; /* move upward */
    opacity: 0.8; /* stay visible */
  }
  72%{
    opacity: 0.82;
  }
  74%{
    opacity: 0.84;
  }
  75%{
    opacity: 0.85;
  }
  76%{
    opacity: 0.87;
  }
  77%{
    opacity: 0.9;
  }
  79%{
    opacity: 0.95;
}
  80%{
    opacity: 0.97;
  }
  100% {
    top: -25%;
    opacity: 1;
  
  }
}
@keyframes moveDown {
  from {
    top: -25%;;
    opacity: 1;
      right: -60%;
  }
  to {
    top: 70vh; /* move downward */
    opacity: 1;
  }
}
.top-left-circle{
  height: 85%;
  width: 53%;
  position: absolute;
  right: 25%;
  
  opacity: 0;
  top: -13vh;
      animation: riightToLeft 4.5s ease-out 1.5s forwards;
}
@keyframes riightToLeft {
  0% {

    opacity: 0; /* hidden */
  }
  10% {
    opacity: 1; /* fade in */
    right: 7%;
  }
  80% {
   top: -30%;
   right: 80%; /* move upward */
    opacity: 1; /* fully visible */
  }
90%{
  top: -10%;
}
  100% {
 right: 80%;
     top: 10vh;
    opacity: 0; /* fade out */
    visibility: hidden; /* hide visually and from interactions */
  }
}

.bottom-left-circle{
  width: 95%;
  height:110%;
  position: absolute;
top: 10vh;
opacity: 0;
left:-50%;

animation: topToDown 4s  ease-in-out 4s forwards;

}
@keyframes topToDown {
  0% {
top: 15vh;
    opacity: 0; /* hidden */
  }
  10% {
    opacity: 1; /* fade in */

  }

  80% {
   /* top: -420px; */
   left: -37%;
   top: 60vh; /* move upward */
    opacity: 1; /* fully visible */
  }
  85%{
    opacity: 0.8;
  }
  90%{
    opacity: 0.6;
  }
  95%{
    opacity: 0.4;
  }
  
  100% {
    
     top: 60vh;
    opacity: 0; /* fade out */

  }
}
@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-out {
  animation: fadeOut 0.6s ease-out forwards !important;
}

.fade-in {
  animation: fadeIn 0.6s ease-in forwards !important;
}

/* ALLOW SELECTION ONLY FOR FORM INPUTS */
input, textarea, [contenteditable="true"] {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

/* PREVENT IMAGE DRAGGING */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}

/* CORRECTED ANIMATION ELEMENTS - SLOWER AND SMOOTHER */
.hero-text-animation {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1002;
  opacity: 0;
}

.hero-text-animation h1 {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 1.3;
  color: #FFFFFF;
  text-align: center;
  white-space: nowrap;
}

.background-fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
background-color: transparent;
  background-size: cover;
  z-index: 1001;
  opacity: 1;
  transition: opacity 2s ease-out;
}

.background-fade.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* CORRECTED ANIMATION KEYFRAMES - SLOWER AND SMOOTHER */
@keyframes fadeInCenter {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes showFinalLayout {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header - INITIALLY HIDDEN FOR ANIMATION */
.site-header {
  width: 100%;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 10;
  opacity: 0;
}

/* Logo */
.logo {
  width: 120px;
  height: auto;
  margin-left: 20px;
  margin-top: -30px;
}

/* CONTACT US BUTTON WITH RIGHT-SIDE ONLY HOVER */
.contact-icon {
  width: 250px;
  height: 40px;
  background: url('images/contactus.svg') no-repeat center center;
  background-size: contain;
  display: block;
  margin-right: -30px;
  margin-top: -30px;
  position: relative;
  transition: all 0.3s ease;
}

.contact-icon::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 100%;
  z-index: 1;
  cursor: pointer;
}

.contact-icon:hover {
  background-image: url('images/contactactive.svg');
  transform: scale(1.05);
}

.contact-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.contact-icon.active {
  background-image: url('images/contactactive.svg');
}

.contact-icon:focus-visible {
  background-image: url('images/contactactive.svg');
  outline: 2px solid rgba(229, 25, 188, 0.8);
  outline-offset: 2px;
}

.contact-icon:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}

/* Hero Content - INITIALLY HIDDEN FOR ANIMATION */
.hero-content {
  position: absolute;
  top: 25%;
  left: 8%;
  text-align: left;
  opacity: 0;
}

/* Heading */
.hero-heading {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 1.3;
  color: #FFFFFF;
  margin-bottom: 1px;
}

.highlight-text {
  color: #e519bc;
}

.nudge-up {
  position: relative;
  top: -5px;
}

/* Subheading */
.hero-subheading {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  line-height: 30px;
  color: #9C9C9C;
  margin-bottom: 25px;
}

/* CTA */
.cta-section {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 25px;
}

.cta-button {
  width: 210px;
  height: 52px;
  border-radius: 100px;
  background-color: rgba(97, 48, 153, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.34);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.cta-button:hover {
  background-color: #533472;
}

.waitlist-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #FFFFFF;
}

/* Features Section */
.features-section {
  display: flex;
  gap: 65px;
  align-items: center;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkmark {
  width: 18px;
  height: 18px;
}

.feature-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 300;
}

/* Rating Section */
.rating-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-pictures {
  display: flex;
  align-items: center;
}

.profile-pictures img {
  width: 40px;
  height: 40px;
  border-radius: 15px;
  object-fit: cover;
  margin-left: -10px;
  border: 2px solid #000;
  background-color: #000;
}

.profile-pictures img:first-child {
  margin-left: 0;
}

.stars-rating-wrapper {
  display: flex;
  flex-direction: column;
}

.stars-section {
  display: flex;
  align-items: center;
  gap: 6px;
}

.full-star {
  width: 22px;
  height: 22px;
}

.half-star-svg {
  width: 22px;
  height: 22px;
  background: url('images/star.svg') no-repeat center center;
  background-size: contain;
  position: relative;
  overflow: hidden;
}

.half-star-svg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  background-color: white;
}

.rating-number {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: #FFFFFF;
  font-size: 18px;
}

.rating-value {
  margin-left: 4px;
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
}

.rating-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #9C9C9C;
  margin-top: 4px;
}

/* Phone Mockup Layered - INITIALLY HIDDEN FOR ANIMATION */
.phone-mockup-layered {
  position: absolute;
  top: 17%;
  right: 7%;
  width: 270px;
  z-index: 5;
  opacity: 0;
}

.phone-base {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.phone-overlay {
  width: 100%;
  height: auto;
  position: absolute;
  top: 30px;
  left: -180px;
  z-index: 2;
  pointer-events: none;
}

/* SCROLLING MUSIC SECTION */
.scrolling-music {
  position: absolute;
  top: 262px;
  left: -152px;
  width: 210px;
  height: 300px;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}

.scrolling-track {
  display: flex;
  flex-direction: column;
  animation: scroll-loop 20s linear infinite;
}

.scrolling-track img {
  width: 100%;
}

@keyframes scroll-loop {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.duplicate {
  margin-top: 15px;
}

/* Black Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  display: none;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.overlay.show {
  display: block;
  opacity: 1;
}

/* Modal Popup */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  pointer-events: none;
}

.modal.show {
  display: flex;
  pointer-events: auto;
}

/* CONTACT MODAL - REDUCED HEIGHT FROM TOP AND BOTTOM */
.modal-content {
  width: 980px;
  height: 520px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  pointer-events: auto;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: scale(0.8) translateY(-50px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal.show .modal-content {
  opacity: 1;
  transform: scale(1) translateY(0);
  animation: modalPopIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* MAIN MODAL ANIMATION - USED BY EARLY ACCESS AND SUCCESS POPUP */
@keyframes modalPopIn {
  0% {
    opacity: 0;
    transform: scale(0.6) translateY(-80px) rotateX(15deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05) translateY(-10px) rotateX(0deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0) rotateX(0deg);
  }
}

/* EARLY ACCESS MODAL - IMPROVED SPACING */
.early-access-modal-content {
  width: 520px;
  height: auto;
  min-height: 560px;
  max-height: 90vh;
  max-width: 90vw;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: auto;
  position: relative;
  padding: 35px 35px 35px 35px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.8) translateY(-50px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal.show .early-access-modal-content {
  opacity: 1;
  transform: scale(1) translateY(0);
  animation: modalPopIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Modal Close Button - MATCHED WITH EARLY ACCESS STYLE */
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
  animation: fadeInScale 0.8s ease 0.3s forwards;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8) rotate(-180deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1) rotate(90deg);
}

.modal-close svg {
  width: 14px;
  height: 14px;
  transition: all 0.3s ease;
}

/* EARLY ACCESS INNER CONTENT - IMPROVED SPACING */
.early-access-inner {
  text-align: left;
  width: 100%;
  max-width: 460px;
}

/* OBJECT 1: HEADING GROUP */
.early-access-inner h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 12px;
  text-align: left;
}

.early-access-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #9C9C9C;
  margin-bottom: 24px;
  line-height: 1.5;
  text-align: left;
  max-width: 440px;
}

/* EARLY ACCESS FORM - IMPROVED SPACING */
.early-access-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.early-access-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

/* OBJECT 2: EMAIL INPUT */
.early-access-form .input-wrapper {
  position: relative;
  width: 426px;
  max-width: 100%;
  height: 42px;
  margin: 0;
}

.early-access-form .input-wrapper input {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 16px 12px 48px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #FFFFFF;
  outline: none;
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.1) inset !important;
  -webkit-text-fill-color: #FFFFFF !important;
  transition: border-color 0.3s ease !important;
}

.early-access-form .input-wrapper input::placeholder {
  color: #666666;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

.early-access-form .input-wrapper input:-webkit-autofill,
.early-access-form .input-wrapper input:-webkit-autofill:hover,
.early-access-form .input-wrapper input:-webkit-autofill:focus,
.early-access-form .input-wrapper input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.1) inset !important;
  -webkit-text-fill-color: #FFFFFF !important;
  background-color: transparent !important;
  transition: none !important;
}

/* Email validation visual feedback */
.early-access-form .input-wrapper input.valid {
  border-color: rgba(76, 175, 80, 0.8) !important;
}

.early-access-form .input-wrapper input.invalid {
  border-color: rgba(255, 107, 107, 0.8) !important;
}

.early-access-form .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.required-asterisk-early-email {
  position: absolute;
  right: 333px;
  top: 50%;
  transform: translateY(-50%);
  color: #FF0004;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
}

/* OBJECT 3: PLATFORM GROUP - IMPROVED SPACING */
.platform-group {
  margin: 0;
}

.platform-question {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #9C9C9C;
  margin-bottom: 8px;
  margin-top: 0;
  font-weight: 400;
  text-align: left;
}

.platform-selection {
  display: flex;
  justify-content: flex-start;
  gap: 50px;
  margin-bottom: 0;
}

/* PERFECT SQUARE Platform Boxes */
.platform-option {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 110px !important;
  height: 110px !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  background: rgba(255, 255, 255, 0.05) !important;
  padding: 0 !important;
}

.platform-option:hover {
  border-color: rgba(255, 255, 255, 0.4) !important;
  transform: translateY(-3px) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.platform-option.selected {
  border-color: #e519bc !important;
  background: rgba(229, 25, 188, 0.15) !important;
  transform: translateY(-3px) !important;
}

.platform-icon {
  width: 36px !important;
  height: 36px !important;
  flex-shrink: 0 !important;
}

.platform-option span,
.platform-selection .platform-option span,
.early-access-form .platform-option span,
.early-access-modal-content .platform-option span {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  color: #FFFFFF !important;
  text-align: center !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

/* OBJECT 4: FAVORITE ARTISTS GROUP - IMPROVED SPACING */
.favorite-artists-group {
  margin: 0;
}

.favorite-artists-question {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #9C9C9C;
  margin-bottom: 8px;
  font-weight: 400;
  text-align: left;
}

.early-access-form .favorite-artists-wrapper {
  position: relative;
  width: 426px;
  max-width: 100%;
  height: 100px;
  margin: 0;
}

.early-access-form .favorite-artists-wrapper textarea {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #FFFFFF;
  outline: none;
  resize: none;
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.1) inset !important;
  -webkit-text-fill-color: #FFFFFF !important;
  transition: border-color 0.3s ease !important;
}

.early-access-form .favorite-artists-wrapper textarea::placeholder {
  color: #666666 !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 300 !important;
  line-height: 1.4 !important;
  font-size: 15px !important;
}

.early-access-form .favorite-artists-wrapper textarea.valid {
  border-color: rgba(76, 175, 80, 0.8) !important;
}

.early-access-form .favorite-artists-wrapper textarea.invalid {
  border-color: rgba(255, 107, 107, 0.8) !important;
}

.early-access-form .favorite-artists-wrapper textarea:-webkit-autofill,
.early-access-form .favorite-artists-wrapper textarea:-webkit-autofill:hover,
.early-access-form .favorite-artists-wrapper textarea:-webkit-autofill:focus,
.early-access-form .favorite-artists-wrapper textarea:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.1) inset !important;
  -webkit-text-fill-color: #FFFFFF !important;
  background-color: transparent !important;
  transition: none !important;
}

.char-info-artists {
  margin-top: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  text-align: right;
  width: 426px;
}

.char-info-artists.hidden {
  display: none;
}

.char-info-artists.valid {
  color: #4CAF50;
}

.char-info-artists.invalid {
  color: #FF6B6B;
}

/* OBJECT 5: SUBMIT BUTTON - IMPROVED POSITIONING */
.submit-button-wrapper {
  display: flex;
  justify-content: flex-start;
  margin-top: 6px;
  width: 100%;
  max-width: 426px;
}

.platform-submit-btn {
  position: relative !important;
  width: 120px !important;
  height: 50px !important;
  border: 2px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  cursor: not-allowed !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  overflow: hidden !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  pointer-events: none !important;
  
  background: linear-gradient(135deg, rgba(100, 100, 100, 0.2), rgba(60, 60, 60, 0.2)) !important;
  color: rgba(255, 255, 255, 0.4) !important;
  transform: scale(0.95) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
}

.platform-submit-btn img,
.platform-submit-btn span {
  display: none !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
}

.platform-submit-btn::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent) !important;
  transition: left 0.6s ease !important;
}

.platform-submit-btn.enabled {
  background: linear-gradient(135deg, #e519bc, #613099) !important;
  border: 2px solid rgba(229, 25, 188, 0.8) !important;
  color: #FFFFFF !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  transform: scale(1) !important;
  box-shadow: 0 3px 8px rgba(229, 25, 188, 0.2) !important;
  animation: buttonGlowMinimal 2s ease-in-out infinite alternate !important;
}

@keyframes buttonGlowMinimal {
  0% {
    box-shadow: 0 3px 8px rgba(229, 25, 188, 0.2);
    border-color: rgba(229, 25, 188, 0.8);
  }
  100% {
    box-shadow: 0 4px 12px rgba(229, 25, 188, 0.3);
    border-color: rgba(229, 25, 188, 1);
  }
}

.platform-submit-btn.enabled:hover {
  transform: translateY(-3px) scale(1.05) !important;
  background: linear-gradient(135deg, #ff1dd1, #7a3bb8) !important;
  box-shadow: 0 5px 15px rgba(229, 25, 188, 0.25) !important;
}

.platform-submit-btn.enabled:hover::before {
  left: 100% !important;
}

.platform-submit-btn.enabled:active {
  transform: translateY(-1px) scale(1.02) !important;
  transition: transform 0.1s ease !important;
}

.platform-submit-btn::after {
  content: 'Submit' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 2 !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.4) !important;
  white-space: nowrap !important;
  pointer-events: none !important;
}

.platform-submit-btn.enabled::after {
  content: 'Submit' !important;
  color: #FFFFFF !important;
}

/* CONTACT MODAL STYLING - COMPACT HEIGHT LIKE EARLY ACCESS */
.modal-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

.quote-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.modal-right {
  flex: 1;
  padding: 30px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-right h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.modal-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #9C9C9C;
  margin-bottom: 22px;
  line-height: 1.5;
  width: 426px;
  max-width: 426px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.input-wrapper {
  position: relative;
  width: 426px;
  height: 42px;
}

.input-wrapper input {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 16px 12px 48px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #FFFFFF;
  outline: none;
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.1) inset !important;
  -webkit-text-fill-color: #FFFFFF !important;
  transition: border-color 0.3s ease !important;
}

.input-wrapper input::placeholder {
  color: #666666;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

.input-wrapper input:-webkit-autofill,
.input-wrapper input:-webkit-autofill:hover,
.input-wrapper input:-webkit-autofill:focus,
.input-wrapper input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.1) inset !important;
  -webkit-text-fill-color: #FFFFFF !important;
  background-color: transparent !important;
  transition: none !important;
}

.input-wrapper input.valid {
  border-color: rgba(76, 175, 80, 0.8) !important;
}

.input-wrapper input.invalid {
  border-color: rgba(255, 107, 107, 0.8) !important;
}

/* PHONE FIELD TURNS GREEN WITH 10 DIGITS */
.input-wrapper input.phone-valid {
  border-color: rgba(76, 175, 80, 0.8) !important;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.required-asterisk-name {
  position: absolute;
  right: 330px;
  top: 50%;
  transform: translateY(-50%);
  color: #FF0004;
  opacity: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.required-asterisk-phone {
  position: absolute;
  right: 315px;
  top: 50%;
  transform: translateY(-50%);
  color: #FF0004;
  opacity: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.textarea-wrapper {
  position: relative;
  width: 426px;
  height: 80px;
}

.textarea-wrapper textarea {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #FFFFFF;
  outline: none;
  resize: none;
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.1) inset !important;
  -webkit-text-fill-color: #FFFFFF !important;
  transition: border-color 0.3s ease !important;
}

.textarea-wrapper textarea::placeholder {
  color: #666666;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

.textarea-wrapper textarea:-webkit-autofill,
.textarea-wrapper textarea:-webkit-autofill:hover,
.textarea-wrapper textarea:-webkit-autofill:focus,
.textarea-wrapper textarea:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.1) inset !important;
  -webkit-text-fill-color: #FFFFFF !important;
  background-color: transparent !important;
  transition: none !important;
}

.textarea-wrapper textarea.valid {
  border-color: rgba(76, 175, 80, 0.8) !important;
}

.textarea-wrapper textarea.invalid {
  border-color: rgba(255, 107, 107, 0.8) !important;
}

.char-info {
  margin-top: 5px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  text-align: right;
  width: 426px;
}

.char-info.hidden {
  display: none;
}

.char-info.valid {
  color: #4CAF50;
}

.char-info.invalid {
  color: #FF6B6B;
}

.send-button-wrapper {
  display: flex;
  justify-content: flex-start;
  width: 426px;
  margin-top: -3px;
}

/* CONTACT SEND BUTTON - PERFECT SIZE FOR "SEND" */
.contact-submit-btn {
  position: relative !important;
  width: 100px !important;
  height: 50px !important;
  border: 2px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  cursor: not-allowed !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  overflow: hidden !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  pointer-events: none !important;
  
  background: linear-gradient(135deg, rgba(100, 100, 100, 0.2), rgba(60, 60, 60, 0.2)) !important;
  color: rgba(255, 255, 255, 0.4) !important;
  transform: scale(0.95) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
}

.contact-submit-btn img,
.contact-submit-btn span {
  display: none !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
}

.contact-submit-btn::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent) !important;
  transition: left 0.6s ease !important;
}

.contact-submit-btn.enabled {
  background: linear-gradient(135deg, #e519bc, #613099) !important;
  border: 2px solid rgba(229, 25, 188, 0.8) !important;
  color: #FFFFFF !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  transform: scale(1) !important;
  box-shadow: 0 3px 8px rgba(229, 25, 188, 0.2) !important;
  animation: buttonGlowMinimal 2s ease-in-out infinite alternate !important;
}

.contact-submit-btn.enabled:hover {
  transform: translateY(-3px) scale(1.05) !important;
  background: linear-gradient(135deg, #ff1dd1, #7a3bb8) !important;
  box-shadow: 0 5px 15px rgba(229, 25, 188, 0.25) !important;
}

.contact-submit-btn.enabled:hover::before {
  left: 100% !important;
}

.contact-submit-btn.enabled:active {
  transform: translateY(-1px) scale(1.02) !important;
  transition: transform 0.1s ease !important;
}

.contact-submit-btn::after {
  content: 'Send' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 2 !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.4) !important;
  white-space: nowrap !important;
  pointer-events: none !important;
}

.contact-submit-btn.enabled::after {
  content: 'Send' !important;
  color: #FFFFFF !important;
}

/* VALIDATION MESSAGE STYLES */
.validation-message {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10001;
  padding: 15px 20px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  max-width: 300px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  background: linear-gradient(135deg, #f44336, #da190b);
}

.validation-message.show {
  transform: translateX(0);
}

/* SUCCESS MODAL - USES SAME ANIMATION AS EARLY ACCESS */
.success-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.success-modal.show {
  display: flex;
  opacity: 1;
}

/* SUCCESS CONTENT - NOW USES SAME MODALPOP ANIMATION */
.success-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 400px;
  opacity: 0;
  transform: scale(0.6) translateY(-80px) rotateX(15deg);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* SUCCESS MODAL USES EXACT SAME ANIMATION AS EARLY ACCESS MODAL */
.success-modal.show .success-content {
  opacity: 1;
  transform: scale(1) translateY(0) rotateX(0deg);
  animation: modalPopIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.success-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  opacity: 0;
  transform: scale(0);
  animation: iconPopIn 0.6s ease 0.3s forwards;
}

@keyframes iconPopIn {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  60% {
    opacity: 1;
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.success-svg {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.3));
  animation: iconGlow 2s ease-in-out infinite alternate;
}

@keyframes iconGlow {
  0% {
    filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.3));
    transform: scale(1);
  }
  100% {
    filter: drop-shadow(0 0 20px rgba(76, 175, 80, 0.6));
    transform: scale(1.02);
  }
}

.success-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateY(20px);
  animation: textSlideUp 0.5s ease 0.5s forwards;
}

.success-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #9C9C9C;
  margin-bottom: 30px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  animation: textSlideUp 0.5s ease 0.6s forwards;
}

@keyframes textSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-close-btn {
  background: rgba(97, 48, 153, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  animation: buttonFadeIn 0.5s ease 0.7s forwards;
}

@keyframes buttonFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.success-close-btn:hover {
  background: rgba(97, 48, 153, 1);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(97, 48, 153, 0.3);
}

.success-close-btn:active {
  transform: translateY(0) scale(0.98);
  transition: transform 0.1s ease;
}

.success-content::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: calc(100% + 100px);
  height: calc(100% + 100px);
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px, 30px 30px, 70px 70px;
  animation: particleFloat 20s linear infinite;
  pointer-events: none;
  opacity: 0;
  animation: particleFloat 20s linear infinite, particleFadeIn 1s ease 0.8s forwards;
}

@keyframes particleFloat {
  0% {
    transform: translateX(0) translateY(0);
  }
  33% {
    transform: translateX(30px) translateY(-30px);
  }
  66% {
    transform: translateX(-20px) translateY(20px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

@keyframes particleFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.modal.show .form-group {
  animation: slideInFromLeft 0.6s ease forwards;
  opacity: 0;
  transform: translateX(-30px);
}

.modal.show .form-group:nth-child(1) { animation-delay: 0.2s; }
.modal.show .form-group:nth-child(2) { animation-delay: 0.3s; }
.modal.show .form-group:nth-child(3) { animation-delay: 0.4s; }
.modal.show .form-group:nth-child(4) { animation-delay: 0.5s; }

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .modal-content {
    width: 95vw;
    max-width: 980px;
    height: auto;
    min-height: 480px;
    flex-direction: column;
  }
  
  .modal-left,
  .modal-right {
    flex: none;
  }
  
  .modal-left {
    height: 280px;
  }
  
  .input-wrapper,
  .textarea-wrapper,
  .char-info,
  .send-button-wrapper {
    width: 100%;
    max-width: 426px;
  }

  .early-access-modal-content {
    width: 95vw;
    max-width: 520px;
    height: auto;
    min-height: 520px;
    padding: 30px 25px 30px 25px;
  }

  .early-access-form .input-wrapper,
  .early-access-form .favorite-artists-wrapper,
  .char-info-artists {
    width: 100%;
    max-width: 380px;
  }
}