/* --- CSS SPÉCIFIQUE HOROSCOPE --- */

.horoscope-header h1 {
    background: linear-gradient(135deg, #b39ddb, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Carte signe */
.horoscope-card {
    background-color: rgba(30, 30, 30, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    transition: all 0.3s ease;
}

.horoscope-card:hover {
    transform: translateY(-4px);
    border-color: rgba(179, 157, 219, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Header de la carte */
.horoscope-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    position: relative;
}

.horoscope-symbol {
    font-size: 2.4rem;
    line-height: 1;
    flex-shrink: 0;
}

.horoscope-nom {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: #ede7f6;
    margin: 0;
    line-height: 1.2;
}

.horoscope-dates {
    font-size: 0.75rem;
    color: #a0a0a0;
}

.horoscope-element-badge {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 20px;
    opacity: 0.85;
}

/* Couleurs par élément */
.element-feu .horoscope-card-header {
    background: linear-gradient(135deg, rgba(180, 50, 30, 0.35), rgba(30, 30, 30, 0));
    border-bottom: 1px solid rgba(255, 100, 60, 0.15);
}
.element-feu .horoscope-element-badge {
    background: rgba(200, 60, 30, 0.3);
    color: #ff8a65;
    border: 1px solid rgba(255, 100, 60, 0.3);
}

.element-terre .horoscope-card-header {
    background: linear-gradient(135deg, rgba(60, 100, 40, 0.35), rgba(30, 30, 30, 0));
    border-bottom: 1px solid rgba(100, 160, 60, 0.15);
}
.element-terre .horoscope-element-badge {
    background: rgba(60, 100, 40, 0.3);
    color: #a5d6a7;
    border: 1px solid rgba(100, 160, 60, 0.3);
}

.element-air .horoscope-card-header {
    background: linear-gradient(135deg, rgba(40, 100, 160, 0.35), rgba(30, 30, 30, 0));
    border-bottom: 1px solid rgba(80, 160, 220, 0.15);
}
.element-air .horoscope-element-badge {
    background: rgba(40, 100, 160, 0.3);
    color: #81d4fa;
    border: 1px solid rgba(80, 160, 220, 0.3);
}

.element-eau .horoscope-card-header {
    background: linear-gradient(135deg, rgba(50, 60, 160, 0.35), rgba(30, 30, 30, 0));
    border-bottom: 1px solid rgba(100, 120, 220, 0.15);
}
.element-eau .horoscope-element-badge {
    background: rgba(50, 60, 160, 0.3);
    color: #b39ddb;
    border: 1px solid rgba(100, 120, 220, 0.3);
}

/* Corps de la carte */
.horoscope-card-body {
    padding: 16px 20px 20px;
}

.horoscope-texte {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #c0c0c0;
    margin: 0;
}

/* Effet nebula réutilisé du listing */
.nebula-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.nebula {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
}

.nebula-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #7c4dff, transparent 70%);
    top: -100px; left: -150px;
}

.nebula-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #311b92, transparent 70%);
    bottom: 0; right: -100px;
}

/* ────────────────────────────────────────────────────────── */
/*  HOROSCOPE PERSONNALISÉ : formulaire (sur /horoscope)      */
/* ────────────────────────────────────────────────────────── */
.horoscope-perso-form-section {
    margin-top: 4rem;
}

.horoscope-perso-form-card {
    background-color: rgba(30, 30, 30, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(179, 157, 219, 0.2);
    padding: 2.5rem 2rem;
}

.horoscope-perso-form-card h2 {
    font-family: 'Cinzel', serif;
    color: #ede7f6;
    font-size: 1.6rem;
}

.horoscope-perso-form .form-label {
    color: #c0c0c0;
    font-size: 0.9rem;
    font-weight: 500;
}

.horoscope-perso-form .form-control {
    background-color: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ede7f6;
    padding: 0.6rem 0.9rem;
}

.horoscope-perso-form .form-control:focus,
.horoscope-perso-form .form-select:focus {
    background-color: rgba(15, 15, 15, 0.8);
    border-color: rgba(179, 157, 219, 0.5);
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(179, 157, 219, 0.15);
}

.horoscope-perso-form .form-select {
    background-color: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ede7f6;
    padding: 0.6rem 2.25rem 0.6rem 0.9rem;
    /* Chevron blanc-violet plutôt que noir */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23b39ddb'%3E%3Cpath d='M8 11L2 5h12z'/%3E%3C/svg%3E");
}

.horoscope-perso-form .form-select:invalid {
    color: #888;
}

.horoscope-perso-form .form-select option {
    background-color: #1a1428;
    color: #ede7f6;
}

.horoscope-perso-form .form-select option[disabled] {
    color: #777;
}

.horoscope-perso-form .btn-primary {
    background: linear-gradient(135deg, #7c4dff, #b39ddb);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.horoscope-perso-form .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(124, 77, 255, 0.35);
}

/* ────────────────────────────────────────────────────────── */
/*  HOROSCOPE PERSONNALISÉ : page résultat                    */
/* ────────────────────────────────────────────────────────── */
.horoscope-perso-title {
    background: linear-gradient(135deg, #b39ddb, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.horoscope-perso-meta {
    color: #a0a0a0;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.horoscope-perso-meta strong {
    color: #ede7f6;
    font-weight: 600;
}

.horoscope-perso-card {
    background-color: rgba(30, 30, 30, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(179, 157, 219, 0.2);
    padding: 2.5rem 2.5rem;
    color: #d6d6d6;
    line-height: 1.75;
    font-size: 1.05rem;
}

.horoscope-perso-card p {
    margin-bottom: 1.1rem;
}

.horoscope-perso-card p:last-child {
    margin-bottom: 0;
}

/* ────────────────────────────────────────────────────────── */
/*  HOROSCOPE PERSONNALISÉ : bloc 3 voyants                   */
/* ────────────────────────────────────────────────────────── */
.horoscope-voyants-block {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.horoscope-voyants-block h2 {
    font-family: 'Cinzel', serif;
    color: #ede7f6;
    font-size: 1.5rem;
}

.horoscope-voyant-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.horoscope-voyant-card:hover {
    transform: translateY(-3px);
    border-color: rgba(179, 157, 219, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    color: inherit;
}

.horoscope-voyant-thumb {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background-color: rgba(124, 77, 255, 0.15);
    color: #b39ddb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.horoscope-voyant-thumb-placeholder {
    border: 1px solid rgba(179, 157, 219, 0.2);
}

.horoscope-voyant-info {
    min-width: 0;
}

.horoscope-voyant-name {
    font-family: 'Cinzel', serif;
    color: #ede7f6;
    font-size: 1rem;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.horoscope-voyant-job {
    color: #b39ddb;
    font-size: 0.85rem;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.horoscope-voyant-city {
    color: #a0a0a0;
    font-size: 0.8rem;
    margin-top: 2px;
}

/* ────────────────────────────────────────────────────────── */
/*  Séparateur visuel sur /horoscope (form / 12 signes)        */
/* ────────────────────────────────────────────────────────── */
.horoscope-section-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 3rem auto 2rem;
    color: #888;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.horoscope-section-divider::before,
.horoscope-section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
}

.horoscope-section-divider span {
    flex-shrink: 0;
}

/* ────────────────────────────────────────────────────────── */
/*  Loader cosmique riche : zodiaque, orbites, étoiles        */
/* ────────────────────────────────────────────────────────── */
.horoscope-perso-loader {
    text-align: center;
    padding: 1.5rem 1rem 3rem;
    min-height: 480px;
}

.hp-cosmos {
    position: relative;
    width: 360px;
    height: 360px;
    margin: 0 auto 2rem;
    max-width: 90vw;
}

/* Étoiles scintillantes en fond */
.hp-cosmos .hp-star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 6px #fff, 0 0 12px rgba(179, 157, 219, 0.6);
    animation: hpStarTwinkle 2.6s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes hpStarTwinkle {
    0%, 100% { opacity: 0.25; transform: scale(0.7); }
    50%      { opacity: 1;    transform: scale(1.2); }
}

/* Roue zodiacale extérieure */
.hp-zodiac-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(179, 157, 219, 0.18);
    animation: hpZodiacRotate 60s linear infinite;
}

.hp-zodiac-sym {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    margin: -14px 0 0 -14px;
    transform: rotate(var(--a)) translateY(-170px) rotate(calc(var(--a) * -1));
    color: var(--accent-gold, #d4af37);
    font-size: 1.05rem;
    text-align: center;
    line-height: 28px;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
    opacity: 0.7;
}

@keyframes hpZodiacRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Orbites planétaires concentriques */
.hp-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px dashed rgba(179, 157, 219, 0.25);
    transform: translate(-50%, -50%);
}

.hp-orbit-1 { width: 220px; height: 220px; animation: hpOrbitSpin 9s linear infinite; }
.hp-orbit-2 { width: 160px; height: 160px; animation: hpOrbitSpin 6s linear infinite reverse; border-color: rgba(255,215,0,0.22); border-style: dotted; }
.hp-orbit-3 { width: 100px; height: 100px; animation: hpOrbitSpin 4s linear infinite; border-color: rgba(124,77,255,0.3); }

.hp-orbit .hp-planet {
    position: absolute;
    top: -6px;
    left: 50%;
    margin-left: -6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffd700, #d4af37 70%);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.hp-orbit-2 .hp-planet {
    background: radial-gradient(circle at 30% 30%, #b39ddb, #7c4dff 70%);
    box-shadow: 0 0 10px rgba(179, 157, 219, 0.7);
    width: 10px; height: 10px; margin-left: -5px; top: -5px;
}

.hp-orbit-3 .hp-planet {
    background: radial-gradient(circle at 30% 30%, #fff, #b39ddb 70%);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
    width: 8px; height: 8px; margin-left: -4px; top: -4px;
}

@keyframes hpOrbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Orbe central pulsant */
.hp-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    margin: -32px 0 0 -32px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #b39ddb, #4a148c 75%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow:
        0 0 20px rgba(179, 157, 219, 0.6),
        0 0 40px rgba(124, 77, 255, 0.4),
        0 0 80px rgba(124, 77, 255, 0.2);
    animation: hpOrbPulse 2.6s ease-in-out infinite;
}

@keyframes hpOrbPulse {
    0%, 100% { transform: scale(1);    box-shadow: 0 0 20px rgba(179,157,219,0.6), 0 0 40px rgba(124,77,255,0.4), 0 0 80px rgba(124,77,255,0.2); }
    50%      { transform: scale(1.08); box-shadow: 0 0 30px rgba(179,157,219,0.85), 0 0 60px rgba(124,77,255,0.55), 0 0 110px rgba(124,77,255,0.35); }
}

/* Titre et statut défilant */
.hp-loader-title {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    color: #ede7f6;
    margin: 0 0 0.85rem;
    letter-spacing: 0.04em;
}

.hp-loader-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #b39ddb;
    font-size: 0.95rem;
    font-style: italic;
    min-height: 1.5rem;
}

.hp-loader-status-text {
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hp-loader-status-text.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hp-loader-status-dots {
    display: inline-flex;
    gap: 3px;
}

.hp-loader-status-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-gold, #d4af37);
    animation: hpDotBounce 1.2s ease-in-out infinite;
}

.hp-loader-status-dots span:nth-child(2) { animation-delay: 0.2s; }
.hp-loader-status-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes hpDotBounce {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50%      { opacity: 1;   transform: translateY(-3px); }
}

@media (max-width: 480px) {
    .hp-cosmos { width: 280px; height: 280px; }
    .hp-zodiac-sym { transform: rotate(var(--a)) translateY(-130px) rotate(calc(var(--a) * -1)); font-size: 0.9rem; }
    .hp-orbit-1 { width: 180px; height: 180px; }
    .hp-orbit-2 { width: 130px; height: 130px; }
    .hp-orbit-3 { width: 85px;  height: 85px; }
}

/* ────────────────────────────────────────────────────────── */
/*  Apparition douce du résultat                              */
/* ────────────────────────────────────────────────────────── */
.horoscope-perso-result {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.horoscope-perso-result.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.horoscope-perso-section-title {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: #ede7f6;
    margin: 2.5rem 0 1.5rem;
    letter-spacing: 0.04em;
}

/* ────────────────────────────────────────────────────────── */
/*  Mantra (citation centrale d'accroche)                     */
/* ────────────────────────────────────────────────────────── */
.horoscope-perso-mantra {
    margin: 1.5rem auto 2.5rem;
    text-align: center;
}

.horoscope-mantra-quote {
    display: inline-block;
    max-width: 720px;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.12), rgba(255, 215, 0, 0.06));
    border-left: 3px solid var(--accent-glow, #b39ddb);
    border-right: 3px solid var(--accent-gold, #d4af37);
    border-radius: 8px;
    position: relative;
}

.horoscope-mantra-quote-icon {
    color: rgba(179, 157, 219, 0.4);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    display: block;
}

.horoscope-mantra-text {
    font-family: 'Cinzel', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #ede7f6;
    margin: 0;
    line-height: 1.5;
}

/* ────────────────────────────────────────────────────────── */
/*  6 cards thématiques (énergies du jour)                    */
/* ────────────────────────────────────────────────────────── */
.horoscope-theme-card {
    background-color: rgba(30, 30, 30, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1.25rem 1rem;
    text-align: center;
    height: 100%;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.horoscope-theme-card:hover {
    transform: translateY(-3px);
    border-color: rgba(179, 157, 219, 0.3);
}

.horoscope-theme-icon {
    font-size: 1.6rem;
    color: #b39ddb;
    margin-bottom: 0.5rem;
}

.horoscope-theme-label {
    font-family: 'Cinzel', serif;
    color: #ede7f6;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.horoscope-theme-stars {
    color: #d4af37;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.horoscope-theme-stars .far {
    color: rgba(212, 175, 55, 0.3);
}

.horoscope-theme-advice {
    color: #c0c0c0;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* ────────────────────────────────────────────────────────── */
/*  Repères : couleur, chiffre, mantra                        */
/* ────────────────────────────────────────────────────────── */
.horoscope-repere-card {
    background-color: rgba(30, 30, 30, 0.45);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1.25rem 1rem;
    text-align: center;
    height: 100%;
}

.horoscope-repere-label {
    color: #a0a0a0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.85rem;
}

.horoscope-repere-couleur {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.horoscope-repere-couleur-pastille {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

.horoscope-repere-couleur-label {
    font-family: 'Cinzel', serif;
    color: #ede7f6;
    font-size: 1rem;
}

.horoscope-repere-chiffre {
    font-family: 'Cinzel', serif;
    font-size: 2.6rem;
    background: linear-gradient(135deg, #b39ddb, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.horoscope-repere-mantra {
    font-style: italic;
    color: #d6d6d6;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ────────────────────────────────────────────────────────── */
/*  Repères enrichis : Lune, Tarot, Compatibilité, Pierre     */
/* ────────────────────────────────────────────────────────── */
.horoscope-repere-lune,
.horoscope-repere-tarot,
.horoscope-repere-pierre {
    text-align: center;
}

.horoscope-repere-lune-icon,
.horoscope-repere-pierre-icon {
    font-size: 1.8rem;
    color: #b39ddb;
    margin-bottom: 0.5rem;
    display: block;
}

.horoscope-repere-lune-label,
.horoscope-repere-pierre-nom,
.horoscope-repere-tarot-label {
    font-family: 'Cinzel', serif;
    color: #ede7f6;
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.horoscope-repere-lune-impact,
.horoscope-repere-pierre-vertu,
.horoscope-repere-tarot-interp {
    color: #c0c0c0;
    font-size: 0.82rem;
    line-height: 1.45;
    margin: 0;
}

.horoscope-repere-tarot-roman {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    background: linear-gradient(135deg, #b39ddb, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.horoscope-repere-compat {
    text-align: left;
}

.horoscope-repere-compat-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.horoscope-repere-compat-row + .horoscope-repere-compat-row {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.horoscope-repere-compat-row i {
    flex-shrink: 0;
    margin-top: 0.2rem;
    width: 22px;
    text-align: center;
}

.horoscope-repere-compat-ami i {
    color: #81c784;
}

.horoscope-repere-compat-prudence i {
    color: #ffb74d;
}

.horoscope-repere-compat-row strong {
    font-family: 'Cinzel', serif;
    color: #ede7f6;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.15rem;
}

.horoscope-repere-compat-row p {
    color: #a8a8a8;
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

/* ────────────────────────────────────────────────────────── */
/*  Moments du jour (Matin / Après-midi / Soir)               */
/* ────────────────────────────────────────────────────────── */
.horoscope-perso-moments-block {
    margin-top: 2rem;
}

.horoscope-moments {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 820px;
    margin: 0 auto;
}

.horoscope-moment {
    background-color: rgba(30, 30, 30, 0.55);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1.25rem 1.5rem;
}

.horoscope-moment-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #b39ddb;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.6rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(179, 157, 219, 0.15);
}

.horoscope-moment-header i {
    font-size: 1.1rem;
    color: var(--accent-gold, #d4af37);
}

.horoscope-moment-body {
    color: #d6d6d6;
    line-height: 1.65;
    font-size: 0.98rem;
}

.horoscope-moment-body p {
    margin: 0;
}

.horoscope-moment-body p + p {
    margin-top: 0.5rem;
}

/* ────────────────────────────────────────────────────────── */
/*  Mot de Solène (signature persona)                         */
/* ────────────────────────────────────────────────────────── */
.horoscope-perso-solene-block {
    margin: 2.5rem auto 0;
    max-width: 720px;
}

.horoscope-solene {
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.15), rgba(30, 30, 30, 0.55));
    border-radius: 16px;
    border: 1px solid rgba(179, 157, 219, 0.25);
    padding: 1.5rem 1.75rem;
}

.horoscope-solene-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.horoscope-solene-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b39ddb, #d4af37);
    color: #1a1428;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.horoscope-solene-eyebrow {
    color: #a0a0a0;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.horoscope-solene-name {
    font-family: 'Cinzel', serif;
    color: #ede7f6;
    font-size: 1.25rem;
    line-height: 1;
}

.horoscope-solene-text {
    color: #d6d6d6;
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .horoscope-perso-card {
        padding: 1.5rem;
        font-size: 1rem;
    }
    .horoscope-perso-meta span {
        display: block;
        margin: 0.25rem 0;
    }
}
