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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* En-tête */
header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Section héro */
.hero {
    background: white;
    padding: 4rem 0;
    text-align: center;
}

.reveal-box {
    background: #f8f9fa;
    border: 3px dashed #ff6b35;
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.reveal-box h2 {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.big-reveal {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #666;
}

.real-name {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ff6b35;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.1);
    animation: pulse 2s infinite;
}

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

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Section bio */
.bio-section {
    background: #e9ecef;
    padding: 4rem 0;
}

.bio-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.bio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bio-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.bio-item:hover {
    transform: translateY(-5px);
}

.bio-item .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.bio-item h3 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

/* Section vidéo */
.video-section {
    background: white;
    padding: 4rem 0;
}

.video-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-placeholder {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 3rem 2rem;
    text-align: center;
}

.video-placeholder p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.video-link {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.video-link:hover {
    background: #e55a2b;
}

/* FAQ */
.faq-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
}

/* Section Scandales */
.scandal-section {
    background: white;
    padding: 4rem 0;
}

.scandal-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.scandal-box {
    background: #fff3e0;
    border: 3px solid #ff6b35;
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.scandal-box::before {
    content: "🚫";
    position: absolute;
    font-size: 15rem;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
}

.scandal-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.scandal-box h3 {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.scandal-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #555;
    margin-bottom: 1.5rem;
}

.scandal-conclusion {
    font-size: 1.3rem;
    color: #ff6b35;
    font-weight: 700;
}

/* Citation */
.quote-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 3rem 0;
    text-align: center;
}

blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    opacity: 0.8;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.social-links {
    margin-bottom: 1.5rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff6b35;
}

.disclaimer {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.contact {
    margin-bottom: 1.5rem;
}

.contact a {
    color: #ff6b35;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #f7931e;
    text-decoration: underline;
}

.construction-decoration {
    font-size: 2rem;
    letter-spacing: 1rem;
}

/* Popups (Factor & HelloFresh) */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-content {
    background: white;
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    max-height: 80vh;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: #ff6b35;
}

.popup-inner {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
}

.popup-logo {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

.popup-highlight {
    background: linear-gradient(135deg, #fff3e0 0%, #ffecb3 100%);
    padding: 0.8rem;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
    font-weight: 600;
    color: #333 !important;
    margin: 1rem 0 !important;
}

.popup-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin: 1rem 0;
}

.popup-benefit {
    background: #f8f9fa;
    padding: 0.6rem;
    border-radius: 8px;
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.popup-benefit:hover {
    background: #e8f5e8;
    transform: translateX(5px);
}

.popup-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin: 1rem 0 0.5rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-cta-button:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #e68614 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.popup-note {
    font-size: 0.9rem !important;
    color: #888 !important;
    font-style: italic;
    margin-top: 0.5rem !important;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .real-name {
        font-size: 2.5rem;
    }
    
    .bio-grid,
    .video-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    blockquote {
        font-size: 1.2rem;
    }
    
    /* Popup responsive */
    .popup-content {
        width: 95%;
        margin: 10px;
    }
    
    .popup-inner {
        padding: 1.2rem 1.2rem 1.2rem 1.2rem;
    }
    
    .popup-logo {
        width: 120px;
    }
    
    .popup-cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}