
/* ---------------- PEOPLE YOU LIKED ---------------- */
.liked-people {
  padding: 20px;
  text-align: center;
}

.liked-people h3 {
  font-size: 16px;
  color: #ff4f64;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.people-cards {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.person-card {
  background-color: white;
  border: 2px solid #ff4f64;
  border-radius: 10px;
  overflow: hidden;
  width: 140px;
  position: relative;
  color: #000;
  text-align: left;
}

.person-image {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
}

.person-info {
  padding: 10px;
}

.person-name {
  display: block;
  font-weight: bold;
  font-size: 14px;
}

.person-age {
  font-size: 12px;
  color: #555;
}

.zodiac-icon {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background-color: white;
  border-radius: 50%;
  background-image: url('img/burc-ikon.png');
  background-size: cover;
}

/* ---------------- RETRO VE BURÇ KUTULARI ---------------- */
.astro-section {
  padding: 20px;
}

.retro-box {
  background: linear-gradient(to right, #ff4f64, #ff8a5c);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: white;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer;
}

.horoscope-boxes {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}

.horoscope-box {
  flex: 1;
  background-color: white;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  color: #4b0069;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer;
}

