/* Thai Zodiac Year Animals Panel Styles */

.zodiac-year-panel {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.zodiac-year-panel__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  text-align: center;
}

.zodiac-year-panel__animal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.zodiac-year-panel__icon {
  width: 120px;
  height: 120px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.zodiac-year-panel__icon:hover {
  transform: scale(1.05);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.zodiac-year-panel__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.zodiac-year-panel__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
}

.zodiac-year-panel__name-thai {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zodiac-year-panel__name-english {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 480px) {
  .zodiac-year-panel__icon {
    width: 100px;
    height: 100px;
    padding: 16px;
  }

  .zodiac-year-panel__name-thai {
    font-size: 1.75rem;
  }

  .zodiac-year-panel__name-english {
    font-size: 0.85rem;
  }
}
