body{font-family:-apple-system,BlinkMacSystemFont,sans-serif;line-height:1.6;margin:0;padding:20px;color:#333}
article{max-width:650px;margin:0 auto}
h1{font-size:1.8em;color:#333;margin-bottom:20px}
h2{font-size:1.4em;color:#444;margin-top:30px}
p{margin:15px 0}
footer{margin-top:40px;padding-top:20px;border-top:1px solid #eee;text-align:center;color:#666}
@media(max-width:768px){body{padding:10px}h1{font-size:1.5em}}

body{font-family:-apple-system,BlinkMacSystemFont,sans-serif;line-height:1.6;margin:0;padding:20px;color:#333}
article{max-width:650px;margin:0 auto}
h1{font-size:1.8em;color:#333;margin-bottom:20px}
h2{font-size:1.4em;color:#444;margin-top:30px}
p{margin:15px 0}
footer{margin-top:40px;padding-top:20px;border-top:1px solid #eee;text-align:center;color:#666}
@media(max-width:768px){body{padding:10px}h1{font-size:1.5em}}

/* 🎯 NOUVEAU - Styles magazine promo pour pages adultes */
.magazine-promo {
    text-align: center;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}

.magazine-promo a {
    color: #333;
    text-decoration: none;
    font-size: 16pt;
    font-weight: 500;
    display: block;
    transition: all 0.3s ease;
    font-family: inherit;
}

.magazine-promo a:hover {
    color: #666;
    text-decoration: underline;
}

.magazine-promo a.image-link {
    display: inline-block;
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.magazine-promo a.image-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    text-decoration: none;
}

.magazine-promo img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.magazine-promo a.image-link:hover img {
    transform: scale(1.02);
}

.magazine-text {
    margin: 10px 0;
    font-weight: 500;
}

/* Responsive pour magazine promo */
@media (max-width: 768px) {
    .magazine-promo a {
        font-size: 14pt;
    }
    
    .magazine-promo {
        margin: 20px 0;
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .magazine-promo a {
        font-size: 13pt;
    }
}

/* Styles FAQ améliorés */
.faq {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #333;
}

.faq-item h3 {
    margin: 0 0 10px 0;
    font-size: 1.1em;
    color: #333;
}

.faq-item p {
    margin: 0;
    color: #555;
    line-height: 1.5;
}

/* Améliorations générales */
.intro {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007cba;
}

section {
    margin-bottom: 30px;
}

section h2 {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

/* Animation d'apparition */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.magazine-promo {
    animation: fadeInUp 0.6s ease-out;
}

/* Base Styles - Mobile First */
:root {
    --accent-color: #ff4568;
    --accent-dark: #e6375a;
    --bg-color: #fff;
    --text-color: #333;
    --text-secondary: #666;
    --border-color: #eaeaea;
    --card-bg: #f9f9f9;
    --shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

/* Content Container */
.container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

/* Header */
.header {
    position: relative;
    width: 100%;
    height: 40vh;
    min-height: 220px;
    max-height: 380px;
    background-color: #111;
    overflow: hidden;
    margin-bottom: 25px;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.header-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
    z-index: 2;
}

h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.article-info {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    opacity: 0.9;
}

.article-date {
    margin-right: 15px;
}

/* Main Content */
.content {
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Key Points */
.key-points {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 15px 20px;
    margin: 0 0 25px 0;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
}

.key-points h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.key-points ul {
    padding-left: 20px;
    margin-bottom: 5px;
}

.key-points li {
    margin-bottom: 8px;
    position: relative;
}

/* Intro Paragraph */
.intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #000;
}

/* Section Headers */
h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 35px 0 15px;
    color: #000;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: var(--accent-color);
}

/* Paragraphs */
p {
    margin-bottom: 20px;
    color: var(--text-color);
}

/* Magazine Promo */
.magazine-promo {
    text-align: center;
    margin: 35px 0;
    padding: 25px 0;
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.magazine-promo a {
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.magazine-promo a:hover {
    color: var(--accent-dark);
}

.magazine-promo img {
    max-width: 85%;
    height: auto;
    border-radius: 8px;
    margin: 15px auto;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    display: block;
}

.magazine-promo img:hover {
    transform: scale(1.02);
}

/* FAQ Section */
.faq {
    margin: 40px 0 30px;
    border-top: 2px dashed var(--border-color);
    padding-top: 30px;
}

.faq h2 {
    text-align: center;
    margin-bottom: 25px;
}

.faq-item {
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: var(--card-bg);
    padding: 15px 20px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-answer {
    padding: 15px 20px;
    background-color: #fff;
}

/* Related Articles */
.related {
    margin: 40px 0 30px;
    border-top: 2px solid var(--border-color);
    padding-top: 30px;
}

.related h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.related ul {
    list-style-type: none;
    padding: 0;
}

.related li {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

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

.related li:hover {
    background-color: var(--card-bg);
}

.related a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    display: block;
}

.related a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #888;
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
    font-size: 0.9rem;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

/* Desktop Styles */
@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .header {
        height: 50vh;
    }
    
    .container {
        max-width: 1100px;
        padding: 0 30px;
    }
    
    .content {
        padding: 0;
    }
    
    .magazine-promo img {
        max-width: 60%;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.intro, .key-points, .magazine-promo, .faq-item {
    animation: fadeIn 0.6s ease forwards;
}

.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }

/* Typography Improvements */
@media (min-width: 768px) {
    body {
        font-size: 17px;
        line-height: 1.7;
    }
}