html,
body {
  margin: 0;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
  width: 100vw;
}

:root {
  --blue: #00abec;
  --gray: #555;
  --light-gray: #f5f5f5;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --wl-primary: rgb(14, 165, 233);
  --wl-secondary: rgba(14, 165, 233, 0.8);
}

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

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, sans-serif;
  color: var(--gray);
  background-color: #f1f5f7;

  min-height: 100vh;
  overflow: hidden;
  width: 100%;
}

body.loaded {
  overflow-x: hidden;
  overflow-y: auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  z-index: 100;
  /* box-sizing: border-box; */
  /*         
  background: linear-gradient(to bottom, #ffffff, #f8f8f8);
  padding: 0.75rem 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08); */
}

.logo-container {
  display: flex;
  align-items: center;
  margin-left: 1.5rem;
}

.header-logo {
  height: 25px;
  width: auto;
}

.header-right {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
}

.header-login-btn {
  background: transparent;
  color: var(--blue);
  padding: 0.5rem 1rem;
  border: 1px solid var(--blue);
  border-radius: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
  text-decoration: none;
}

.header-login-btn:hover {
  background: linear-gradient(
    to bottom,
    var(--wl-secondary, rgba(14, 165, 233, 0.8)),
    var(--wl-primary, rgb(14, 165, 233))
  );
  color: white;
  box-shadow: 0 4px 6px rgba(14, 165, 233, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: auto;
  background: #f1f5f7;
}

.boxes {
  position: relative;
  width: 24px;
  height: 24px;
  background: transparent;
  float: left;
  cursor: pointer;
  z-index: 1;
}

.circle {
  position: absolute;
  width: 2px;
  height: 2px;
  left: 10.625px;
  top: 10.625px;
  opacity: 0.2;
  border-radius: 50%;
  background: rgb(107, 114, 128);
  transition: all 0.5s ease-in-out;
}

.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  gap: 0.5rem;
  padding: 2rem;
  padding-top: 80px;
  pointer-events: auto;
}

.main-container2 {
  border: 1px solid #00abec;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  max-width: 800px;
  max-height: 3000px;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}
