/* ============================================================
   Les Petits Points® — Charte Graphique CSS
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Quicksand:wght@300;400;500;600;700&display=swap');

/* --- Variables Charte --- */
:root {
    --bleu-petrole: #243A52;
    --vert-sauge: #7DB58F;
    --terracotta: #B66D49;
    --ocre: #D9A441;
    --brun-naturel: #8C6A3B;
    --beige-clair: #CBBBA0;
    --fond-beige: #EDE6DE;
    --blanc: #FFFFFF;
    --noir: #1a1a1a;
    --gris-doux: #9a9a9a;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--bleu-petrole) 0%, #1a2d40 100%);
    --gradient-warm: linear-gradient(135deg, var(--terracotta) 0%, var(--ocre) 100%);
    --gradient-nature: linear-gradient(135deg, var(--vert-sauge) 0%, #5a9b6e 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(36,58,82,0.08);
    --shadow-md: 0 4px 16px rgba(36,58,82,0.12);
    --shadow-lg: 0 8px 32px rgba(36,58,82,0.16);
    --shadow-glow: 0 0 24px rgba(125,181,143,0.3);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--fond-beige);
    color: var(--bleu-petrole);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--bleu-petrole);
}

/* --- Main Layout --- */
.lpp-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.lpp-main {
    flex: 1;
    padding-bottom: 80px; /* space for bottom nav */
}

/* --- Header --- */
.lpp-header {
    background: var(--blanc);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.lpp-header__logo {
    height: 56px;
    width: auto;
}

.lpp-header__territory-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.lpp-header__logo-small {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.lpp-header__moon {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gris-doux);
    font-weight: 500;
}

.lpp-header__moon-emoji {
    font-size: 1.3rem;
}

/* --- Bottom Navigation (mobile) --- */
.lpp-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--blanc);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -2px 16px rgba(36,58,82,0.1);
    z-index: 100;
}

.lpp-bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--gris-doux);
    font-size: 0.7rem;
    font-weight: 600;
    gap: 2px;
    transition: var(--transition-fast);
    padding: 4px 12px;
}

.lpp-bottom-nav__item.active,
.lpp-bottom-nav__item:hover {
    color: var(--bleu-petrole);
}

.lpp-bottom-nav__icon {
    font-size: 1.4rem;
}

/* --- Point Page (QCM Flow) --- */
.lpp-point {
    max-width: 480px;
    margin: 0 auto;
    padding: 16px;
}

.lpp-point__territory-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: var(--blanc);
    background: var(--bleu-petrole);
}

.lpp-point__name {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.lpp-point__description {
    color: var(--gris-doux);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* --- Step Indicator --- */
.lpp-steps {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.lpp-steps__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--beige-clair);
    transition: var(--transition);
}

.lpp-steps__dot.active {
    background: var(--vert-sauge);
    transform: scale(1.3);
    box-shadow: var(--shadow-glow);
}

.lpp-steps__dot.completed {
    background: var(--bleu-petrole);
}

/* --- Question Card --- */
.lpp-question-card {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
    animation: slideUp 0.5s ease-out;
}

.lpp-question-card__label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--terracotta);
    margin-bottom: 12px;
}

.lpp-question-card__text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    line-height: 1.4;
    color: var(--bleu-petrole);
    margin-bottom: 4px;
}

.lpp-question-card__image {
    width: 100%;
    border-radius: var(--radius-md);
    margin: 16px 0;
    object-fit: cover;
    max-height: 200px;
}

/* --- Answers --- */
.lpp-answers {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.lpp-answer {
    background: var(--blanc);
    border: 2px solid var(--fond-beige);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.lpp-answer:hover {
    border-color: var(--vert-sauge);
    background: rgba(125,181,143,0.05);
}

.lpp-answer.selected {
    border-color: var(--bleu-petrole);
    background: rgba(36,58,82,0.05);
}

.lpp-answer.correct {
    border-color: var(--vert-sauge);
    background: rgba(125,181,143,0.1);
}

.lpp-answer.incorrect {
    border-color: var(--terracotta);
    background: rgba(182,109,73,0.1);
    opacity: 0.7;
}

.lpp-answer__radio {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid var(--beige-clair);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lpp-answer.selected .lpp-answer__radio {
    border-color: var(--bleu-petrole);
    background: var(--bleu-petrole);
}

.lpp-answer.selected .lpp-answer__radio::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blanc);
}

.lpp-answer.correct .lpp-answer__radio {
    border-color: var(--vert-sauge);
    background: var(--vert-sauge);
}

.lpp-answer.correct .lpp-answer__radio::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: 700;
}

/* --- Submit Button --- */
.lpp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    width: 100%;
    text-align: center;
}

.lpp-btn--primary {
    background: var(--gradient-primary);
    color: var(--blanc);
    box-shadow: var(--shadow-md);
}

