<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Styles globaux */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('../images/background6.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
}

.banner {
    width: 100%;
    height: 300px;
    background: url('../images/banner3.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    position: relative; /* Important pour que les ballons soient positionnés à l'intérieur de la bannière */
}

/* Ballons */
.balloon {
    position: absolute; /* Positionne les ballons par rapport à la bannière */
    width: 60px;
    opacity: 0.9;
    z-index: 2; /* Assure que les ballons sont visibles par-dessus d'autres éléments */
}

/* Position des ballons */
.balloon1 {
    left: 28%; /* Positionne le premier ballon à 10% à partir de la gauche */
    bottom: 74.5px; /* Débute un peu plus haut dans la bannière */
    animation: float 6s infinite ease-in-out;
    animation-delay: 2s;
}

.balloon2 {
    left: 65.7%; /* Positionne le second ballon à 80% à partir de la gauche */
    bottom: 75px; /* Débute un peu plus haut que le premier ballon */
    animation: float 7s infinite ease-in-out;
}

/* Animation de montée et oscillation */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-100px) rotate(3deg);
    }
    100% {
        transform: translateY(-200px) rotate(-3deg);
        opacity: 0.8;
    }
}

/* Conteneur du logo et de la manette */
.logo-container {
    position: absolute; /* Permet de positionner à droite */
    top: 20px; /* Distance du haut de la bannière */
    right: 550px; /* Distance du bord droit */
    display: flex; /* Alignement horizontal des éléments */
    align-items: center; /* Centre verticalement */
    gap: 15px; /* Espacement entre le logo et la manette */
}

/* Logo */
.logo {
    position: absolute;
    top: -10px; /* Distance depuis le haut de la bannière */
    right: 5px; /* Distance depuis la droite de la bannière */
    width: auto; /* Conserve la largeur réelle */
    height: auto; /* Conserve la hauteur réelle */
}

/* Manette */
.manette {
    position: absolute;
    top: 46px; /* Placez la manette plus bas que le logo */
    right: 24px; /* Placez la manette juste à gauche du bord droit */
    width: auto; /* Conserve la largeur réelle */
    height: auto; /* Conserve la hauteur réelle */
    animation: bounce 2s ease-in-out infinite; /* Animation de rebond */
}

/* Animation de rebond pour la manette */
@keyframes bounce {
    0% {
        transform: translateY(0); /* Position de départ */
    }
    50% {
        transform: translateY(-15px); /* Monte de 15px */
    }
    100% {
        transform: translateY(0); /* Retour à la position de départ */
    }
}




/* Menu */
nav {
    background: linear-gradient(90deg, #000428, #004e92);
    padding: 15px;
    position: relative;
}

.menu-container {
    display: flex;
    justify-content: flex-start;
    margin-left: 150px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    align-items: center;
	margin-left: 90px; /* Ajustez cette valeur pour déplacer les éléments vers la droite */
}

nav ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

nav ul li img {
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    vertical-align: middle;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.6));
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #FFEB3B;
}

.search-container {
    position: relative; /* Nécessaire pour que l'icône se positionne relativement à cet élément */
}

#radio-icon {
    position: absolute;
    right: 410px; /* Ajuste la distance à droite de la barre de recherche */
    top: 30%; /* Centre verticalement */
    transform: translateY(37%); /* Centrer précisément l'icône */
}

#radio-icon img {
    width: auto;
    height: auto;
    cursor: pointer;
}

/* Sous-menu */
nav ul li ul {
    display: none;
    position: absolute;
    top: 100%; /* Place le sous-menu juste en dessous de l'élément parent */
    left: 0; /* S'assure que le sous-menu s'aligne avec l'élément parent */
    background: #24445C;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    margin: 0; /* Enlève toute marge externe qui pourrait causer un décalage */
}

/* Affiche le sous-menu lorsque la souris est dessus */
nav ul li:hover &gt; ul {
    display: block;
}

/* Style des éléments du sous-menu */
nav ul li ul li {
    padding: 8px;
}

/* Liens dans le sous-menu */
nav ul li ul li a {
    color: #fff;
    font-size: 16px;
    text-decoration: none; /* Assurez-vous que les liens ne sont pas soulignés */
}