.platform-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  opacity: 0.85;
  visibility: hidden;

  background: linear-gradient(to bottom, #ffffff, #f8f8f8);
  border-radius: 2rem;
  padding: 0.75rem 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  width: 150px;
  white-space: nowrap;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.animate-element {
  opacity: 0;
  visibility: hidden;
  animation: none;
}

.animate-element.animated {
  visibility: visible;
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-element[data-delay="0.7"].animated,
.animate-element[data-delay="0.85"].animated,
.animate-element[data-delay="1.0"].animated,
.animate-element[data-delay="1.15"].animated {
  animation-duration: 0.45s;
}

.platform-icons img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.platform-icons img:hover {
  transform: scale(1.1);
}

.ticker-container {
  width: 100%;
  max-width: 1400px;
  overflow: visible;
  position: relative;
  padding: 0;
  z-index: 100;
  height: 700px;
  margin-bottom: -400px; /* Adjusted for visual effect */
  clip-path: polygon(
    0 0,
    100% 0,
    100% 70%,
    0 70%
  ); /* Changed to show only top 1/3 */
}

.ticker-arc {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticker-gradient-left {
  position: relative;
  left: -475px;
  bottom: -100px;
  height: 100px;
  width: 150px;
  background: linear-gradient(to top, #f1f5f7 50%, rgba(241, 245, 247, 0));
  z-index: 20;
  pointer-events: none;
}
/*f1f5f7*/
.ticker-gradient-right {
  position: relative;
  right: -475px;
  bottom: -100px;
  height: 100px;
  width: 150px;
  background: linear-gradient(to top, #f1f5f7 60%, rgba(39, 76, 94, 0));
  z-index: 20;
  pointer-events: none;
}

.account-orbit {
  position: absolute;
  width: 1200px;
  height: 1200px;
  border-radius: 50%;
  left: 50%;
  top: 0%;
  transform: translate(-50%, 5%);
  animation: rotate-orbit 90s linear infinite;
}

@keyframes rotate-orbit {
  from {
    transform: translate(-50%, 5%) rotate(0deg);
  }
  to {
    transform: translate(-50%, 5%) rotate(360deg);
  }
}

/* Gradient styles are now defined above */

.ticker-track {
  display: flex;
  gap: 1.5rem;
  padding: 0.25rem 0;
  width: fit-content;
  animation: scroll-right linear infinite;
}

.account-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  border-radius: 5rem;
  padding: 0.75rem 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  /* border: 1px solid rgba(0, 0, 0, 0.08); */
  width: 200px;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: absolute;
  transform-origin: center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.account-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  z-index: 102;
}

.account-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(to bottom, #f2f2f2, #e8e8e8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--slate-600);
  font-size: 0.875rem;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.account-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.account-info {
  flex: 1;
  min-width: 0;
}

.account-username {
  font-weight: 500;
  font-size: 1rem;
  color: var(--slate-900);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-followers {
  font-size: 0.75rem;
  color: var(--slate-500);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.followers-count {
  font-weight: 600;
  color: var(--slate-900);
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 1000px;
  width: 100%;
  text-align: center;
  padding-top: 0;
  z-index: 1000;
}
.tagline-header {
  font-size: 1rem;
  color: var(--slate-600);
  font-weight: 50;
}
.logo-text {
  font-size: 2.5rem;
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.logo-text2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.logo-image {
  width: 240px;
  height: auto;
}

.main-heading {
  font-size: 3.25rem;
  font-weight: 500;
  color: var(--slate-900);
  line-height: 1.2;
  text-align: center;
  margin-top: -3rem;
}

.tagline {
  font-size: 1.15rem;
  color: var(--slate-600);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.primary-btn-container {
  border-radius: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;

  background: linear-gradient(
    to bottom,
    rgba(226, 232, 240, 0.8),
    rgba(201, 211, 225, 0.8)
  );
}

.primary-btn {
  width: 310px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.879) 0%,
    rgba(242, 242, 242, 0.879) 80%,
    rgba(201, 211, 225, 0.8) 100%
  );
  color: var(--slate-300);
  border: 0px solid rgba(165, 187, 197, 0.139);
  border-radius: 5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 3px rgba(27, 28, 28, 0.3);
  position: relative;
  padding: 0.75rem 1.5rem;
  overflow: hidden;
}

.primary-btn:hover {
  position: relative;
  overflow: hidden;
  opacity: 0.9;
}
.primary-btn:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: gleam 1s ease-in-out;
}
@keyframes gleam {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.primary-btn:active {
  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.15),
    inset 0 0 4px rgba(0, 0, 0, 0.08);
  background: linear-gradient(
    to bottom,
    rgba(201, 211, 225, 0.9) 0%,
    rgba(242, 242, 242, 0.8) 80%,
    rgba(242, 242, 242, 0.8) 100%
  );
}

.primary-btn:disabled {
  cursor: default;
  color: var(--slate-600);
  background: linear-gradient(
    to bottom,
    rgba(224, 242, 254, 0.8) 0%,
    rgba(186, 230, 253, 0.8) 80%,
    rgba(125, 211, 252, 0.8) 100%
  );
}
.btn-icon {
  margin-right: 10px;
  height: 20px;
  width: 20px;
}

.btn-icon path {
  fill: var(--blue);
}

.btn-icon polyline {
  stroke: var(--blue);
  fill: none;
}

.login-section {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.login-text {
  font-size: 0.875rem;
  color: var(--slate-500);
}

.login-btn {
  background: transparent;
  color: var(--blue);
  padding: 0.5rem 1rem;
  border: 1px solid var(--blue);
  border-radius: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.login-btn:hover {
  background: linear-gradient(
    to bottom,
    var(--wl-secondary, rgba(14, 165, 233, 0.8)),
    var(--wl-primary, rgb(14, 165, 233))
  );
  color: white;
  box-shadow: 0 4px 6px rgba(14, 165, 233, 0.3);
}

.footer {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  font-size: 0.75rem;
  opacity: 0.5;
}
.test {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fdfeff;
  border-radius: 5rem;
  padding: 0.75rem 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  width: 225px;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: absolute;
  transform-origin: center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

@media (max-width: 768px) {
  .tagline-header {
    font-size: 1.5rem;
  }

  .main-heading {
    font-size: 2rem;
  }

  /* Hide the ticker completely on mobile */
  .ticker-container {
    display: none;
  }

  .content-container {
    margin-top: 100px; /* Increased from 40px to 100px for better vertical centering */
  }

  .main-container {
    gap: 0;
    padding: 1rem;
    margin-top: 60px;
  }

  .header {
    padding: 0.75rem 0.5rem;
  }

  .logo-container {
    margin-left: 0.75rem;
  }

  .header-right {
    margin-right: 0.75rem;
  }

  .header-logo {
    height: 30px;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}

.modal-content {
  background-color: rgb(249 250 251);
  margin: 5% auto;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  height: auto;
  min-height: auto;
  max-height: 90vh;
  overflow-y: auto;
  max-width: 500px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: #666;
}

.close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  transition: color 0.2s;
}

.close:hover {
  color: #000;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 0.9rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(0, 171, 236, 0.1);
}

.form-input::placeholder {
  color: #aaa;
}

.form-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  background-color: white;
  cursor: pointer;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.form-select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(0, 171, 236, 0.1);
}

.form-select option:first-of-type,
.placeholder-option,
.form-select option[value=""] {
  color: #aaa;
}

/* Style for when the default option is selected in the dropdown */
.form-select:invalid {
  color: #aaa;
}

.optional-label {
  color: #888;
  font-size: 0.8rem;
  margin-left: 0.5rem;
}

.modal-submit-btn {
  width: 100%;
  background: linear-gradient(
    to bottom,
    var(--wl-secondary, rgba(14, 165, 233, 0.8)),
    var(--wl-primary, rgb(14, 165, 233))
  );
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.modal-submit-btn:hover {
  opacity: 0.9;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
}

.modal-submit-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.hidden-field {
  display: none;
  margin-top: 0.75rem;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .modal-content {
    margin: 10% auto;
    padding: 1.5rem;
    width: 95%;
  }
}

/* Waitlist success message styling */
.waitlist-success-message {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 1.5rem;
  background: linear-gradient(
    to right,
    rgba(0, 171, 236, 0.08),
    rgba(14, 165, 233, 0.03)
  );
  border-radius: 12px;
  padding: 10px 15px;
  border-left: 4px solid var(--blue);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: linear-gradient(
    to bottom,
    var(--wl-secondary),
    var(--wl-primary)
  );
  color: white;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(14, 165, 233, 0.25);
}

.success-icon svg {
  width: 15px;
  height: 15px;
}

.success-text {
  display: flex;
  flex-direction: column;
}

.success-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--slate-800);
}

.success-subtitle {
  font-size: 0.9rem;
  color: var(--slate-600);
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* New availability banner styles */
.availability-banner-wrapper {
  width: 645px;
  position: relative;
}

.banner-border {
  position: relative;
  border-radius: 15rem;
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.4),
    rgba(56, 189, 248, 0.3),
    rgba(125, 211, 252, 0.35),
    rgba(2, 132, 199, 0.25),
    rgba(14, 165, 233, 0.4)
  );
  background-size: 300% 300%;
  animation: gradientMove 15s ease infinite;
  padding: 12px; /* This creates the thickness of the "border" */
  box-shadow: 0 15px 30px rgba(14, 165, 233, 0.15),
    0 5px 15px rgba(14, 165, 233, 0.08);
  overflow: hidden;
  margin-top: 2rem;
}

.banner-border::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  transform: translateX(-100%);
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(248, 250, 252, 0.99)
  );
  padding: 1rem 1rem;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  border-radius: calc(15rem - 12px); /* Adjust inner radius to match outer */
  height: 90px;
  /* gap: 2rem; */
}

.banner-left {
  display: flex;
  align-items: center;
  width: 75%;
  gap: 1.5rem;
}

.banner-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 25%;
}

.banner-headline {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 180px;
}

.exclusive-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--wl-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.limited-badge {
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-800);
  display: inline-block;
  position: relative;
  padding-bottom: 0.15rem;
}

.limited-badge::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 40px;
  background: linear-gradient(to right, var(--wl-primary), transparent);
}

.banner-value-prop {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.value-point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--slate-600);
}

