/* Myths Page Styles */

.myths-hero {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.myths-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.myths-hero .hero-description {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.myths-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
}

.myths-list {
    max-width: 900px;
    margin: 0 auto;
}

.myth-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.myth-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.myth-header {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 3px solid #dc3545;
}

.myth-number {
    background: #dc3545;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.myth-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #721c24;
    line-height: 1.3;
}

.myth-content {
    padding: 2rem;
}

.reality-section h3 {
    color: #155724;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #d4edda;
}

.reality-section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.reality-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.reality-section ul li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.8;
}

.reality-section ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.25rem;
}

.reality-section ul li strong {
    color: #155724;
}

.comparison-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comparison-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: #2c3e50;
}

.emphasis-text {
    background: #d1ecf1;
    border-left: 4px solid #17a2b8;
    padding: 1rem;
    margin: 1.5rem 0;
    font-size: 1.05rem;
    border-radius: 4px;
}

blockquote {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #495057;
    border-radius: 4px;
}

blockquote:before {
    content: """;
    font-size: 3rem;
    color: #667eea;
    opacity: 0.3;
    line-height: 0;
    margin-right: 0.5rem;
}

cite {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    font-weight: 600;
    color: #667eea;
    font-size: 0.9rem;
}

.myths-conclusion {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-radius: 12px;
    border: 3px solid #155724;
    text-align: center;
}

.myths-conclusion h2 {
    color: #155724;
    margin-bottom: 1rem;
}

.myths-conclusion p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.myths-conclusion .cta-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.share-section h2 {
    margin-bottom: 1rem;
}

.share-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.myths-share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-share {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-twitter {
    background: #1DA1F2;
    color: white;
}

.btn-twitter:hover {
    background: #1a8cd8;
    transform: translateY(-2px);
}

.btn-facebook {
    background: #4267B2;
    color: white;
}

.btn-facebook:hover {
    background: #365899;
    transform: translateY(-2px);
}

.btn-print {
    background: #6c757d;
    color: white;
}

.btn-print:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .myths-hero h1 {
        font-size: 2rem;
    }

    .myths-hero .hero-description {
        font-size: 1rem;
    }

    .myth-header {
        padding: 1rem;
    }

    .myth-header h2 {
        font-size: 1.2rem;
    }

    .myth-content {
        padding: 1.5rem;
    }

    .myth-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }

    .myths-conclusion {
        padding: 1.5rem;
    }

    .myths-conclusion .cta-buttons {
        flex-direction: column;
    }

    .myths-share-buttons {
        flex-direction: column;
    }

    .btn-share {
        width: 100%;
    }
}

@media print {
    .myths-hero {
        background: white;
        color: black;
        border-bottom: 3px solid #000;
    }

    .myth-header {
        background: white;
        border: 2px solid #000;
    }

    .myth-number {
        background: white;
        color: black;
        border: 2px solid #000;
    }

    .share-section,
    .myths-share-buttons {
        display: none;
    }

    .myth-item {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
    }
}
