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

body {
    font-family: 'Bitter', serif;
    background: #0a0a0a;
    color: #f5f5f0;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* HERO */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a, #1a0a0a);
}

.hero-logo {
    font-size: 8rem;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: #ffd600;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 214, 0, 0.3);
}

.hero p {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d32f2f, #c62828);
    color: white;
    padding: 1.5rem 4rem;
    border-radius: 50px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.5);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.7);
}

/* INTRO */
.intro {
    padding: 4rem 0;
    background: rgba(211, 47, 47, 0.05);
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 2;
    text-align: justify;
    margin-bottom: 2rem;
}

.disclaimer {
    background: rgba(255, 214, 0, 0.1);
    border-left: 4px solid #ffd600;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 900px;
    border-radius: 4px;
}

/* PROVERBE */
.proverbe {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
}

.proverbe-text {
    font-size: 1.8rem;
    font-style: italic;
    color: #ffd600;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.proverbe-author {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* CALCULATEUR */
.calculateur {
    padding: 4rem 0;
}

.titre-section {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: #ffd600;
    text-align: center;
    margin-bottom: 1rem;
}

.sous-titre {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.grille-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.categorie {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.15), rgba(139, 26, 26, 0.15));
    border: 2px solid rgba(211, 47, 47, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.categorie:hover {
    border-color: #d32f2f;
    box-shadow: 0 5px 20px rgba(211, 47, 47, 0.3);
    transform: translateY(-3px);
}

.categorie h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #ffd600;
    margin-bottom: 1rem;
}

.categorie p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.categorie input {
    width: 100%;
    padding: 0.8rem;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #f5f5f0;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    font-family: 'Bebas Neue', sans-serif;
}

.categorie input:focus {
    outline: none;
    border-color: #ffd600;
}

.categorie select {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #f5f5f0;
    border-radius: 8px;
    cursor: pointer;
}

.categorie select:focus {
    outline: none;
    border-color: #ffd600;
}

.btn-calculer {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 3rem auto;
    padding: 1.8rem;
    background: linear-gradient(135deg, #d32f2f, #c62828);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.5);
    transition: all 0.3s;
}

.btn-calculer:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.7);
}

/* RESULTATS */
.resultats {
    display: none;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.2), rgba(139, 26, 26, 0.2));
}

.resultats.visible {
    display: block;
}

.grille-resultats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.carte-resultat {
    background: rgba(0, 0, 0, 0.5);
    border: 3px solid #d32f2f;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.carte-resultat:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.5);
}

.carte-resultat.highlight {
    border-color: #ffd600;
    background: rgba(255, 214, 0, 0.1);
}

.carte-resultat .nombre {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: #d32f2f;
}

.carte-resultat.highlight .nombre {
    color: #ffd600;
    font-size: 4rem;
}

.carte-resultat .label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* GRAPHIQUE */
.graphique-section {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(211, 47, 47, 0.5);
    border-radius: 12px;
}

.graphique-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #ffd600;
    text-align: center;
    margin-bottom: 2rem;
}

/* Conteneur du graphique avec hauteur fixe */
.chart-container {
    position: relative;
    width: 100%;
    height: 400px; /* Hauteur fixe sur desktop */
}

/* Responsive mobile */
@media (max-width: 768px) {
    .chart-container {
        height: 500px; /* Plus de hauteur sur mobile pour la légende */
    }
    
    .graphique-section {
        padding: 1rem;
        max-width: 100%;
    }
    
    .graphique-section h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* IMPACTS SANTÉ */
.impacts-sante {
    background: rgba(211, 47, 47, 0.2);
    border: 2px solid #d32f2f;
    border-radius: 12px;
    padding: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
}

.impacts-sante h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #ffd600;
    text-align: center;
    margin-bottom: 2rem;
}

.impacts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {}

.impact-item {
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-left: 4px solid #d32f2f;
    border-radius: 4px;
    transition: all 0.3s;
}

.impact-item:hover {
    border-left-width: 6px;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.impact-item h4 {
    color: #ffd600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.impact-item ul {
    margin: 1rem 0 0 2rem;
}

.impact-item li {
    margin: 0.5rem 0;
}

/* SIMULATEUR */
.simulateur {
    background: rgba(255, 214, 0, 0.1);
    border: 2px solid #ffd600;
    border-radius: 12px;
    padding: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
}

.simulateur h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #ffd600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.motivation-text {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.simulateur-grille {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.simulation-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 214, 0, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.simulation-card:hover {
    border-color: #ffd600;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 214, 0, 0.3);
}

.simulation-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #ffd600;
    margin-bottom: 1rem;
}

.gain {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #4caf50;
    margin: 0.5rem 0;
}