/* Effet au survol des liens */
nav ul li ul li a:hover {
    color: #FFEB3B;
}



/* Barre de message d'administration */
.admin-message-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #87cefa, #ffeb3b); /* Bleu ciel et jaune citron */
    color: #003366; /* Texte bleu nuit */
    padding: 10px;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid #ddd; /* Bordure gris clair très fine */
    width: 95%; /* Ajuste la largeur à 95% de la fenêtre */
    max-width: 1320px; /* Limite la largeur à 1320px */
    margin-left: auto;
    margin-right: auto;
    overflow: hidden; /* S'assure que le texte défilant ne dépasse pas */
}

/* Titre de la barre de message */
.admin-message-title {
    font-weight: bold;
    font-size: 16px;
    margin-right: 20px;
    color: #003366;
    display: flex;  /* Utilisation de flexbox pour aligner l'icône et le texte */
    align-items: center; /* Aligne l'icône et le texte verticalement */
    gap: 5px; /* Espace entre l'icône et le texte */
}

/* Icône à gauche du titre */
.admin-message-title i {
    font-size: 20px; /* Ajuste la taille de l'icône */
}

/* Contenu du message défilant */
.admin-message-content {
    flex-grow: 1;
    overflow: hidden; /* Cache les débordements du texte défilant */
    white-space: nowrap; /* Empêche le texte de se mettre sur plusieurs lignes */
}

/* Style du texte défilant */
.admin-message-text {
    display: inline-block;
    font-size: 14px;
    font-weight: normal;
    color: #003366;
    white-space: nowrap; /* Empêche le texte de se diviser */
    animation: scroll-message 20s linear infinite; /* Animation par défaut */
}

@keyframes scroll-message {
    0% {
        transform: translateX(100%); /* Le texte commence à droite */
    }
    100% {
        transform: translateX(-100%); /* Le texte défile à gauche */
    }
}


/* Container principal */
.player-container {
    width: 270px; /* Largeur totale du lecteur */
    background-color: #f9f9f9;
    border: 1px solid #d3d3d3; /* Bordure blanche grise */
    border-radius: 8px;
    padding: 10px;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Effet d'ombre plus marqué */
    position: absolute; /* Utilise absolute pour qu'il reste à une position fixe dans la page */
    top: 10px; /* Positionner le lecteur à 100px du haut de la page */
    right: 20px; /* Placer à droite de la page avec une marge */
    z-index: 9999; /* S'assurer que le player est au-dessus des autres éléments */
    transform: translateX(0); /* Enlever le centrage horizontal */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* Barres d'informations */
.info-bar {
    background-color: #e0e0e0;
    color: #555;
    border-radius: 4px;
    padding: 3px 10px;
    margin-bottom: 6px;
    font-size: 12px;
    display: flex;
    align-items: center;
    height: 25px;
    width: auto;
    box-sizing: border-box;
}

/* Icônes dans les barres d'informations */
.info-bar img {
    width: 20px;
    height: 20px;
    margin-right: 6px;
    vertical-align: middle;
}

/* Zone des contrôles */
.player-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    position: relative;
    height: 30px;
    width: 100%; /* Assure que la barre de contrôle prend toute la largeur */
}

/* Régulateur de volume horizontal */
#volume-slider {
    flex: 1; /* Remplit l'espace disponible */
    height: 8px; /* Épaisseur du régulateur */
    background-color: #ddd;
    border-radius: 4px; /* Coins arrondis */
    border: 1px solid #ccc;
    -webkit-appearance: none; /* Supprime le style par défaut du navigateur */
    appearance: none;
    margin: 0 15px; /* Espacement horizontal avec les boutons voisins */
    outline: none; /* Supprime la bordure de mise au point */
    cursor: pointer;
}

/* Style de la piste (track) */
#volume-slider::-webkit-slider-runnable-track {
    background: #ddd;
    height: 8px;
    border-radius: 4px;
}

/* Style du curseur (thumb) */
#volume-slider::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
    background-color: #00B0FF;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    -webkit-appearance: none;
	transform: translateY(-4px); /* Ajuste le curseur verticalement pour qu'il soit centré */
    transition: background-color 0.3s ease;
}

