#android-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background:  url('phones/only.png') center center/cover no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  gap: 2rem;
  text-align: center;
}
#android-overlay img {
  width: 100px;
  margin-bottom: 1rem;
}

/* Android full-screen overlay */

.android-message {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background: #190927 url('./images/bg.png') no-repeat center center fixed;
  background-size: cover;
  font-family: 'DM Sans', 'Inter', 'Lora', Arial, sans-serif;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -ms-overflow-style: scrollbar;
  overflow-x: hidden;
}

/* Universal user selection restrictions (except inputs/textareas) */
* {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
input, textarea, [contenteditable="true"] {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

/* Remove blue highlight on tap for webkit */
a, button, input, textarea {
  -webkit-tap-highlight-color: transparent;
}

/* Hide native scrollbar for main vertical scroll container */
.sections-container::-webkit-scrollbar { width: 0px; background: transparent; }

/* ===== HERO TEXT INTRO ANIMATION  ======== */
.hero-text-animation {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1100;
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.hero-text-animation.active {
  display: block !important;
  visibility: visible !important;
  animation: quickPulseFade 2s ease-out forwards;
}
.hero-text-animation h1 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

/* Animation Keyframes */
@keyframes quickPulseFade {
  0% {   opacity: 0;  transform: translate(-50%,-50%) scale(.7);  text-shadow: 0 0 0 #e519bc00;}
  25% {  opacity: 1;  transform: translate(-50%,-50%) scale(1.1); text-shadow: 0 0 20px #e519bc99;}
  60% {  opacity: 1;  transform: translate(-50%,-50%) scale(1.02);text-shadow: 0 0 15px #e519bc66;}
  100% { opacity: 0;  transform: translate(-50%,-50%) scale(.85); text-shadow: 0 0 5px  #e519bc33;}
}

/* Hero Animation Overlay */
.background-fade {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: transparent;
  z-index: 1001;
  opacity: 1;
  transition: opacity 2s ease-out;
}
.background-fade.fade-out { opacity: 0; pointer-events: none; }

/* == Initial Content Hide for Animation  == */

.site-header, .sections-container, .phone-mockup-layered {
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.8s cubic-bezier(.23,1,.32,1);
}
.site-header.show-content,
.sections-container.show-content,
.hero-content.show-content,
.phone-mockup-layered.show-content {
  opacity: 1 !important;
  visibility: visible !important;
}


/* =========== HEADER & NAVIGATION ======== */

/* Body Background */
body {
  height: 100vh;
  width: 100%;
  background-image: url('./images/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

/* SCROLLING SECTIONS CONTAINER */
.sections-container {
  height: 100vh;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

.sections-container::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

/* Individual scroll sections */
.scroll-section {
  height: 100vh;
  width: 100%;
  position: relative;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Styling for the Heading and Subheading Section */

.credits-header {
    margin-bottom: 250px; /* Adjust as needed for space below */
    width: 100%;
    text-align: center;
}

.credits-heading {
    font-family: 'Lora', serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 25px; /* Space between heading and subheading */
}

.credits-heading .highlight-text {
    font-family: 'Lora', serif; /* Or 'DM Sans' if you prefer */
    color: #e519bc; /* The highlight purple color */
}

.credits-subheading {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: #9C9C9C;
    line-height: 1.7; /* This creates the exact vertical spacing */
    max-width: 700px;
    margin: 0 auto; /* Centers the text block */
}

/* --- Subtle Glow Border --- */
.credits-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: px 0;
    background: linear-gradient(90deg, #21133c 0%, #351b4d 100%);
    border-top: 1.5px solid #c982ff;  /* Subtle border to add separation */
    box-shadow: 0 -2px 15px -4px #c982ff30; /* Soft, theme-matching glow */
}

/* 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;
}

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

/* Logo */
.logo {
  width: 120px;
  height: auto;
  margin-left: 20px;
  margin-top: -40px;
  flex-shrink: 0;
}

/* Navigation Styles */
.main-navigation {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin: 0 -22px;
  margin-top: -40px;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.3px;
  cursor: pointer;
}

.nav-link:hover {
  color: #b2b2b2;
  transform: translateY(-1px);
}

.nav-link.active {
  color: #ee00ff;
  font-weight: 400;
}

.nav-link.active::after {
  display: none;
}

/* CONTACT US BUTTON */
.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: -40px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
}

.contact-icon::before,
.contact-icon::after {
  display: none !important;
}

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

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

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

/* Hero Content */
.hero-content {
  position: absolute;
  top: 25%;
  left: 8%;
  text-align: left;
  opacity: 1;
  z-index: 10;
}

/* 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;
}

/* ============= WHY MUSIC SECTION ======== */

/* Why Music Question */
.why-music-question {
  margin-bottom: 30px;
  margin-top: 15px;
}

.why-music-question h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #FFFFFF;
  margin: 0;
}
/* ========== PHONE MOCKUP LAYERED ======== */

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

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


/* ============ MUSIC CARDS SECTION ======= */

/* Music Cards Section */
.music-cards-section {
  display: flex;
  gap: 30px;
  align-items: stretch;
  margin-top: -5px; 
  margin-left: -50px; 
}

/* Individual Music Card - HORIZONTAL LAYOUT */
.music-card {
  flex: 1;
  min-height: 120px;
  padding: 25px 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 350px;
  opacity: 1;
  transform: translateY(0);
}

/* Card Icon - LEFT POSITIONED */
.card-icon {
  margin-right: 20px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}

/* Card Content Area */
.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Card Subtle Gradient Overlay */
.music-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(229, 25, 188, 0.02) 0%, 
    rgba(97, 48, 153, 0.03) 50%, 
    rgba(229, 25, 188, 0.01) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 12px;
}

/* Card Very Light Hover Effects */
.music-card:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 25, 188, 0.2);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(229, 25, 188, 0.05);
}

.music-card:hover::before {
  opacity: 1;
}

/* Card Title */
.card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

/* Card Description */
.card-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #B8B8B8;
  line-height: 1.4;
  margin: 0;
  position: relative;
  z-index: 2;
  flex-grow: 1;
}
/* ============= OVERLAYS & MODALS ======== */

/* 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 */
.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);
}

/* EARLY ACCESS MODAL */
.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);
}

/* MAIN MODAL ANIMATION */
@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);
  }
}

