    /* STYLES CSS (Identiques à la version précédente) */
    .diana-promo-box {
        background: linear-gradient(145deg, #2a0845 0%, #6441A5 100%);
        border-radius: 15px;
        color: white;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        border: 1px solid rgba(255,255,255,0.1);
        transition: transform 0.3s ease;
        position: relative;
    }
    .diana-promo-box:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(0,0,0,0.3); }

    .diana-box-header {
        background: rgba(0,0,0,0.2);
        padding: 10px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.85em;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .live-indicator { color: #4cd964; font-weight: bold; display: flex; align-items: center; gap: 6px; }
    .blink { width: 8px; height: 8px; background-color: #4cd964; border-radius: 50%; display: inline-block; animation: blink-animation 1.5s infinite; }
    @keyframes blink-animation { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }

    .diana-box-content { padding: 25px; text-align: center; }
    .diana-box-text h3 { margin: 0 0 10px 0; font-size: 1.4em; color: #fff; font-weight: 700; }
    .diana-box-text p { margin: 0 0 20px 0; font-size: 0.95em; opacity: 0.9; line-height: 1.4; }

    .diana-fake-input-link {
        display: flex; justify-content: space-between; align-items: center;
        background: white; padding: 12px 15px; border-radius: 8px;
        text-decoration: none; margin-bottom: 15px; border: 2px solid transparent;
        transition: all 0.2s; cursor: text;
    }
    .diana-fake-input-link:hover { border-color: #ffd700; transform: scale(1.01); }
    .placeholder-text { color: #999; font-style: italic; font-size: 0.9em; }
    .send-icon { color: #6441A5; font-weight: bold; }

    .diana-cta-button {
        display: inline-block; background: linear-gradient(to bottom, #ffd700 0%, #ffaa00 100%);
        color: #333; font-weight: bold; text-decoration: none; padding: 12px 30px;
        border-radius: 50px; font-size: 1em; box-shadow: 0 4px 15px rgba(255, 170, 0, 0.4);
        transition: all 0.3s; text-transform: uppercase; letter-spacing: 0.5px; width: 100%; box-sizing: border-box;
    }
    .diana-cta-button:hover { background: linear-gradient(to bottom, #ffaa00 0%, #e69900 100%); box-shadow: 0 6px 20px rgba(255, 170, 0, 0.6); }

    .diana-box-footer { padding: 10px 20px; background: rgba(0,0,0,0.1); font-size: 0.75em; display: flex; justify-content: space-between; color: rgba(255,255,255,0.7); }
    
    /* Animation du chiffre quand il change */
    .count-update { animation: highlight-count 0.5s ease; color: #ffd700; }
    @keyframes highlight-count { 0% { transform: scale(1); } 50% { transform: scale(1.3); } 100% { transform: scale(1); } }
    
    @media (max-width: 500px) {
        .diana-box-header { flex-direction: column; gap: 5px; text-align: center; }
    }