.lpp-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.lpp-btn--primary:active {
    transform: translateY(0);
}

.lpp-btn--primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.lpp-btn--success {
    background: var(--gradient-nature);
    color: var(--blanc);
    box-shadow: var(--shadow-md);
}

.lpp-btn--warm {
    background: var(--gradient-warm);
    color: var(--blanc);
    box-shadow: var(--shadow-md);
}

.lpp-btn--warm:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.lpp-btn--outline {
    background: transparent;
    color: var(--bleu-petrole);
    border: 2px solid var(--bleu-petrole);
}

.lpp-btn--outline:hover {
    background: var(--bleu-petrole);
    color: var(--blanc);
}

.lpp-btn--sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* --- Result Card --- */
.lpp-result {
    display: none;
    animation: slideUp 0.5s ease-out;
}

.lpp-result.visible {
    display: block;
}

.lpp-result__badge {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.lpp-result__badge.correct {
    display: flex;
    background: rgba(125,181,143,0.15);
    color: #2e7d4f;
}

.lpp-result__badge.incorrect {
    display: flex;
    background: rgba(182,109,73,0.12);
    color: #a0522d;
}

.lpp-result__badge.already {
    display: flex;
    background: rgba(0,0,0,0.04);
    color: var(--gris-doux);
}

.lpp-result__badge__points {
    font-weight: 700;
    color: var(--ocre);
    white-space: nowrap;
}

/* --- Anecdote Card --- */
.lpp-anecdote {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 16px;
}

.lpp-anecdote__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.lpp-anecdote__content {
    padding: 24px;
}


.lpp-anecdote__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.lpp-anecdote__text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--noir);
}

/* --- CTA Section --- */
.lpp-cta {
    text-align: center;
    margin: 24px 0;
}

/* --- Invitation Section (Step 3) --- */
.lpp-invitation {
    display: none;
    animation: slideUp 0.5s ease-out;
}

.lpp-invitation.visible {
    display: block;
}

.lpp-invitation__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0;
}

.lpp-invitation__card {
    background: var(--blanc);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    text-decoration: none;
    color: var(--bleu-petrole);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.lpp-invitation__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.lpp-invitation__card-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
}

.lpp-invitation__card-label {
    font-size: 0.8rem;
    font-weight: 600;
}

/* --- Map --- */
.lpp-map-container {
    position: relative;
}

#map {
    height: calc(100vh - 140px);
    width: 100%;
    z-index: 1;
}

.lpp-map-filters {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
}

.lpp-map-select {
    padding: 8px 36px 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
    border: 2px solid var(--blanc);
    background: var(--blanc) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23243A52' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
    color: var(--bleu-petrole);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    appearance: none;
    -webkit-appearance: none;
    min-width: 200px;
}

/* Leaflet popup custom */
.lpp-popup {
    font-family: 'Quicksand', sans-serif;
    text-align: center;
}

.lpp-popup__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--bleu-petrole);
}

.lpp-popup__territory {
    font-size: 0.75rem;
    color: var(--gris-doux);
    margin-bottom: 8px;
}

.lpp-popup__link {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: var(--bleu-petrole);
    color: var(--blanc) !important;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.lpp-popup__link:hover {
    background: var(--vert-sauge);
}

/* --- Ranking --- */
.lpp-ranking {
    max-width: 480px;
    margin: 0 auto;
    padding: 16px;
}

.lpp-ranking__podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 12px;
    margin: 24px 0;
    padding: 0 16px;
}

.lpp-ranking__podium-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.lpp-ranking__podium-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--blanc);
}

.lpp-ranking__podium-item:nth-child(1) .lpp-ranking__podium-avatar { background: var(--ocre); width: 56px; height: 56px; }
.lpp-ranking__podium-item:nth-child(2) .lpp-ranking__podium-avatar { background: var(--beige-clair); }
.lpp-ranking__podium-item:nth-child(3) .lpp-ranking__podium-avatar { background: var(--brun-naturel); }

.lpp-ranking__podium-name {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.lpp-ranking__podium-score {
    font-size: 0.7rem;
    color: var(--gris-doux);
    font-weight: 700;
}

.lpp-ranking__list {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.lpp-ranking__item {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--fond-beige);
    transition: var(--transition-fast);
}

.lpp-ranking__item:last-child {
    border-bottom: none;
}

.lpp-ranking__item:hover {
    background: rgba(125,181,143,0.05);
}

.lpp-ranking__rank {
    width: 32px;
    font-weight: 700;
    color: var(--gris-doux);
    font-size: 0.9rem;
}

.lpp-ranking__name {
    flex: 1;
    font-weight: 600;
    font-size: 0.9rem;
}

.lpp-ranking__score {
    font-weight: 700;
    color: var(--ocre);
    font-size: 0.9rem;
}

.lpp-ranking__invitation {
    margin-top: 32px;
    background: var(--blanc);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(217, 164, 65, 0.15);
}

.lpp-ranking__invitation-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 6rem;
    color: var(--ocre);
    opacity: 0.08;
    transform: rotate(15deg);
    pointer-events: none;
}