.check-icon {
  color: var(--wl-primary);
  font-weight: bold;
}

.access-info {
  font-size: 0.875rem;
  color: var(--slate-600);
  text-align: center;
  max-width: 150px;
}

.track-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-600);
  white-space: nowrap;
}

.social-platforms {
  display: flex;
  align-items: center;
  height: 100%;
}

.platform-item-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(245, 247, 250, 0.7);
  border-radius: 5rem;
  padding: 0 1rem;
  transition: all 0.2s ease;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.15),
    inset 0 0 2px rgba(0, 0, 0, 0.08);

  box-sizing: border-box;
  height: 100%;
}

.platform-item-container img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  transition: all 0.2s ease;
  filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.3));
  background: transparent;
}

.platform-item-container img:hover {
  transform: scale(1.1);
}
.arrow-circle-container {
  border-radius: 50%;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 6px;
  background: linear-gradient(
    to bottom,
    rgba(226, 232, 240, 0.8),
    rgba(201, 211, 225, 0.8)
  );
}

.arrow-circle {
  position: relative;
  border-radius: 50%;
  box-shadow: 0 2px 3px rgba(27, 28, 28, 0.4);
  transition: all 0.2s ease;
  /* background: rgba(255, 255, 255, 0.9); */

  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.879) 0%,
    rgba(242, 242, 242, 0.879) 80%,
    rgba(201, 211, 225, 0.8) 100%
  );

  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  display: flex;
}