/* Modal Close Button */
.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 */
.early-access-inner {
  text-align: left;
  width: 100%;
  max-width: 460px;
}

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

/* CONTACT MODAL STYLING */
.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;
}
/* ============= FORMS & VALIDATION ======= */

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

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

/* 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;
}

.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(207, 31, 75, 0.8) !important;
  border-width: 1px !important;
  padding: 9px 16px 9px 45px !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;
}

/* PLATFORM GROUP */
.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: 35px;
  margin-bottom: 0;
}

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

/* FAVORITE ARTISTS GROUP */
.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;
}

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

/* CONTACT FORM */
.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;
}

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

/* ========== SUBMIT BUTTONS ============== */

/* SUBMIT BUTTON */
.submit-button-wrapper {
  display: flex;
  justify-content: flex-start;
  margin-top: -20px;
  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;
}

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

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

/* =========== SUCCESS MODALS ============= */

/* 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 */
.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 {
  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.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 =========== */

/* 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;
  }

  .main-navigation {
    display: none;
  }
  
  .site-header {
    padding: 0 20px;
  }

  .scroll-section {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .hero-content {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 40px;
  }

  .phone-mockup-layered {
    position: relative;
    top: auto;
    right: auto;
    width: 200px;
  }

  .music-cards-section {
    flex-direction: column;
    gap: 15px;
  }

  .music-card {
    min-height: 130px;
    padding: 22px 18px;
    max-width: 100%;
  }

  .hero-heading {
    font-size: 45px;
  }

  .hero-subheading {
    font-size: 16px;
    line-height: 26px;
  }

  .features-section {
    gap: 40px;
  }

  .why-music-question h2 {
    font-size: 28px;
  }

  .cta-button {
    width: 180px;
    height: 48px;
    font-size: 15px;
  }

  .contact-icon {
    width: 200px;
    height: 35px;
  }

  .logo {
    width: 100px;
    margin-left: 10px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    gap: 20px;
  }
  
  .nav-link {
    font-size: 14px;
    padding: 8px 12px;
  }

  .hero-heading {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-subheading {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .features-section {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
  }

  .why-music-question h2 {
    font-size: 24px;
  }

  .music-card {
    min-height: 110px;
    padding: 18px 16px;
  }

  .card-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .card-description {
    font-size: 13px;
  }

  .cta-section {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .cta-button {
    width: 160px;
    height: 44px;
    font-size: 14px;
  }

  .waitlist-text {
    font-size: 14px;
  }

  .rating-wrapper {
    gap: 12px;
  }

  .profile-pictures img {
    width: 32px;
    height: 32px;
    margin-left: -8px;
  }

  .rating-value {
    font-size: 18px;
  }

  .rating-description {
    font-size: 14px;
  }

  .contact-icon {
    width: 180px;
    height: 32px;
    margin-right: -20px;
  }

  .logo {
    width: 90px;
    margin-left: 5px;
  }

  .site-header {
    padding: 0 15px;
    top: 20px;
  }

  .hero-content {
    top: 20%;
    left: 5%;
  }

  .phone-mockup-layered {
    width: 180px;
  }

  .scrolling-music {
    width: 180px;
    height: 250px;
  }

  .modal-content,
  .early-access-modal-content {
    width: 95vw;
    margin: 20px;
    padding: 20px;
  }

  .early-access-modal-content {
    min-height: auto;
    padding: 25px 20px;
  }

  .early-access-inner h2 {
    font-size: 26px;
  }

  .early-access-description {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .modal-right h2 {
    font-size: 26px;
  }

  .modal-description {
    font-size: 15px;
    width: 100%;
    max-width: 100%;
  }

  .input-wrapper,
  .textarea-wrapper,
  .early-access-form .input-wrapper,
  .early-access-form .favorite-artists-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .char-info,
  .char-info-artists {
    width: 100%;
  }

  .required-asterisk-name {
    right: 20px;
  }

  .required-asterisk-phone {
    right: 35px;
  }

  .required-asterisk-early-email {
    right: 20px;
  }

  .platform-selection {
    gap: 30px;
    justify-content: center;
  }

  .platform-option {
    width: 90px !important;
    height: 90px !important;
  }

  .platform-icon {
    width: 28px !important;
    height: 28px !important;
  }

  .platform-option span {
    font-size: 14px !important;
  }

  .success-content {
    padding: 30px 25px;
    margin: 20px;
  }

  .success-content h3 {
    font-size: 18px;
  }

  .success-content p {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .validation-message {
    top: 15px;
    right: 15px;
    font-size: 13px;
    padding: 12px 16px;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 26px;
  }

  .hero-subheading {
    font-size: 14px;
    line-height: 22px;
  }

  .why-music-question h2 {
    font-size: 20px;
  }

  .music-card {
    min-height: 100px;
    padding: 15px 12px;
  }

  .card-title {
    font-size: 15px;
  }

  .card-description {
    font-size: 12px;
  }

  .cta-button {
    width: 140px;
    height: 40px;
    font-size: 13px;
  }

  .contact-icon {
    width: 160px;
    height: 28px;
  }

  .logo {
    width: 80px;
  }

  .hero-content {
    left: 3%;
  }

  .phone-mockup-layered {
    width: 160px;
  }

  .early-access-inner h2 {
    font-size: 22px;
  }

  .modal-right h2 {
    font-size: 22px;
  }

  .platform-selection {
    gap: 20px;
  }

  .platform-option {
    width: 80px !important;
    height: 80px !important;
  }

  .platform-icon {
    width: 24px !important;
    height: 24px !important;
  }

  .platform-option span {
    font-size: 12px !important;
  }

  .success-content {
    padding: 25px 20px;
  }

  .hero-text-animation h1 {
    font-size: 20px;
    letter-spacing: 1px;
  }
}
/* Add purple outer stroke with gap for textarea focus */
.early-access-form .favorite-artists-wrapper {
  position: relative;
}

.early-access-form .favorite-artists-wrapper:focus-within::before {
  content: "";
  position: absolute;
  top: -4px;    /* Creates the gap */
  left: -4px;   /* Creates the gap */
  right: -4px;  /* Creates the gap */
  bottom: -4px; /* Creates the gap */
  border: 3px solid #e519bc; /* Purple thick stroke */
  border-radius: 12px;
  pointer-events: none;
  z-index: 0;
  transition: all 0.3s ease;
}

.early-access-form .favorite-artists-wrapper textarea {
  position: relative;
  z-index: 1;
}
.early-access-form .input-wrapper:focus-within::before {
  content: "";
  position: absolute;
  top: -4px;    /* Creates the gap */
  left: -4px;   /* Creates the gap */
  right: -4px;  /* Creates the gap */
  bottom: -4px; /* Creates the gap */
  border: 3px solid #e519bc; /* Purple thick stroke */
  border-radius: 12px;        /* Match your input's border-radius */
  pointer-events: none;
  z-index: 0;
  transition: all 0.3s ease;
}

/* Ensure smooth transitions for all interactive elements */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* High DPI / Retina display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-text-animation h1 {
    font-weight: 300;
  }
  
  .logo,
  .contact-icon {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .scrolling-track {
    animation: none;
  }
}

/* Print styles */
@media print {
  .hero-text-animation,
  .background-fade,
  .overlay,
  .modal,
  .success-modal {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
}

/* Focus styles for accessibility */
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.nav-link:focus-visible,
.platform-option:focus-visible {
  outline: 2px solid #e519bc;
  outline-offset: 2px;
}
/* 1. GENESIS SECTION - HERO LAYOUT    */


/* Create a two-column layout for the text and the animated cards */
.genesis-hero-layout {
    display: flex;
    /* --- CHANGE THIS VALUE --- */
    align-items: flex-start; /* Aligns the text block to the top */
     margin-top: -25px; 
    justify-content: space-between;
    gap: 40px; 
    margin-bottom: -35px; 
}

/* 2. ANIMATED CARDS PANEL & ANIMATION */

/* The INVISIBLE panel for the animated cards */
.animated-cards-panel {
    flex-shrink: 0;
    width: 500px;
    height: 300px;
    position: relative;
    
    /* Your final position for the group */
    transform: translate(100px, -90px);

    /* This enables the 3D perspective for the hover effect */
    perspective: 1000px;
}

/* Styling for each of the 5 animated PNG cards */
.animated-card {
    position: absolute;
    bottom: 25px;
    left: 160px;
    width: 180px;
    height: auto;
    border-radius: 12px;
    
    opacity: 0;
    
    /* The transition for all effects */
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease;
}


/* --- Defining the Stacked and Spread positions AND Colored Bottom-Shadows --- */

.animated-card.card-1 {
    --stacked-transform: translateX(-20px) rotate(-4deg) scale(0.88);
    --spread-transform: translateX(-180px) rotate(-25deg) translateY(20px);
    transition-delay: 0s;
    /* Blue bottom-glow */
    box-shadow: 0 10px 20px rgba(88, 199, 255, 0.15);
}
.animated-card.card-2 {
    --stacked-transform: translateX(-15px) rotate(-3deg) scale(0.91);
    --spread-transform: translateX(-90px) rotate(-12deg) translateY(5px);
    transition-delay: 0.1s;
    /* Neutral dark bottom-glow */
    box-shadow: 0 10px 20px rgba(100, 100, 100, 0.15);
}
.animated-card.card-3 {
    --stacked-transform: translateX(-10px) rotate(-2deg) scale(0.94);
    --spread-transform: translateX(0px) rotate(0deg) translateY(0); /* The center card */
    transition-delay: 0.2s;
    /* Yellow bottom-glow */
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}
.animated-card.card-4 {
    --stacked-transform: translateX(-5px) rotate(-1deg) scale(0.97);
    --spread-transform: translateX(90px) rotate(12deg) translateY(5px);
    transition-delay: 0.3s;
    /* Red bottom-glow */
    box-shadow: 0 10px 20px rgba(255, 80, 80, 0.2);
}
.animated-card.card-5 {
    --stacked-transform: translateX(0) scale(1);
    --spread-transform: translateX(180px) rotate(25deg) translateY(20px);
    transition-delay: 0.4s;
    /* Green bottom-glow */
    box-shadow: 0 10px 20px rgba(70, 220, 130, 0.2);
}


/* Set the initial state for ALL cards to be the stacked position */
.animated-card {
    transform: var(--stacked-transform);
}

/* When JavaScript adds '.is-visible', all cards will move to their spread position */
.animated-cards-panel.is-visible .animated-card {
    transform: var(--spread-transform);
    opacity: 1; /* Make them visible */
}

/* The "3D Pop-Out" Hover Effect */
.animated-cards-panel.is-visible .animated-card:hover {
    transform: var(--spread-transform) translateY(-25px) scale(1.15);
    /* A stronger, but still colored, shadow on hover */
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition-duration: 0.4s;
    transition-delay: 0s;
}

/* 3. "WHY MUSIC?" SECTION - EQUAL SIZED BOXES    */

/* --- NEW: The container now has a subtle decorative background --- */
.music-cards-section-wrapper {
    position: relative;
    padding: 80px 0;
    margin-top: 40px;
    overflow: hidden; /* Ensures the background pattern doesn't spill out */
}

/* --- NEW: The decorative background pattern --- */
.music-cards-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at top left, rgba(170, 70, 255, 0.1), transparent 30%),
                      radial-gradient(circle at bottom right, rgba(88, 199, 255, 0.1), transparent 30%);
    z-index: -1; /* Puts the pattern behind the content */
}