.lpp-ranking__invitation-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--bleu-petrole);
}

.lpp-ranking__invitation-text {
    color: var(--gris-doux);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.lpp-ranking__invitation-footer {
    font-size: 0.85rem;
    margin-top: 16px;
    color: var(--gris-doux);
}

.lpp-ranking__invitation-footer a {
    color: var(--bleu-petrole);
    font-weight: 700;
    text-decoration: none;
}

/* --- Auth --- */
.lpp-auth {
    max-width: 400px;
    margin: 40px auto;
    background: var(--blanc);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-md);
}

.lpp-auth__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 24px;
}

.lpp-auth__logo {
    display: block;
    width: 120px;
    height: auto;
    margin: 0 auto 24px;
}

.lpp-form-group {
    margin-bottom: 16px;
}

.lpp-form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: var(--bleu-petrole);
}

.lpp-form-group input,
.lpp-form-group textarea,
.lpp-form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--fond-beige);
    border-radius: var(--radius-md);
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    color: var(--bleu-petrole);
    transition: var(--transition);
    background: var(--blanc);
}

.lpp-form-group input:focus,
.lpp-form-group textarea:focus,
.lpp-form-group select:focus {
    outline: none;
    border-color: var(--vert-sauge);
    box-shadow: 0 0 0 3px rgba(125,181,143,0.15);
}

.lpp-auth__link {
    text-align: center;
    margin-top: 16px;
    font-size: 0.85rem;
}

.lpp-auth__link a {
    color: var(--bleu-petrole);
    font-weight: 600;
    text-decoration: underline;
}

/* --- Profile --- */
.lpp-profile {
    max-width: 480px;
    margin: 0 auto;
    padding: 16px;
}

.lpp-profile__header {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 28px;
    color: var(--blanc);
    text-align: center;
    margin-bottom: 20px;
}

.lpp-profile__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 12px;
    border: 3px solid rgba(255,255,255,0.3);
}

.lpp-profile__username {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--blanc);
}

.lpp-profile__stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 16px;
}

.lpp-profile__stat {
    text-align: center;
}

.lpp-profile__stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.lpp-profile__stat-label {
    font-size: 0.7rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lpp-profile__visited {
    background: var(--blanc);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.lpp-profile__visited-title {
    padding: 16px 20px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--fond-beige);
}

.lpp-profile__visited-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--fond-beige);
}

.lpp-profile__visited-item:last-child {
    border-bottom: none;
}

/* --- Flash Messages --- */
.lpp-flash {
    padding: 12px 20px;
    border-radius: var(--radius-md);
    margin: 12px 16px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: slideDown 0.3s ease-out;
}

.lpp-flash--success {
    background: rgba(125,181,143,0.15);
    color: #2d6a3e;
    border: 1px solid rgba(125,181,143,0.3);
}

.lpp-flash--error {
    background: rgba(182,109,73,0.15);
    color: #8a3a1a;
    border: 1px solid rgba(182,109,73,0.3);
}

/* --- 404 --- */
.lpp-404 {
    text-align: center;
    padding: 60px 24px;
}

.lpp-404__emoji {
    font-size: 4rem;
    margin-bottom: 16px;
}

.lpp-404__title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 12px;
}

/* --- Points Colors Dots --- */
.lpp-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.lpp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.lpp-dot--1 { background: var(--vert-sauge); }
.lpp-dot--2 { background: var(--terracotta); }
.lpp-dot--3 { background: var(--ocre); }
.lpp-dot--4 { background: var(--brun-naturel); }
.lpp-dot--5 { background: var(--beige-clair); }

/* --- Animations --- */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease-out;
}

/* --- Responsive --- */
@media (min-width: 768px) {
    .lpp-bottom-nav {
        max-width: 480px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .lpp-header {
        padding: 12px 24px;
    }
}

/* --- Loading Spinner --- */
.lpp-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--blanc);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- Leaflet overrides --- */
.leaflet-popup-content-wrapper {
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-md) !important;
    padding: 0 !important;
}


/* --- Moon Countdown --- */
.lpp-moon-countdown {
    margin: 16px 0 24px;
    padding: 12px 16px;
    background: rgba(36, 58, 82, 0.03);
    border-radius: var(--radius-md);
    border: 1px dashed var(--beige-clair);
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

.lpp-moon-countdown__text {
    font-size: 0.8rem;
    color: var(--gris-doux);
    line-height: 1.4;
}

.lpp-moon-countdown__timer {
    font-weight: 700;
    color: var(--bleu-petrole);
}