.arrow-right {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
  color: var(--blue);
}

.platform-item span {
  display: none;
}

@media (max-width: 768px) {
  .availability-banner-wrapper {
    width: 90%;
    margin: 1.5rem auto;
  }

  .banner-border {
    padding: 10px;
  }

  .banner-content {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    height: auto;
    border-radius: calc(15rem - 10px);
  }

  /* Hide social icons and arrow on mobile */
  .social-platforms,
  .arrow-circle-container {
    display: none;
  }

  /* Center and expand the button */
  .banner-content .primary-btn-container {
    width: 100%;
    max-width: 280px;
  }

  .banner-headline {
    min-width: auto;
  }

  .exclusive-tag {
    font-size: 0.7rem;
  }

  .limited-badge {
    font-size: 0.85rem;
  }

  .limited-badge::after {
    width: 30px;
  }

  .track-label {
    font-size: 0.75rem;
  }
  .content-container {
    margin-top: 250px;
  }
}

@media (max-width: 480px) {
  .availability-banner-wrapper {
    width: 95%;
    margin: 1rem auto;
  }

  .banner-border {
    padding: 8px; /* Slightly thinner border on mobile */
  }

  .banner-content {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    height: auto;
    border-radius: calc(15rem - 8px);
  }

  /* Ensure the button is prominent */
  .primary-btn-container {
    width: 100%;
  }

  .primary-btn {
    width: 100%;
    font-size: 0.95rem;
    padding: 0.8rem 1.2rem;
  }

  /* More vertical space for content without ticker */
  .content-container {
    margin-top: 120px; /* Increased from 50px to 120px to center content better */
  }

  .main-heading {
    font-size: 1.85rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
  }

  .tagline {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
