:root {
  --bg-color: #1a0b2e;
  /* Deep purple background */
  --card-bg: #2d1b4e;
  /* Lighter purple for cards */
  --accent-color: #d946ef;
  /* Pink/Magenta accent */
  --text-color: #ffffff;
  --border-color: #d946ef;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 800px;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

/* Progress Bar */
.progress-container {
  width: 100%;
  background-color: #3b2166;
  border-radius: 10px;
  height: 10px;
  margin-bottom: 30px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: var(--accent-color);
  width: 10%;
  /* Initial progress */
  border-radius: 10px;
}

/* Headers */
h1 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.2;
  text-transform: uppercase;
}

@media (min-width: 600px) {
  h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    line-height: 1.3;
  }
}

.subtitle-badge {
  background-color: var(--accent-color);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  display: inline-block;
  font-weight: bold;
  font-size: 0.75rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

@media (min-width: 600px) {
  .subtitle-badge {
    padding: 8px 20px;
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
}

h2 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

@media (min-width: 600px) {
  h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}

/* Zodiac Grid */
.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 15px;
}

@media (min-width: 600px) {
  .zodiac-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}

.zodiac-card {
  background: transparent;
  border: none;
  border-radius: 20px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  text-align: center;
  font-family: inherit;
  color: inherit;
}

.zodiac-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(217, 70, 239, 0.4);
}

.zodiac-card.selected {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(217, 70, 239, 0.6);
}

.card-image {
  font-size: 2rem;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(45, 27, 78, 0.8);
  border-radius: 15px 15px 0 0;
  padding: 12px 10px;
  min-height: 70px;
}

@media (min-width: 600px) {
  .card-image {
    padding: 20px 15px;
    min-height: 100px;
  }
}

.zodiac-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(217, 70, 239, 0.3));
}

@media (min-width: 600px) {
  .zodiac-img {
    width: 60px;
    height: 60px;
  }
}

.card-label {
  background: linear-gradient(135deg, #d946ef 0%, #c026d3 100%);
  color: white;
  padding: 8px 6px;
  font-weight: bold;
  font-size: 0.85rem;
  border-radius: 0 0 15px 15px;
  width: 100%;
  text-align: center;
  margin: 0;
}

@media (min-width: 600px) {
  .card-label {
    padding: 12px 8px;
    font-size: 1rem;
  }
}

/* Next Button */
.next-btn {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.2s;
  display: none;
  /* Hidden until selection */
  margin-top: 20px;
}

.next-btn:hover {
  background-color: #b933cc;
}

/* Step 2: Vertical Options */
.vertical-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.option-card {
  background-color: #d946ef;
  color: white;
  padding: 20px 25px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
  border: none;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: left;
  width: 100%;
  box-shadow: 0 4px 15px rgba(217, 70, 239, 0.3);
}

.option-card:hover {
  transform: scale(1.03);
  background-color: #c036d6;
  box-shadow: 0 6px 20px rgba(217, 70, 239, 0.5);
}

.option-card:active {
  transform: scale(0.98);
}

.option-icon {
  font-size: 2.2rem;
}

.option-text {
  font-size: 1.2rem;
}

.warning-text {
  color: #fca5a5;
  /* Light red/pinkish warning color, or yellow */
  color: #fbbf24;
  /* Amber/Yellow matches screenshot better */
  font-size: 1rem;
  margin-bottom: 20px;
  display: block;
  font-style: italic;
}

/* Step 10: Carousel */
.carousel-instruction {
  background-color: #d946ef;
  color: white;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: inline-block;
}

.carousel-container {
  width: 100%;
  max-width: 400px;
  /* Limit width for better mobile look */
  margin: 0 auto 20px auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  display: flex;
  gap: 10px;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
  border-radius: 15px;
}

.carousel-container::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.carousel-slide {
  min-width: 100%;
  scroll-snap-align: center;
  border-radius: 15px;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.dot.active {
  background-color: #d946ef;
}

/* Step 11: Reportage */
.reportage-img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Step 12: Input */
.input-field {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: none;
  font-size: 1.1rem;
  margin-bottom: 20px;
  box-sizing: border-box;
  outline: none;
  font-family: inherit;
}

.input-field::placeholder {
  color: #9ca3af;
  font-style: italic;
}

.input-field:focus {
  box-shadow: 0 0 0 3px rgba(217, 70, 239, 0.5);
}

/* Step 13: Final Card */
.highlight-bg {
  background-color: #d946ef;
  color: white;
  padding: 0 5px;
}

.profile-card {
  background-color: white;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  text-align: left;
}

.profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.profile-info {
  flex-grow: 1;
}

.profile-name {
  color: black;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0;
}

.profile-status {
  color: #4ade80;
  /* Green */
  font-size: 0.9rem;
  margin: 0;
  display: flex;
  align-items: center;
}

.status-dot {
  width: 10px;
  height: 10px;
  background-color: #4ade80;
  border-radius: 50%;
  margin-left: auto;
  /* Push to right */
}