:root {
    --bg-dark: #0a0a12;
    --primary: #9b51e0;
    --secondary: #ff00ff;
    --text-light: #e0e0e0;
    --glass-bg: rgba(25, 25, 35, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Halo */
.bg-halo {
    position: fixed; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(155, 81, 224, 0.15), transparent 60%);
    z-index: -1; pointer-events: none; animation: pulse 10s infinite alternate;
}

@keyframes pulse { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }

/* Header */
.main-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; background: rgba(10,10,18,0.8);
    backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100;
}
.logo a { color: #fff; text-decoration: none; font-size: 1.8rem; font-weight: 800; letter-spacing: 2px;}
.logo span { color: var(--primary); }
nav a { color: var(--text-light); text-decoration: none; margin-left: 20px; font-weight: 600; transition: 0.3s;}
nav a:hover { color: var(--secondary); }

/* Buttons */
.btn-neon {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    padding: 10px 25px; border-radius: 30px; color: #fff !important;
    text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(155, 81, 224, 0.5); transition: 0.3s;
}
.btn-neon:hover { box-shadow: 0 0 25px rgba(255, 0, 255, 0.8); transform: translateY(-2px); }

/* Glassmorphism Utility */
.glassmorphism {
    background: var(--glass-bg); backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border); border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    height: 60vh; background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero h1 { font-size: 4rem; color: #fff; text-shadow: 0 0 20px rgba(0,0,0,0.8); }
.hero h1 span { color: var(--secondary); text-shadow: 0 0 10px var(--secondary); }
.hero p { font-size: 1.2rem; margin-top: 10px; }

/* Promo Box (Monetization) */
.promo-box {
    display: flex; align-items: center; margin: 40px auto; width: 90%; max-width: 1000px;
    overflow: hidden;
}
.promo-img { width: 40%; object-fit: cover; }
.promo-text { padding: 30px; width: 60%; }
.promo-text h2 { margin-bottom: 15px; color: #fff; }
.promo-text p { margin-bottom: 25px; }

/* Grid Tarots */
.section-title { text-align: center; font-size: 2.5rem; margin: 50px 0 30px; color: #fff; }
.tarot-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px; padding: 0 5%; max-width: 1200px; margin: auto;
}
.tarot-card {
    text-align: center; padding: 20px; text-decoration: none; color: #fff;
    transition: 0.4s; position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center;
}
.tarot-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 0 20px rgba(155, 81, 224, 0.4); }
.tarot-card img { width: 200px; height: 209px; border-radius: 10px; margin-bottom: 15px; object-fit: cover; }
.badge-new { position: absolute; top: 10px; right: -30px; background: var(--secondary); padding: 5px 30px; transform: rotate(45deg); font-size: 0.8rem; font-weight: bold; }

/* Single Tarot Page */
.single-tarot-container { max-width: 1000px; margin: 40px auto; padding: 0 20px; }
.short-desc { font-size: 1.2rem; color: #bbb; margin: 20px 0; }
.iframe-container { width: 100%; min-height: 600px; margin: 30px 0; padding: 10px; }
.iframe-container iframe { width: 100%; height: 600px; border: none; border-radius: 10px; }
.long-desc { font-size: 1.1rem; line-height: 1.8; color: #ccc; }
.long-desc h2, .long-desc h3 { color: #fff; margin-top: 25px; margin-bottom: 15px;}
.mt-4 { margin-top: 40px; }

/* Fake Chatbox */
.chatbox-container {
    position: fixed; bottom: 20px; right: 20px; width: 320px;
    background: var(--bg-dark); border: 1px solid var(--primary);
    border-radius: 15px; box-shadow: 0 0 30px rgba(155,81,224,0.3); z-index: 1000;
    transition: all 0.5s ease;
}
.chatbox-container.hidden { transform: translateY(150%); opacity: 0; }
.chatbox-header {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    padding: 15px; border-radius: 15px 15px 0 0; display: flex; align-items: center; color: #fff; font-weight: bold;
}
.status-dot { width: 10px; height: 10px; background: #00ff00; border-radius: 50%; margin-right: 10px; box-shadow: 0 0 10px #00ff00; }
#close-chat { margin-left: auto; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
.chatbox-body { padding: 15px; height: 150px; overflow-y: auto; background: var(--glass-bg); }
.message { background: rgba(255,255,255,0.1); padding: 10px; border-radius: 10px; font-size: 0.9rem; margin-bottom: 10px; }
.chatbox-footer { padding: 15px; text-align: center; }
.chat-btn { display: block; background: var(--secondary); color: #fff; text-decoration: none; padding: 10px; border-radius: 8px; font-weight: bold; transition: 0.3s;}
.chat-btn:hover { background: var(--primary); }

/* Responsive */
@media (max-width: 768px) {
    .promo-box { flex-direction: column; }
    .promo-img, .promo-text { width: 100%; }
    .hero h1 { font-size: 2.5rem; }
}

/* =========================================
   FAQ ACCORDÉON (Design 2026 / Néon)
   ========================================= */

.diana-faq-section {
    margin: 50px 0;
    padding: 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.diana-faq-section h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
    font-size: 2rem;
    text-shadow: 0 0 15px rgba(155, 81, 224, 0.5);
}

.diana-accordion-item {
    margin-bottom: 15px;
    border: 1px solid rgba(155, 81, 224, 0.3);
    border-radius: 10px;
    background: rgba(10, 10, 18, 0.6);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Effet au survol */
.diana-accordion-item:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(155, 81, 224, 0.2);
    transform: translateX(5px); /* Léger décalage dynamique */
}

/* Bouton de la question */
.diana-accordion-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: color 0.3s ease;
}

.diana-accordion-btn:hover {
    color: #fff;
}

/* L'icône "+" */
.diana-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.4s ease, color 0.4s ease;
    display: inline-block;
    text-shadow: 0 0 8px var(--primary);
}

/* Contenu masqué par défaut */
.diana-accordion-content {
    max-height: 0; /* Géré par JS ensuite */
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
    opacity: 0;
    padding: 0 20px; /* Pas de padding vertical ici pour ne pas casser l'animation */
}

.diana-accordion-content p {
    margin: 0;
    padding-bottom: 20px; /* Espace en bas du texte */
    color: #ccc;
    line-height: 1.6;
    font-weight: 300;
}

/* =========================================
   ÉTAT ACTIF (Quand la question est ouverte)
   ========================================= */

.diana-accordion-item.active {
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
    background: rgba(20, 15, 30, 0.8);
    transform: translateX(0);
}

.diana-accordion-item.active .diana-accordion-btn {
    color: #fff;
}

/* Le "+" devient un "×" avec rotation et devient rose fluo */
.diana-accordion-item.active .diana-icon {
    transform: rotate(45deg);
    color: var(--secondary);
    text-shadow: 0 0 10px var(--secondary);
}

.diana-accordion-item.active .diana-accordion-content {
    opacity: 1;
}










/* =========================================
   HOROSCOPE GRID & CARDS (Design 2026)
   ========================================= */

.astro-section {
    padding: 20px 0;
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: 40px; }
.p-4 { padding: 30px; }

.astro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    padding: 0 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.astro-card {
    text-align: center;
    padding: 20px 10px;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.astro-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.3);
}

/* Le cercle design pour le signe */
.astro-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-dark), rgba(155, 81, 224, 0.4));
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: inset 0 0 15px rgba(155, 81, 224, 0.5), 0 0 15px rgba(0,0,0,0.5);
    transition: all 0.4s ease;
}

.astro-circle span {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
    text-shadow: 0 0 10px var(--primary);
}

.astro-card:hover .astro-circle {
    border-color: var(--secondary);
    background: linear-gradient(135deg, var(--bg-dark), rgba(255, 0, 255, 0.4));
    box-shadow: inset 0 0 20px rgba(255, 0, 255, 0.6), 0 0 20px rgba(255, 0, 255, 0.4);
}

.astro-card h3 {
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Ajustement Iframe Horoscope */
.iframe-container iframe {
    background: transparent;
}