
/*!
 * Astro Icons (Unicode) v1.0.0
 * Planets + Zodiac signs via Unicode codepoints.
 * Optional consistent rendering with "Noto Sans Symbols 2".
 * Author: ChatGPT (packaged on request)
 */
:root {
  --astro-icon-size: 1.25em;
  --astro-icon-color: currentColor;
}

.astro-ico {
  font-family: "Noto Sans Symbols 2", "Segoe UI Symbol", "Apple Color Emoji", "Noto Color Emoji", "Symbola", sans-serif;
  font-size: var(--astro-icon-size);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--astro-icon-color);
}

/* Zodiac */
.astro-ico-aries::before { content: "\2648"; }       /* ♈ Koç    */
.astro-ico-taurus::before { content: "\2649"; }      /* ♉ Boğa    */
.astro-ico-gemini::before { content: "\264A"; }      /* ♊ İkizler */
.astro-ico-cancer::before { content: "\264B"; }      /* ♋ Yengeç  */
.astro-ico-leo::before { content: "\264C"; }         /* ♌ Aslan   */
.astro-ico-virgo::before { content: "\264D"; }       /* ♍ Başak   */
.astro-ico-libra::before { content: "\264E"; }       /* ♎ Terazi  */
.astro-ico-scorpio::before { content: "\264F"; }     /* ♏ Akrep   */
.astro-ico-sagittarius::before { content: "\2650"; } /* ♐ Yay     */
.astro-ico-capricorn::before { content: "\2651"; }   /* ♑ Oğlak   */
.astro-ico-aquarius::before { content: "\2652"; }    /* ♒ Kova    */
.astro-ico-pisces::before { content: "\2653"; }      /* ♓ Balık   */

/* Planets & Points */
.astro-ico-sun::before { content: "\2609"; }         /* ☉ Güneş   */
.astro-ico-moon::before { content: "\263D"; }        /* ☽ Ay      (tersi: \263E) */
.astro-ico-mercury::before { content: "\263F"; }     /* ☿ Merkür  */
.astro-ico-venus::before { content: "\2640"; }       /* ♀ Venüs   */
.astro-ico-mars::before { content: "\2642"; }        /* ♂ Mars    */
.astro-ico-jupiter::before { content: "\2643"; }     /* ♃ Jüpiter */
.astro-ico-saturn::before { content: "\2644"; }      /* ♄ Satürn  */
.astro-ico-uranus::before { content: "\26E2"; }      /* ⛢ Uranüs  (alternatif: \2645) */
.astro-ico-neptune::before { content: "\2646"; }     /* ♆ Neptün  */
.astro-ico-pluto::before { content: "\2647"; }       /* ♇ Plüton  */

.astro-ico-northnode::before { content: "\260A"; }   /* ☊ Kuzey Ay Düğümü */
.astro-ico-southnode::before { content: "\260B"; }   /* ☋ Güney Ay Düğümü */
.astro-ico-chiron::before { content: "\26B7"; }      /* ⚷ Chiron */

/* Helpers */
.astro-ico.lg { --astro-icon-size: 1.75em; }
.astro-ico.xl { --astro-icon-size: 2.25em; }
.astro-ico.muted { --astro-icon-color: #6b7280; } /* Tailwind gray-500 */
.astro-ico.primary { --astro-icon-color: #0ea5e9; } /* Tailwind sky-500 */
.astro-ico.accent { --astro-icon-color: #f97316; }  /* Tailwind orange-500 */
