* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    min-height: 100vh;
}

/* Protection contre l'écran blanc */
body, html {
    overflow-x: hidden;
}

body * {
    visibility: visible !important;
}

/* Fallback pour les éléments principaux */
.container, .main-content, .article, .header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.tagline {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.date-info {
    font-size: 0.9rem;
    opacity: 0.8;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 10px;
    margin-top: 10px;
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Article */
.article {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.breaking-badge {
    background: #dc3545;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

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

.article-title {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
    border-left: 4px solid #8B0000;
    padding-left: 20px;
}

.lead {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: #2c3e50;
}

.article-body p {
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Testimonials */
.testimonial {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-left: 5px solid #8B0000;
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transform: translateX(0);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.testimonial blockquote p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 15px;
    color: #2c3e50;
}

.testimonial cite {
    font-weight: 600;
    color: #8B0000;
    font-style: normal;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #fff5f5, #ffe6e6);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
    border: 2px solid #8B0000;
}

.cta-section h3 {
    color: #8B0000;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.cta-button-container {
    margin-top: 25px;
}

.cta-button {
    background: linear-gradient(135deg, #dc3545, #8B0000);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.6);
}

.mega-cta {
    font-size: 1.3rem !important;
    padding: 22px 45px !important;
    animation: pulse-cta 3s infinite;
}

@keyframes pulse-cta {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.benefits-list {
    margin: 25px 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    padding: 8px 0;
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
}

.cta-subtitle {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.urgency-text {
    color: #d68910;
    font-weight: 600;
    background: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
    margin: 20px 0;
}

.final-warning {
    color: #dc3545;
    font-weight: 700;
    margin-top: 15px;
    font-size: 1.1rem;
}

.final-cta-section {
    background: linear-gradient(135deg, #fff5f5, #ffe6e6);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
    border: 3px solid #dc3545;
    box-shadow: 0 8px 30px rgba(220, 53, 69, 0.3);
}

.final-cta-section h3 {
    color: #8B0000;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.final-message {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.final-urgency {
    color: #dc3545;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 30px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #dc3545;
}

.final-cta-container {
    margin-top: 30px;
}

.final-cta-button {
    font-size: 1.4rem !important;
    padding: 25px 50px !important;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4); }
    to { box-shadow: 0 8px 30px rgba(220, 53, 69, 0.8); }
}

.final-cta-subtitle {
    margin-top: 15px;
    font-size: 1rem;
    color: #28a745;
    font-weight: 600;
}

/* Urgency Section */
.urgency-section {
    margin: 40px 0;
}

.countdown-box {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #f39c12;
}

.countdown-box h4 {
    color: #d68910;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.countdown {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d68910;
    margin-top: 15px;
    font-family: 'Courier New', monospace;
}

/* FAQ Section */
.faq-section {
    margin-top: 40px;
}

.faq-section h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.faq-item {
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid #8B0000;
}

.faq-item h4 {
    color: #8B0000;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-box {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}

.sidebar-box h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 2px solid #8B0000;
    padding-bottom: 8px;
}

.sidebar-box ul {
    list-style: none;
}

.sidebar-box li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.sidebar-box li:last-child {
    border-bottom: none;
}

.comment {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.comment strong {
    color: #8B0000;
}

.cta-sidebar {
    background: linear-gradient(135deg, #fff5f5, #ffe6e6);
    border: 2px solid #8B0000;
}

.cta-button-small {
    background: linear-gradient(135deg, #dc3545, #8B0000);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 15px;
}

.cta-button-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #dc3545, #8B0000);
    color: white;
    padding: 15px 0;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sticky-button {
    background: white;
    color: #8B0000;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sticky-button:hover {
    transform: scale(1.05);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand h3 {
    color: #e74c3c;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-brand p {
    opacity: 0.9;
    line-height: 1.5;
}

.footer-legal h4,
.footer-info h4 {
    color: #f39c12;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: #f39c12;
    text-decoration: underline;
}

.footer-info p {
    opacity: 0.9;
    line-height: 1.5;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    opacity: 0.8;
    font-size: 0.9rem;
}

.disclaimer {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 0.85rem !important;
    line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sidebar {
        order: -1;
        position: static;
        width: 100%;
    }

    .sidebar-box {
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        margin-bottom: 20px;
        width: 100%;
    }

    .sidebar-box h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .sidebar-box ul li {
        padding: 6px 0;
        font-size: 0.9rem;
    }

    .comment {
        padding: 12px;
        margin-bottom: 12px;
        font-size: 0.85rem;
    }

    .cta-button-small {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 15px 25px;
    }

    .sticky-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .sticky-button {
        width: 100%;
        margin: 0;
    }

    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-links li {
        margin-bottom: 0;
    }
}

@media (min-width: 769px) {
    .sticky-cta.show {
        display: block;
    }
}