body {
  background-color: #0a0a0a;
  color: #f5d46b;
  font-family: Pretendard, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

#intro-section {
  width: 100%;
  background: #111;
  padding: 40px 20px;
  border-bottom: 1px solid #444;
}

#intro-section h2 {
  color: #ffd700;
  margin-bottom: 20px;
}

.intro-text {
  color: #d8c080;
  font-size: 15px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

#question-section {
  margin-top: 40px;
}

#user-question {
  width: 70%;
  padding: 12px;
  font-size: 16px;
  margin: 10px 0;
}

#draw-button {
  background: #444;
  color: #ffd700;
  border: none;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
}
#draw-button:hover {
  background: #666;
}

#tarot-display {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#cards-area {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

#cards-area img {
  width: 120px;
  height: 200px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.4s;
}
#cards-area img:hover {
  transform: scale(1.1);
}

#reading-area {
  background: #111;
  border-radius: 10px;
  padding: 20px;
  width: 80%;
  max-width: 700px;
  color: #fff1a5;
}