/* Effet de survol du curseur */
#volume-slider::-webkit-slider-thumb:hover {
    background-color: #007bb5;
}

/* Contrôles */
.controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: flex-start;
    width: auto;
}

/* Boutons */
.btn {
    width: 30px;
    height: 30px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

/* Effet hover sur les boutons */
.btn:hover {
    transform: scale(1.1);
}

/* Bouton lecteur */
.play {
    background-color: #FFEB3B;
    border: none; /* Suppression de la bordure noire */
}

/* Bouton dédicace */
.dedicate {
    background-color: #E53935;
    border: none; /* Suppression de la bordure noire */
    color: white;
    font-size: 18px; /* Assure un cœur bien visible */
}

/* Bouton volume */
.volume {
    background-color: #00B0FF;
    color: white;
}

/* Contenu principal */
.main-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-sizing: border-box;
}

/* Derniers articles */
.latest-articles {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.latest-articles .article h3 {
    background: linear-gradient(to right, #00165a, #1bb6e0); /* Dégradé */
    padding: 10px;
    border-radius: 5px;
    font-size: 18px;
    color: white;
    text-align: center;
    margin: 0 0 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.articles-header {
    margin-bottom: 20px; /* espace entre le titre "Articles récents" et les articles */
}

.latest-articles h2, .other-articles h2 {
    font-size: 1em;
    font-weight: bold;
    color: #003366; /* couleur jaune citron, à personnaliser */
    margin-bottom: 10px; /* espace sous le titre */
}

.author-name {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	border: 1px solid #d3d3d3; /* Bordure gris-blanc */

}

.author {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
	border: 1px solid #d3d3d3; /* Bordure gris-blanc */

}

.article {
    flex: 1;
    width: 280px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    height: 400px;
}

.article:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.article img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 15px;
    position: relative;
}

.article-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.article-content p {
    font-size: 14px;
    margin-bottom: 15px;
}

.article-content .author {
    font-size: 14px;
    font-style: italic;
    color: #D2691E;
    font-weight: bold;
    position: relative;
    top: 18px;
}

.published-date {
    font-size: 14px;
    font-style: italic;
    color: #D2691E;
    font-weight: bold;
}

.read-more {
    display: inline-block;
    background-color: #FFEB3B;
    color: #333;
    padding: 5px 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    border-radius: 5px;
    border: 1px solid #D3D3D3; /* Bordure gris clair */
    position: absolute;
    bottom: 10px;
    right: 15px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    text-align: center;
}

.read-more:hover {
    background-color: #FBC02D;
    border: 2px solid #34495E;
}

/* Autres articles */
.other-articles ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.other-articles li {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    position: relative;
    width: 100%; /* Limite la largeur à 80% de l'espace disponible */
    max-width: 800px; /* Fixe une largeur maximale */
    background: #f0f0f0;
    display: flex;
    gap: 15px;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Ombre douce */
}

.comment-count {
    position: absolute;
    right: 25px;
    top: 21px;
    background-color: #ffcc00;
    color: #333;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    min-width: 20px;
    text-align: center;
    height: 20px;
    align-self: center;
    border: 2px solid #34495E;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comment-icon {
    width: 16px; /* Force la largeur de l'icône */
    height: 16px; /* Force la hauteur de l'icône */
    max-width: 16px; /* S'assure que l'icône ne dépasse pas cette largeur */
    max-height: 16px; /* S'assure que l'icône ne dépasse pas cette hauteur */
    margin-right: 5px;
    vertical-align: middle;
}






.other-articles li img {
    width: 130px;
    height: 170px;
    object-fit: cover;
    border-radius: 5px;
}

.other-articles li .content {
    flex-grow: 1;
}

.other-articles li h3 {
    background: linear-gradient(to right, #00165a, #1bb6e0); /* Dégradé */, 
                url('../images/titre_deco.png') no-repeat right center;
    background-size: cover, contain;
    padding: 10px;
    border-radius: 5px;
    font-size: 18px;
    color: white;
    margin: 0 0 10px;
    text-decoration: none;
}

.other-articles li p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.other-articles li .author {
    font-size: 14px;
    font-style: italic;
    color: #D2691E;
    font-weight: bold;
    position: absolute;
    top: 140px;
}

/* Appliquer le soulignement uniquement à l'élément &lt;a&gt; qui contient le nom de l'auteur */
.author-link {
    text-decoration: underline;
    color: #34495E; /* Bleu nuit */
}

/* Maintenir le soulignement au survol */
.author-link:hover {
    text-decoration: underline !important;
}

.other-articles li .read-more {
    display: inline-block;
    background-color: #FFEB3B;
    color: #333;
    padding: 5px 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    border-radius: 5px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    transition: background-color 0.3s ease;
}

.other-articles li .read-more:hover {
    background-color: #FBC02D;
}

/* Suppression du soulignement pour tous les liens */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.category-title {
    font-size: 15px; /* Taille réduite */
    font-weight: normal; /* Texte en normal au lieu de gras */
    color: #333; /* Couleur personnalisée (ajustable) */
    margin-bottom: 20px; /* Espace sous le titre */
}

.category-title strong {
    font-weight: bold; /* Seul le texte à l'intérieur du &lt;strong&gt; sera en gras */
}

.no-results {
    display: flex;
    align-items: center;
    gap: 10px; /* Espace entre l'icône et le texte */
}

/* Pagination */
.pagination {
    text-align: center;
    margin-top: 20px;
}

.pagination a {
    display: inline-block;
    margin: 0 2px;
    padding: 6px 10px;
    background-color: #FFEB3B;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    border: 1px solid #D3D3D3; /* Bordure gris clair */
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.pagination a:hover {
    background-color: #FBC02D;
    border-color: #A9A9A9; /* Bordure légèrement plus foncée au survol */
}

.pagination a.active {
    background-color: #003366; /* Bleu nuit */
    color: #FFFFFF; /* Texte en blanc */
    border: 2px solid #B0B0B0; /* Bordure gris clair légèrement plus épaisse */
}



footer {
    background: linear-gradient(90deg, #000428, #004e92);
    color: #fff;
    padding: 20px;
    text-align: center;
    margin: 0;
    overflow: hidden;
}

footer .footer-links {
    display: flex;
    justify-content: center;
    align-items: center;  /* Centre les liens verticalement */
    gap: 15px; /* Ajoute un espace uniforme entre les liens */
}

footer .footer-links a {
    display: flex; /* Applique flex à chaque lien */
    align-items: center; /* Centre verticalement le texte */
    height: 100%; /* Évite les décalages */
    gap: 5px; /* Ajoute un léger espace entre l'icône et le texte */
}

footer .footer-links a i {
    font-size: 18px; /* Ajuste la taille de l'icône si nécessaire */
}

footer a {
    color: #FFEB3B;
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px;
}

footer p {
    font-weight: normal;
}

footer .footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

footer .footer-content .footer-image {
    width: 100px;
    height: auto;
    object-fit: contain;
    max-width: 100%; /* S'assure que l'image ne dépasse pas la largeur du conteneur */
    image-rendering: crisp-edges; /* Améliore la netteté de l'image */
}

#botomatic-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 9999;
}

#botomatic-chat {
    position: fixed;
    bottom: 90px; /* au-dessus de l'icône */
    right: 20px;
    width: 300px;
    max-height: 400px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    z-index: 10000;
}

#botomatic-header {
    background-color: #003366;
    color: white;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

#botomatic-header button {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

#botomatic-messages {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
}

#botomatic-messages .message {
    margin-bottom: 10px;
}

#botomatic-messages .message.user {
    text-align: right;
    color: #003366;
    font-weight: bold;
}