/* The container for the four feature boxes */
.music-cards-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

/* Styling for each of the four feature boxes */
.music-card {
    flex-basis: 260px;
    flex-grow: 1;
    max-width: 280px;
    min-height: 200px; /* Slightly taller for better proportions */
    
    display: flex;
    flex-direction: column;
    text-align: left; /* KEY: Left-align for readability */
    padding: 30px;
    
    /* A cleaner glass effect */
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.music-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* --- NEW: Styling for the icons --- */
.music-card .icon {
    font-size: 28px;
    color: #AA46FF; /* A vibrant purple for the icons */
    margin-bottom: 20px;
}

/* Styling for the text inside the boxes */
.music-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 12px;
}

.music-card p {
    font-size: 15px;
    color: #b5b5b5;
    line-height: 1.6;
    margin: 0;
}
/* ===== FINAL & COMPLETE CREDITS PAGE CSS ===== */

/* Make the credits section the positioning container */
#credits-page {
    position: relative; /* This confines the footer to the section */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes content and footer apart */
    align-items: center;
    min-height: 100vh;
    padding: 120px 8% 0 8%; /* Top padding, side padding, no bottom padding */
    box-sizing: border-box;
    text-align: center;
    color: #fff;
}


.credits-main-content {
    width: 100%;
}