.gain-detail {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* FOOTER */
.footer {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    margin-top: 4rem;
}

.footer h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #ffd600;
    margin-bottom: 2rem;
}

.footer-links {
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: #ffd600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-tagline {
    margin-top: 2rem;
    opacity: 0.7;
    font-style: italic;
}

/* PLAN D'ACTION PERSONNALISÉ */
.plan-action {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(56, 142, 60, 0.2));
    border: 2px solid #4caf50;
    border-radius: 12px;
    padding: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
}

.plan-action h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #4caf50;
    text-align: center;
    margin-bottom: 1rem;
}

.plan-action-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.categorie-principale {
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.categorie-principale h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #ffd600;
    margin-bottom: 0.5rem;
}

.categorie-principale .temps {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #d32f2f;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .actions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
        margin: 1.5rem auto 0;
        max-width: 100%;
    }
}

.action-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(76, 175, 80, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.action-card:hover {
    border-color: #4caf50;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.action-card h5 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #4caf50;
    margin-bottom: 1rem;
}

.action-card ul {
    margin-left: 1.5rem;
}

.action-card li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.disclaimer-action {
    background: rgba(255, 214, 0, 0.1);
    border: 2px solid #ffd600;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.disclaimer-action strong {
    color: #ffd600;
}

/* ALTERNATIVES HUMORISTIQUES */
.alternatives-section {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.2));
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
}

.alternatives-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #ffc107;
    text-align: center;
    margin-bottom: 1rem;
}

.alternatives-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.alternatives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .alternatives-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 1.5rem auto 0;
        max-width: 100%;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .alternatives-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem auto 0;
        max-width: 350px;
        padding: 0;
    }
}