#botomatic-messages .message.bot {
    text-align: left;
    color: #F5F5F5; /* Blanc clair (ou teste #E0E0E0 si tu veux un peu plus foncé) */
}


#botomatic-form {
    display: flex;
    padding: 10px;
}

#botomatic-input {
    flex-grow: 1;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#botomatic-form button {
    margin-left: 6px;
    padding: 6px 12px;
    background-color: #003366;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#botomatic-messages {
    height: 300px; /* Hauteur fixe, tu peux adapter */
    overflow-y: auto;
    padding: 10px;
    background-color: #f4f4f4;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.message {
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.3;
    word-wrap: break-word;
}

.message.bot {
    display: flex;
    align-items: center;
    background-color: #2D3E50; /* Bleu foncé élégant */
    color: #F5F5F5; /* Blanc très clair */
    padding: 8px 12px;
    border-radius: 12px;
    margin-bottom: 8px;
    max-width: 80%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    align-self: flex-start;
}



.message.bot .bot-avatar {
    flex-shrink: 0;
    margin-right: 10px;
}

.message.bot .bot-avatar img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.message.bot .bot-text {
    flex-grow: 1;
}



/* Message utilisateur : fond jaune clair, texte sombre */
.message.user {
    background-color: #2ECC71; /* jaune */
    color: #333;
    align-self: flex-end;
}