.credits-header {
    width: 100%;
}


.credits-heading {
    font-family: 'Lora', serif;
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: px;
}


.credits-heading .highlight-text {
    color: #e519bc;
}


.credits-subheading {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: #9C9C9C;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}


.founders-section {
    width: 100%;
    margin-top: -225px; /* Space below the subheading */
}


.team-image {
    display: block;
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
}


.founder-info {
    margin-top: 30px;
}


.founder-info h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}


.founder-info p {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: #8a8a8a;
    margin-top: 8px;
}


/* The glassmorphism footer (only visible in credits section) */
#credits-page .credits-footer-glass {
    width: 100%;
    position: absolute; /* Positions relative to #credits-page */
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 5vw;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    z-index: 100;


    /* Glassmorphism styles */
    background: rgba(130, 89, 200, 0.23);           /* semi-transparent purple glass */
    box-shadow: 0 4px 24px rgba(80, 35, 120, 0.08); /* soft shadow for depth */
    border-top: 1px solid rgba(255,255,255,0.15);   /* light inner border */
    backdrop-filter: blur(12px);                    /* THIS is the blur: glass effect */
    -webkit-backdrop-filter: blur(12px);            /* for Safari */
    border-radius: 0 0 0 0;                         /* square corners (adjust if you want softened) */
}


#credits-page .credits-footer-center {
    display: flex;
    gap: 25px;
}


#credits-page .credits-footer-center a {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    opacity: 0.8;
    transition: color 0.2s;
    font-weight: 300;
}


#credits-page .credits-footer-center a:hover {
    color: #ffd6fa;
    opacity: 1;
}


#credits-page .credits-footer-left{
   white-space: nowrap;
   font: DM Sans, sans-serif;
   font-weight: 300!important;
   opacity: 0.92;
   font-size: 13px;
   margin-left: -10px;
   font-style: normal; /* Forces regular style, overriding any italic */
}


#credits-page .credits-footer-right {
    white-space: nowrap;
    opacity: 0.92;
    font-size: 13px;
    font-weight: 300!important;
    font-style: normal; /* Forces regular style, overriding any italic */
}
