/* Horóscopo Diario */
.hd-app { max-width: 760px; margin: 0 auto; }

/* Sign picker grid */
.hd-pick-label { text-align: center; color: #d9c9ff; font-size: 1.05rem; margin-bottom: 1rem; }
.hd-signs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .7rem;
}
.hd-sign {
  display: flex; flex-direction: column; align-items: center; gap: .25rem;
  background: linear-gradient(160deg, #241b3c, #1a1530);
  border: 1px solid #4a3a7a; border-radius: 12px;
  padding: .8rem .3rem; cursor: pointer; color: #f4eede;
  transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
}
.hd-sign:hover { transform: translateY(-2px); border-color: #e8cf86; box-shadow: 0 6px 16px rgba(0,0,0,.3); }
.hd-sign-emoji { font-size: 1.8rem; color: #e8cf86; line-height: 1; }
.hd-sign-name { font-size: .8rem; }

/* Result */
.hd-result {
  background: linear-gradient(160deg, #1f1836, #161126);
  border: 1px solid #4a3a7a; border-radius: 16px;
  padding: 1.6rem 1.4rem;
}
.hd-nav { display: flex; align-items: center; justify-content: space-between; gap: .6rem; margin-bottom: 1.2rem; }
.hd-nav-btn {
  background: #2c2348; border: 1px solid #5a4790; color: #d9c9ff;
  border-radius: 8px; padding: .45rem .7rem; cursor: pointer; font-size: .85rem; white-space: nowrap;
}
.hd-nav-btn:hover { background: #3a2c5a; }
.hd-current { text-align: center; display: flex; flex-direction: column; gap: .1rem; }
.hd-cur-emoji { font-size: 2rem; color: #e8cf86; line-height: 1; }
.hd-cur-sign { font-weight: 700; font-size: 1.2rem; color: #f4eede; }
.hd-cur-date { font-size: .85rem; color: #b9a8e0; text-transform: capitalize; }

.hd-loader { text-align: center; padding: 1.5rem 0; }
.hd-spinner {
  display: inline-block; width: 28px; height: 28px; border-radius: 50%;
  border: 3px solid #4a3a7a; border-top-color: #e8cf86; animation: hd-spin .8s linear infinite;
}
@keyframes hd-spin { to { transform: rotate(360deg); } }

.hd-section { margin-bottom: 1.1rem; }
.hd-section h3 {
  margin: 0 0 .3rem; font-size: 1rem; color: #e8cf86;
  display: flex; align-items: center; gap: .4rem;
}
.hd-section h3::before { font-size: 1.1rem; }
.hd-section-amor h3::before { content: "💜"; }
.hd-section-trabajo h3::before { content: "💼"; }
.hd-section-salud h3::before { content: "🌿"; }
.hd-section-consejo h3::before { content: "✨"; }
.hd-section p { margin: 0; line-height: 1.6; color: #e7ddf5; }

.hd-extras {
  margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid #3a2c5a;
  display: flex; flex-wrap: wrap; gap: 1.4rem; justify-content: space-between;
}
.hd-stars { display: flex; flex-direction: column; gap: .35rem; }
.hd-star-row { display: flex; align-items: center; gap: .6rem; }
.hd-star-label { color: #b9a8e0; min-width: 4.5em; font-size: .9rem; }
.hd-star-val { color: #e8cf86; letter-spacing: .1em; }

.hd-lucky { display: flex; flex-direction: column; gap: .45rem; font-size: .9rem; color: #e7ddf5; }
.hd-lucky > div { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.hd-numero-label, .hd-loteria-label, .hd-color-label { color: #b9a8e0; }
.hd-numero-val { font-weight: 700; color: #e8cf86; font-size: 1.1rem; }
.hd-loteria-val { font-weight: 600; color: #f4eede; }
.hd-color-swatch { display: inline-block; width: 18px; height: 18px; border-radius: 50%; border: 1px solid #fff3; vertical-align: middle; }
.hd-color-name { text-transform: capitalize; }

.hd-change { margin-top: 1.4rem; }
.hd-error { margin-top: 1rem; color: #ff8a8a; text-align: center; }

@media (max-width: 560px) {
  .hd-signs { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 380px) {
  .hd-signs { grid-template-columns: repeat(3, 1fr); }
}