.typing-message {
    font-style: italic;
    color: #ccc;
    margin: 5px 10px;
}

@keyframes slideUpFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#botomatic-chat.animate-open {
  animation: slideUpFadeIn 0.4s ease forwards;
}

@keyframes slideDownFadeOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(30px);
  }
}

#botomatic-chat.animate-close {
  animation: slideDownFadeOut 0.4s ease forwards;
}




/* Icône fixe en bas à droite */
#tarot-icon {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 10000;
  cursor: pointer;
}

/* Conteneur des cartes */
#tarot-cards {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
  gap: 10px;
}

/* Carte individuelle */
.tarot-card {
  width: 120px;
  height: 200px;
  perspective: 1000px;
  cursor: pointer;
}

.tarot-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.tarot-front, .tarot-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  backface-visibility: hidden;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Flip activé */
.tarot-card.flipped .tarot-inner {
  transform: rotateY(180deg);
}

/* Dos et face des cartes */
.tarot-front {
  background: url('/images/carte-dos.png') no-repeat center/cover;
}

.tarot-back {
  transform: rotateY(180deg);
  background-size: cover;
  background-position: center;
}

/* BOUTONS UNIFIÉS (FERMER + VOIR LE RÉSULTAT) */
/* Boutons Tarot (style de base commun) */
.tarot-button {
  display: inline-block;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 14px; /* taille réduite */
  font-size: 13px;   /* texte plus petit */
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 20px;
  min-width: 100px;
  text-align: center;
}

/* Retire la position absolue et repositionne le bouton fermer */

#tarot-close.tarot-button {
  position: static; /* plus position absolute */
  margin-top: 20px;
  margin-left: 10px; /* un petit espace entre les boutons */
  border-radius: 6px; /* même forme que le bouton résultat */
  padding: 8px 14px;
  font-size: 13px;
  min-width: 100px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  line-height: normal;
  width: auto;
  background-color: #2ecc71;
}

#tarot-close.tarot-button:hover {
  background-color: #27ae60;
}

/* Conteneur pour aligner les boutons côte à côte */
#tarot-buttons-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}


/* Bouton Voir le résultat (bleu ciel) */
#result-button.tarot-button {
  background-color: #3498db;
}
#result-button.tarot-button:hover {
  background-color: #2980b9;
}

.tarot-button:hover {
  background-color: #e67e22;
}

/* Résultat */
/* Conteneur du résultat */
#tarot-result {
  margin-top: 25px;
  padding: 16px 20px;
  background-color: #f4f9ff; /* bleu très clair */
  border: 1px solid #d0e6ff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: none;
  text-align: left;
  font-size: 14.5px;
  color: #333;
  animation: fadeInResult 0.5s ease-in-out;

  max-height: 140px;    /* Limite la hauteur */
  overflow-y: auto;     /* Barre de scroll verticale si besoin */
}

/* Titre Résultat */
#tarot-result h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 16px;
  color: #2c3e50;
}

/* Liste des cartes */
#tarot-result ul {
  padding-left: 20px;
  margin: 0;
}

#tarot-result li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Animation d’apparition */
@keyframes fadeInResult {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Animation ouverture popup */
@keyframes popupFade {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

#tarot-popup {
  animation: popupFade 0.4s ease;
  position: relative; /* Pour le bouton fermer position:absolute */
}

/* Message d'accueil */
#tarot-welcome {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

#tarot-instruction {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.9rem;  /* taille réduite */
  color: #444;
  text-align: center;
  margin: 15px 0;
  animation: fadeInText 0.6s ease;
}



@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



