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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background-color: #1a1a1a;
  color: #e8e0d4;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #e8e0d4;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: #a09888;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #c9a84c;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.hero .subtitle {
  font-size: 18px;
  color: #a09888;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.hero .description {
  font-size: 16px;
  color: #a09888;
  text-align: center;
  max-width: 400px;
}

.hero .platforms {
  font-size: 14px;
  color: #7a7068;
  text-align: center;
  margin-top: 24px;
  letter-spacing: 0.3px;
}

/* How it works */
.how-it-works {
  width: 100%;
  max-width: 640px;
  margin-top: 64px;
  text-align: center;
}

.how-it-works h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 32px;
  color: #e8e0d4;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #c9a84c;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  font-size: 16px;
  font-weight: 600;
  color: #e8e0d4;
  margin-bottom: 4px;
}

.step p {
  font-size: 14px;
  color: #a09888;
  line-height: 1.6;
}

/* Emotional journey section */
.journey-section {
  width: 100%;
  max-width: 480px;
  margin-top: 64px;
  text-align: center;
}

.journey-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #e8e0d4;
  margin-bottom: 16px;
}

.journey-section p {
  font-size: 15px;
  color: #a09888;
  line-height: 1.7;
}

/* Screenshot carousel */
.carousel {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin-top: 48px;
  user-select: none;
}

.carousel-track {
  overflow: hidden;
  border-radius: 24px;
  touch-action: pan-y;
}

.carousel-slide {
  display: none;
}

.carousel-slide.active {
  display: block;
}

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

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e8e0d4;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.carousel-prev {
  left: -48px;
}

.carousel-next {
  right: -48px;
}

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

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: background 0.2s;
}

.carousel-dot.active {
  background: #c9a84c;
}

@media (max-width: 600px) {
  .carousel {
    max-width: 260px;
  }

  .carousel-prev {
    left: -40px;
  }

  .carousel-next {
    right: -40px;
  }
}

.music-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #7a7068;
  font-size: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  z-index: 100;
  opacity: 0.5;
}

.music-toggle:hover {
  opacity: 1;
}

/* Legal pages */
.legal {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 40px;
}

.legal h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 8px;
}

.legal .updated {
  font-size: 14px;
  color: #a09888;
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 16px;
  font-weight: 600;
  color: #e8e0d4;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal p, .legal li {
  font-size: 15px;
  line-height: 1.7;
  color: #b0a898;
  margin-bottom: 12px;
}

.legal ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

/* Support page */
.support {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 40px;
}

.support h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 8px;
}

.support .subtitle {
  font-size: 16px;
  color: #a09888;
  margin-bottom: 40px;
}

.support h2 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
}

.support p {
  font-size: 15px;
  line-height: 1.7;
  color: #b0a898;
  margin-bottom: 12px;
}

.support a {
  color: #c9a84c;
  text-decoration: none;
}

.support a:hover {
  text-decoration: underline;
}

.support ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.support li {
  font-size: 15px;
  line-height: 1.7;
  color: #b0a898;
  margin-bottom: 8px;
}

.support li a {
  color: #c9a84c;
}

.support h3 {
  font-size: 15px;
  font-weight: 600;
  color: #c9a84c;
  margin-top: 24px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

footer {
  text-align: center;
  padding: 24px;
  font-size: 13px;
  color: #666;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 600px) {
  nav {
    padding: 16px 20px;
  }

  .nav-links {
    gap: 20px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .legal, .support {
    padding: 40px 20px;
  }

  .legal h1, .support h1 {
    font-size: 28px;
  }
}