.alternative-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 193, 7, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.alternative-card:hover {
    border-color: #ffc107;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

.alternative-card .emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.alternative-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.alternative-card .calcul {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.btn-nouvelles-idees {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 2rem auto 0;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #0a0a0a;
    border: none;
    border-radius: 50px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
}

.btn-nouvelles-idees:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .grille-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grille-categories {
        grid-template-columns: 1fr;
        
    .impacts-grid {
        grid-template-columns: 1fr;
    }
    
}
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-logo {
        font-size: 5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .simulateur-grille {
        grid-template-columns: 1fr;
    }
}

/* BANNIÈRE COOKIES */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    border-top: 3px solid #ffd600;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
}

.cookie-banner.visible {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin: 0;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie.accept {
    background: linear-gradient(135deg, #4caf50, #388e3c);
    color: white;
}

.btn-cookie.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.btn-cookie.decline {
    background: linear-gradient(135deg, #666, #444);
    color: white;
}

.btn-cookie.decline:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 100, 100, 0.4);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* FIX MOBILE IMPACTS - FORCE 1 COLONNE */
@media only screen and (max-width: 768px) {
    .impacts-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .impact-item {
        margin: 0.5rem 0 !important;
    }
}

@media only screen and (max-width: 480px) {
    .impacts-grid {
        grid-template-columns: 1fr !important;
        padding: 0.5rem !important;
    }
}

/* BOUTONS PARTAGE RÉSEAUX SOCIAUX */
.partage-section {
    background: rgba(0, 0, 0, 0.3);
    border-top: 2px solid #ffd600;
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 3rem;
}

.partage-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #ffd600;
    margin-bottom: 0.5rem;
}

.partage-section p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.partage-boutons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-partage {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-partage:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.btn-facebook {
    background: linear-gradient(135deg, #1877f2, #0d5dbf);
}

.btn-twitter {
    background: linear-gradient(135deg, #1da1f2, #0c85d0);
}

.btn-linkedin {
    background: linear-gradient(135deg, #0077b5, #005582);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #1da851);
}

.btn-email {
    background: linear-gradient(135deg, #ea4335, #c5221f);
}

.btn-copier {
    background: linear-gradient(135deg, #666, #444);
}

.btn-copier.copie {
    background: linear-gradient(135deg, #4caf50, #388e3c);
}

@media (max-width: 768px) {
    .partage-section h3 {
        font-size: 1.5rem;
    }
    
    .btn-partage {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

    
/* GOOGLE ADSENSE */
.adsense-container {
    margin: 2rem auto;
    max-width: 100%;
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.adsense-container ins {
    display: block;
    min-height: 90px;
}

@media (max-width: 768px) {
    .adsense-container {
        margin: 1rem auto;
        padding: 0.5rem;
    }
}

/* RÉDUCTION ÉCART PROVERBE - CALCULATEUR */
.proverbe {
    margin-bottom: 1rem; /* Réduit de 2rem à 1rem */
}

.calculateur {
    margin-top: 1rem; /* Réduit l'espace en haut */
}

/* ADSENSE TOP - Entre proverbe et calculateur */
.adsense-top {
    margin: 1.5rem auto; /* Espacement réduit */
    max-width: 970px; /* Largeur max pour desktop */
}

@media (max-width: 768px) {
    .proverbe {
        margin-bottom: 0.5rem;
    }
    
    .calculateur {
        margin-top: 0.5rem;
    }
    
    .adsense-top {
        margin: 1rem auto;
    }
}

/* ===================================
   MENU HAMBURGER
   =================================== */
.menu-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #ffd600, #ffed4e);
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
    transition: all 0.3s;
}

.menu-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 214, 0, 0.5);
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background: #0a0a0a;
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 80px 20px 20px;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
    transition: left 0.3s;
    z-index: 999;
    overflow-y: auto;
}

.menu-nav.active {
    left: 0;
}

.menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-nav li {
    margin-bottom: 20px;
}

.menu-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s;
}

.menu-nav a:hover {
    background: rgba(255, 214, 0, 0.1);
    color: #ffd600;
    transform: translateX(5px);
}

.menu-nav a.active {
    background: rgba(255, 214, 0, 0.2);
    color: #ffd600;
}

/* ===================================
   ARTICLE PAGE
   =================================== */
.article-container {
    max-width: 900px;
    margin: 80px auto 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.article-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 214, 0, 0.3);
}

.article-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #ffd600;
    margin-bottom: 1rem;
}

.article-meta {
    color: #aaa;
    font-size: 0.9rem;
}

.article-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.article-content strong {
    color: #ffd600;
}

.btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ffd600, #ffed4e);
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    transition: all 0.3s;
}

.btn-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 214, 0, 0.4);
}

@media (max-width: 768px) {
    .article-container {
        margin-top: 60px;
        padding: 1rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .alternatives-section {
        padding: 1.5rem 1rem;
        margin: 2rem 0.5rem;
    }
    
    .alternatives-section h3 {
        font-size: 1.8rem;
    }
    
    .alternatives-intro {
        font-size: 1rem;
    }
    
    .alternative-card {
        padding: 1rem;
    }
    
    .btn-nouvelles-idees {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .plan-action {
        padding: 1.5rem 1rem;
        margin: 2rem 0.5rem;
    }
    
    .plan-action h3 {
        font-size: 1.8rem;
    }
    
    .plan-action-intro {
        font-size: 1rem;
    }
    
    .action-card {
        padding: 1rem;
    }
    
    .categorie-principale {
        padding: 1rem;
    }
    
    .disclaimer-action {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* ============================================
   HISTOIRE DU NUMÉRIQUE - TIMELINE STYLES
   ============================================ */

.timeline-intro {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin-bottom: 3rem;
    border-radius: 8px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.timeline-section {
    margin-bottom: 4rem;
}

.timeline-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #ffd600;
    margin-bottom: 0.5rem;
    border-bottom: 3px solid #ffc107;
    padding-bottom: 0.5rem;
}

.section-intro {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 2rem;
    font-style: italic;
}

.timeline-item {
    background: rgba(0, 0, 0, 0.5);
    border-left: 4px solid #4caf50;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.timeline-item:hover {
    transform: translateX(10px);
    border-left-color: #ffd600;
    box-shadow: 0 5px 20px rgba(255, 214, 0, 0.2);
}

.timeline-date {
    display: inline-block;
    background: linear-gradient(135deg, #ffd600, #ffed4e);
    color: #0a0a0a;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 1rem;
    font-weight: bold;
}

.timeline-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #ffd600;
    margin-bottom: 1rem;
}

.timeline-item p {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.timeline-item strong {
    color: #4caf50;
}

.timeline-conclusion {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(56, 142, 60, 0.2));
    border: 2px solid #4caf50;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
}

.timeline-conclusion h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: #4caf50;
    margin-bottom: 1rem;
}

.timeline-conclusion p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.cta-box {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.2));
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.cta-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #ffd600;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ffd600, #ffed4e);
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    transition: all 0.3s;
    font-weight: bold;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 214, 0, 0.4);
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline-section h2 {
        font-size: 2rem;
    }
    
    .timeline-item {
        padding: 1rem;
    }
    
    .timeline-item:hover {
        transform: translateX(5px);
    }
    
    .timeline-date {
        font-size: 1.1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .timeline-item h3 {
        font-size: 1.5rem;
    }
    
    .timeline-conclusion h2 {
        font-size: 1.8rem;
    }
    
    .cta-box h3 {
        font-size: 1.6rem;
    }
    
    .btn-cta {
        padding: 0.8rem 2rem;
        font-size: 1.2rem;
    }
}