@keyframes fadeInText {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

#tarot-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
  padding: 8px 16px;
  border-bottom: 2px solid #5a9eff; /* bleu ciel */
  display: inline-block;
}




/* Menu Hamburger */
    .menu-toggle {
        display: none;
        cursor: pointer;
        font-size: 24px;
        color: #fff;
    }

/* Responsive */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden; /* Empêche le défilement horizontal */
        width: 100vw; /* Fixe la largeur au viewport */
    }

    /* Menu */

.menu-toggle {
            display: block;
            cursor: pointer;
            font-size: 24px;
            color: #fff;
        }

    nav ul {
            display: none;
            flex-direction: column;
            width: 100%;
            gap: 0;
        }

        nav ul li {
            text-align: center;
            padding: 10px 0;
        }

        nav ul.active {
            display: flex;
        }

        .main-content {
    margin: 10px auto; /* Centre le contenu tout en gardant une marge */
    padding: 7px; /* Ajoute un léger padding pour éviter que le texte touche les bords */
    width: 99%; /* Augmente la largeur pour occuper plus d’espace sans toucher les bords */
    max-width: 1200px; /* Empêche l'extension excessive sur les grands écrans */
}

        .content-wrapper {
        flex-direction: column;
        width: 100%; /* Assure que le wrapper prend toute la largeur */
    }

    .latest-articles {
        flex-direction: column;
        gap: 15px;
        width: 100%; /* Étend la section articles sur toute la largeur */
    }

    .article {
        width: 100%;
    }

    /* Masquer l'auteur et la date sur mobile */
    .author, .published-date {
        display: none;
    }

    .player-container {
        right: 20px;
        top: 80%;
    }

    .logo-container {
        position: absolute;
        top: 20px;
        right: 30px;
    }

    .player-container {
        width: 80%;
        position: static;  /* Positionnement adapté sur mobile */
        display: block;    /* Affiche le player sur mobile */
        margin-left: auto;  /* Centre le player horizontalement */
        margin-right: auto; /* Centre le player horizontalement */
    }

    /* Si le bouton d'affichage du player est présent dans le menu */
    #toggle-player-btn {
        display: block;  /* S'assure que le bouton est visible */
        font-size: 18px;
    }

    footer {
        padding: 15px;  /* Réduit les espaces du footer */
    }

    /* Sur mobile, les liens se placent verticalement */
    footer .footer-links {
        flex-direction: column;  /* Colonne pour les petits écrans */
        gap: 5px;
    }

    footer .footer-content {
        flex-direction: column;  /* Disposition en colonne sur mobile */
        align-items: center;     /* Centrer les éléments */
    }

    footer .footer-content .footer-image {
        width: 60px;   /* Réduit l'image pour les petits écrans */
    }

    .admin-message-bar {
        padding: 8px; /* Moins d'espace pour les petits écrans */
        width: 90%; /* Réduit la largeur de la barre à 90% sur mobile */
        margin-left: auto; /* Centre la barre horizontalement */
        margin-right: auto; /* Centre la barre horizontalement */
    }

    .admin-message-title {
        font-size: 14px; /* Réduit la taille du titre sur mobile */
        gap: 8px;  /* Espace entre l'icône et le titre */
    }

    .admin-message-text {
        font-size: 12px; /* Réduit la taille du texte défilant sur mobile */
        animation: scroll-message 18s linear infinite; /* Accélère l'animation sur mobile */
    }

    nav ul {
        margin-left: 0;
    }

    .comment-count {
        display: none; /* Cache l'élément */
    }

    .balloon1, .balloon2 {
        z-index: 2; /* Garder les ballons derrière le logo sans les cacher */
    }

    .balloon1 {
        left: -1%;
        bottom: 100px; /* Positionnement ajusté */
        width: 50px; /* Réduction de la taille des ballons */
    }

    .balloon2 {
        left: 88%;
        bottom: 100px;
        width: 50px;
    }

    /* Ajuster la taille des ballons pour les petits écrans */
    .balloon {
        width: 50px; /* Réduit la taille des ballons */
    }

    /* Garder les animations actives */
    .banner {
        position: relative; /* Assurer la bonne superposition des éléments */
    }
}
    </pre></body></html>