.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.experience-modal {
  background: #1E293B;
  color: white;
  width: 95%;
  max-width: 800px;
  max-height: 95vh;
  border-radius: 24px;
  position: relative;
  overflow-y: auto;
  padding: 0;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid #334155;
}

.close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.composer-header {
  padding: 60px 40px 40px;
  background: linear-gradient(to bottom, #0EA5E9, #0284C7);
  text-align: center;
}

.composer-subtitle {
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  opacity: 0.9;
}

.composer-title {
  font-size: 3rem;
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.composer-meta {
  padding: 16px;
  background: #0F172A;
  text-align: center;
  font-size: 0.9rem;
  color: #94A3B8;
  border-bottom: 1px solid #334155;
}

.composer-sequence {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.composer-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding-bottom: 40px;
  position: relative;
}

.composer-step::before {
  content: "";
  position: absolute;
  left: 135px; /* Adjust based on step-label width and gap */
  top: 0;
  bottom: 0;
  width: 2px;
  background: #334155;
  z-index: 0;
}

.composer-step:last-child::before {
  display: none;
}

.step-label {
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #64748B;
  padding-top: 4px;
}

.step-content {
  background: #334155;
  padding: 24px;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.step-content h4 {
  margin: 0 0 12px 0;
  font-size: 1.2rem;
  color: #F1F5F9;
}

.step-content p {
  margin: 0;
  line-height: 1.6;
  color: #CBD5E1;
}

.step-content .quote {
  font-size: 1.4rem;
  font-style: italic;
  color: #BAE6FD;
  text-align: center;
  padding: 10px 0;
}

.resource-link {
  color: #38BDF8;
  text-decoration: none;
}

.resource-link:hover {
  text-decoration: underline;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin: 16px 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 600px) {
  .composer-step {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .composer-step::before {
    display: none;
  }
}
