
.theme-hero {
  text-align: center;
  margin: 40px auto;
  padding: 20px 15px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


.theme-hero .question {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 20px 0;
  color: #333;
}


.theme-hero .tarot-card {
  width: 160px;
  margin: 20px auto;
  display: block;
  transition: transform 0.3s ease;
}
.theme-hero .tarot-card:hover {
  transform: rotateY(180deg) scale(1.1);
}


.theme-hero .source {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #555;
}


#category {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 15px;
}
#category h2 {
  border-left: 5px solid #6a5acd;
  padding-left: 10px;
  font-size: 20px;
  margin-bottom: 20px;
}
#category .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
#category .card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#category .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
#category .card i {
  font-size: 28px;
  color: #6a5acd;
  margin-bottom: 10px;
}
#category .card p {
  margin: 0;
  font-size: 15px;
}
#category .card a {
  display: block;
  text-decoration: none;
  color: #333;
}
#category .card a:hover {
  color: #6a5acd;
  text-decoration: none;
}
