html {
    scroll-behavior: smooth;
}

/* ===== REPORT ARTICLE STYLES ===== */

/* Article Layout */
.report-article {
    background: var(--white-color);
    line-height: 1.7;
}

/* Container adjustments */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Article Header */
.article-header {
    background: linear-gradient(135deg, 
        rgba(214, 45, 140, 0.95) 0%, 
        rgba(123, 45, 126, 0.95) 100%);
    color: var(--white-color);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/report2023.png') center/cover;
    opacity: 0.2;
    z-index: 1;
}

.article-header > * {
    position: relative;
    z-index: 2;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 2rem;
}

.breadcrumbs__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.875rem;
}

.breadcrumbs__link {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    text-decoration: none;
}

.breadcrumbs__link:hover {
    color: var(--white-color);
}

.breadcrumbs__separator {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0.25rem;
}

.breadcrumbs__current {
    color: var(--white-color);
    font-weight: 600;
}

/* Article Meta */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.article-category,
.article-date,
.article-reading-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.article-meta i {
    color: rgba(255, 255, 255, 0.8);
}

/* Article Title */
.article-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 900px;
}

/* Article Subtitle */
.article-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 500;
    max-width: 800px;
}

/* Article Author */
.article-author {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 700px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F89E3B, #ff6b35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(248, 158, 59, 0.4);
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Featured Image */
.article-featured-image {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    margin: 3rem 0;
    background-color: #f3f4f6;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-featured-image figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white-color);
    padding: 2rem 1.5rem 1rem;
    font-size: 0.875rem;
    font-style: italic;
}

/* Table of Contents */
.article-toc {
    background: linear-gradient(135deg, rgba(214, 45, 140, 0.05), rgba(123, 45, 126, 0.05));
    border: 1px solid rgba(214, 45, 140, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
}

.toc-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #D62D8C;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toc-title i {
    color: #D62D8C;
}

.toc-nav {
    margin: 0;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.75rem;
    counter-increment: toc-counter;
}

.toc-list {
    counter-reset: toc-counter;
}

.toc-list li a {
    color: #6B7280;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: block;
    position: relative;
}

.toc-list li a::before {
    content: counter(toc-counter) ". ";
    font-weight: 700;
    color: #D62D8C;
    margin-right: 0.5rem;
}

.toc-list a:hover {
    color: #D62D8C;
    background: rgba(214, 45, 140, 0.05);
    transform: translateX(5px);
}

/* Article Content */
.article-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
}

/* Content Sections */
.content-section {
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid rgba(214, 45, 140, 0.2);
    position: relative;
}

.content-section h2::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #D62D8C, #7B2D7E);
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin: 2.5rem 0 1.25rem;
}

.content-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin: 2rem 0 1rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 1.5rem;
}

.content-section strong {
    color: #1F2937;
    font-weight: 600;
}

/* Lists */
.content-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.content-list li {
    font-size: 1.1rem;
    color: #4B5563;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.content-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #D62D8C;
    font-weight: 700;
    font-size: 1.2rem;
}

.numbered-list {
    counter-reset: numbered-counter;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.numbered-list li {
    counter-increment: numbered-counter;
    font-size: 1.1rem;
    color: #4B5563;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.7;
}

.numbered-list li::before {
    content: counter(numbered-counter);
    position: absolute;
    left: 0;
    width: 1.75rem;
    height: 1.75rem;
    background: linear-gradient(135deg, #D62D8C, #7B2D7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

/* Key Takeaway Box */
.key-takeaway {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(5, 150, 105, 0.05));
    border-left: 4px solid #10b981;
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.key-takeaway h3 {
    color: #065f46;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.key-takeaway h3 i {
    color: #10b981;
}

.key-takeaway p {
    color: #047857;
    margin-bottom: 0;
    font-weight: 500;
}

/* Info Boxes */
.info-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(37, 99, 235, 0.05));
    border-left: 4px solid #3b82f6;
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.info-box.warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(217, 119, 6, 0.05));
    border-left-color: #f59e0b;
}

.info-box h4 {
    color: #1e3a8a;
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-box.warning h4 {
    color: #92400e;
}

.info-box h4 i {
    font-size: 1.25rem;
}

.info-box ul {
    margin-bottom: 0;
}

.info-box li {
    color: #1e40af;
}

.info-box.warning li {
    color: #92400e;
}

/* Warning Box */
.warning-box {
    background: linear-gradient(135deg, rgba(245, 101, 101, 0.08), rgba(239, 68, 68, 0.05));
    border-left: 4px solid #ef4444;
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.warning-box h4 {
    color: #dc2626;
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.warning-box h4 i {
    font-size: 1.25rem;
}

.warning-box p,
.warning-box li {
    color: #b91c1c;
    font-weight: 500;
}

/* Danger Box */
.danger-box {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.05));
    border: 2px solid #dc2626;
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.danger-box h4 {
    color: #991b1b;
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.danger-box h4 i {
    font-size: 1.5rem;
}

.danger-box p {
    color: #b91c1c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.danger-box ul {
    margin-bottom: 0;
}

.danger-box li {
    color: #991b1b;
    font-weight: 500;
}

/* Important Note */
.important-note {
    background: rgba(214, 45, 140, 0.05);
    border: 2px solid rgba(214, 45, 140, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.important-note strong {
    color: #D62D8C;
}

/* Limitation Note & Rights Note */
.limitation-note,
.rights-note {
    background: rgba(107, 114, 128, 0.05);
    border-left: 4px solid #6b7280;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.limitation-note h4,
.rights-note p strong {
    color: #374151;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.limitation-note p,
.rights-note p {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

/* Quote Styles */
.article-quote {
    font-size: 1.35rem;
    font-style: italic;
    color: #D62D8C;
    padding: 2.5rem;
    margin: 3rem 0;
    border-left: 4px solid #D62D8C;
    background: rgba(214, 45, 140, 0.03);
    border-radius: 0 12px 12px 0;
    position: relative;
}

.article-quote::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-size: 5rem;
    color: rgba(214, 45, 140, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.article-quote p {
    margin-bottom: 1rem;
    color: #7B2D7E;
    position: relative;
}

.article-quote cite {
    display: block;
    font-size: 1rem;
    color: #6B7280;
    font-style: normal;
    margin-top: 1rem;
    font-weight: 600;
}

.final-quote {
    background: linear-gradient(135deg, rgba(214, 45, 140, 0.05), rgba(123, 45, 126, 0.05));
    border: 2px solid rgba(214, 45, 140, 0.2);
    padding: 3rem;
    margin: 3rem 0;
}

/* Statistics */
.stat-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.stat {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(214, 45, 140, 0.05), rgba(123, 45, 126, 0.05));
    border: 2px solid rgba(214, 45, 140, 0.15);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(214, 45, 140, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #D62D8C;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1F2937;
    line-height: 1.4;
}

/* Checklist Box */
.checklist-box {
    background: rgba(16, 185, 129, 0.05);
    border: 2px solid rgba(16, 185, 129, 0.2);
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.checklist-box h3 {
    color: #065f46;
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checklist-box h3 i {
    color: #10b981;
}

.checklist-box > p {
    color: #047857;
    margin-bottom: 1.5rem;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.checklist li:hover {
    background: rgba(16, 185, 129, 0.05);
}

.checklist input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.25rem;
    cursor: pointer;
    accent-color: #10b981;
    flex-shrink: 0;
}

.checklist label {
    flex: 1;
    color: #047857;
    font-weight: 500;
    cursor: pointer;
}

/* How-To Box */
.how-to-box {
    background: rgba(59, 130, 246, 0.05);
    border: 2px solid rgba(59, 130, 246, 0.2);
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.how-to-box h4 {
    color: #1e3a8a;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.how-to-box ol {
    counter-reset: how-to-counter;
    list-style: none;
    padding: 0;
    margin: 0;
}

.how-to-box ol li {
    counter-increment: how-to-counter;
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 1rem;
    color: #1e40af;
}

.how-to-box ol li::before {
    content: counter(how-to-counter);
    position: absolute;
    left: 0;
    width: 1.75rem;
    height: 1.75rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

/* Tool Recommendation */
.tool-recommendation {
    background: rgba(245, 158, 11, 0.05);
    border: 2px solid rgba(245, 158, 11, 0.2);
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.tool-recommendation h4 {
    color: #92400e;
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tool-recommendation h4 i {
    color: #f59e0b;
}

.tool-recommendation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tool-recommendation li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
    color: #78350f;
}

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

.tool {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.tool:last-child {
    margin-bottom: 0;
}

.tool h5 {
    color: #92400e;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.tool p {
    color: #78350f;
    margin-bottom: 1rem;
    font-style: italic;
}

.tool ul {
    margin-bottom: 0;
}

/* Comparison Table */
.comparison-table {
    margin: 2.5rem 0;
    overflow-x: auto;
}

.comparison-table h4 {
    margin-bottom: 1.5rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.comparison-table thead {
    background: linear-gradient(135deg, #D62D8C, #7B2D7E);
    color: white;
}

.comparison-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #f3f4f6;
    color: #4B5563;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr.recommended {
    background: rgba(16, 185, 129, 0.05);
}

.comparison-table tr.not-recommended {
    background: rgba(239, 68, 68, 0.05);
}

.comparison-table .check {
    color: #10b981;
    font-weight: 700;
    font-size: 1.25rem;
}

.comparison-table .cross {
    color: #ef4444;
    font-weight: 700;
    font-size: 1.25rem;
}

.comparison-table .partial {
    color: #f59e0b;
    font-weight: 600;
}

/* Feature List */
.feature-list {
    background: rgba(214, 45, 140, 0.03);
    border: 1px solid rgba(214, 45, 140, 0.15);
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.feature-list h4 {
    color: #D62D8C;
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-list h4 i {
    font-size: 1.25rem;
}

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

.feature-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    border-bottom: 1px solid rgba(214, 45, 140, 0.1);
    position: relative;
    color: #4B5563;
}

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

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Setup Guide, Configuration Guide, Action Steps */
.setup-guide,
.configuration-guide,
.action-steps {
    background: white;
    border: 2px solid rgba(214, 45, 140, 0.15);
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.setup-guide h4,
.configuration-guide h4,
.action-steps h4 {
    color: #1F2937;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

/* Advanced Tip & Pro Tip */
.advanced-tip,
.pro-tip {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(124, 58, 237, 0.05));
    border-left: 4px solid #8b5cf6;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.advanced-tip h4,
.pro-tip strong {
    color: #6d28d9;
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.advanced-tip h4 i {
    font-size: 1.25rem;
}

.advanced-tip ul,
.advanced-tip p {
    color: #7c3aed;
    margin-bottom: 0;
}

.pro-tip {
    font-weight: 500;
}

/* Platform Guide */
.platform-guide {
    margin: 2.5rem 0;
}

.platform-guide h4 {
    margin-bottom: 2rem;
}

.platform {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.platform:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.platform h5 {
    color: #1F2937;
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.platform h5 i {
    color: #D62D8C;
    font-size: 1.5rem;
}

.platform p {
    color: #4B5563;
    margin-bottom: 0;
}

/* Use Case Grid */
.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.use-case {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(214, 45, 140, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.use-case:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(214, 45, 140, 0.15);
    border-color: rgba(214, 45, 140, 0.3);
}

.use-case h4 {
    color: #D62D8C;
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.use-case h4 i {
    font-size: 1.5rem;
}

.use-case p {
    color: #4B5563;
    margin-bottom: 0;
}

/* Criteria Box */
.criteria-box {
    background: rgba(59, 130, 246, 0.05);
    border: 2px solid rgba(59, 130, 246, 0.2);
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.criteria-box h4 {
    color: #1e3a8a;
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.criteria-box h4 i {
    color: #3b82f6;
}

.criteria-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.criteria-box li {
    padding: 0.75rem 0 0.75rem 2rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    color: #1e40af;
}

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

.criteria-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 700;
    font-size: 1.25rem;
}

/* VPN Recommendations */
.vpn-recommendations {
    margin: 2.5rem 0;
}

.vpn-recommendations h4 {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vpn-option {
    background: white;
    border: 2px solid rgba(214, 45, 140, 0.15);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.vpn-option:hover {
    box-shadow: 0 8px 24px rgba(214, 45, 140, 0.15);
    border-color: rgba(214, 45, 140, 0.3);
}

.vpn-option h5 {
    color: #D62D8C;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.vpn-rating {
    color: #6B7280;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.vpn-option ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vpn-option li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #4B5563;
}

.vpn-option li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #D62D8C;
    font-weight: 700;
}

/* Browser Comparison */
.browser-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.browser {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.browser.recommended {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.03);
}

.browser.special {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.03);
}

.browser.not-recommended {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.03);
}

.browser:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.browser h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.browser h4 i {
    font-size: 1.5rem;
}

.browser-grade {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: inline-block;
}

.browser.recommended .browser-grade {
    background: rgba(16, 185, 129, 0.1);
    color: #065f46;
}

.browser.special .browser-grade {
    background: rgba(139, 92, 246, 0.1);
    color: #6d28d9;
}

.browser.not-recommended .browser-grade {
    background: rgba(239, 68, 68, 0.1);
    color: #991b1b;
}

.browser .recommendation {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    font-weight: 600;
    color: #1F2937;
    font-size: 0.95rem;
}

/* Extensions Grid */
.extensions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.extension {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(214, 45, 140, 0.15);
    transition: all 0.3s ease;
}

.extension:hover {
    box-shadow: 0 6px 20px rgba(214, 45, 140, 0.12);
    border-color: rgba(214, 45, 140, 0.3);
}

.extension h4 {
    color: #D62D8C;
    margin-top: 0;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.extension h4 i {
    font-size: 1.25rem;
}

.extension p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.extension p strong {
    display: block;
    color: #1F2937;
    margin-bottom: 0.25rem;
}

/* Tor Guide */
.tor-guide {
    background: rgba(139, 92, 246, 0.05);
    border: 2px solid rgba(139, 92, 246, 0.2);
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.tor-guide h4 {
    color: #6d28d9;
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tor-guide > p {
    color: #7c3aed;
    margin-bottom: 1.5rem;
}

.tor-benefits,
.tor-drawbacks,
.tor-best-practices {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.tor-benefits h5,
.tor-drawbacks h5 {
    color: #1F2937;
    margin-top: 0;
    margin-bottom: 1rem;
}

.tor-benefits ul,
.tor-drawbacks ul {
    margin-bottom: 0;
}

/* Search Engines */
.search-engines {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.search-engine {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(214, 45, 140, 0.15);
    transition: all 0.3s ease;
}

.search-engine.recommended {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.03);
}

.search-engine:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(214, 45, 140, 0.12);
}

.search-engine h4 {
    color: #D62D8C;
    margin-top: 0;
    margin-bottom: 1rem;
}

.search-engine ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-engine li {
    padding: 0.5rem 0;
    color: #4B5563;
    font-size: 0.95rem;
}

/* Social Media Risks */
.social-media-risks {
    margin: 2.5rem 0;
}

/* Platform Settings */
.platform-settings {
    margin: 2.5rem 0;
}

.platform-card {
    background: white;
    border: 2px solid rgba(214, 45, 140, 0.15);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.platform-card h4 {
    color: #D62D8C;
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.platform-card h4 i {
    font-size: 1.5rem;
}

.platform-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.platform-card li {
    padding: 0.75rem 0 0.75rem 1.5rem;
    border-bottom: 1px solid rgba(214, 45, 140, 0.1);
    position: relative;
    color: #4B5563;
}

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

.platform-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #D62D8C;
    font-weight: 700;
}

/* Best Practices Box */
.best-practices-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(5, 150, 105, 0.05));
    border: 2px solid rgba(16, 185, 129, 0.2);
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.best-practices-box h3 {
    color: #065f46;
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.best-practices-box h3 i {
    color: #10b981;
}

/* Photo Safety & Tool Tip */
.photo-safety,
.tool-tip,
.mobile-guide {
    background: rgba(245, 158, 11, 0.05);
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.photo-safety h3,
.tool-tip p strong,
.mobile-guide h4 {
    color: #92400e;
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.photo-safety h3 i,
.mobile-guide h4 i {
    color: #f59e0b;
}

.tool-tip {
    font-weight: 500;
}

/* Emergency Box */
.emergency-box {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
    border: 3px solid #ef4444;
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.emergency-box.urgent {
    animation: pulse-urgent 2s ease-in-out infinite;
}

@keyframes pulse-urgent {
    0%, 100% {
        border-color: #ef4444;
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    50% {
        border-color: #dc2626;
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
}

.emergency-box h3 {
    color: #991b1b;
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.emergency-box h3 i {
    color: #ef4444;
    font-size: 1.5rem;
}

.emergency-box p {
    color: #b91c1c;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.emergency-box p strong {
    font-size: 1.1rem;
}

/* Response Plan, Doxxing Response */
.response-plan,
.doxxing-response,
.seizure-prep {
    background: white;
    border: 2px solid rgba(214, 45, 140, 0.15);
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}

.response-plan h4,
.doxxing-response h4,
.seizure-prep h4 {
    color: #1F2937;
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Helplines */
.helplines {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.helpline {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(214, 45, 140, 0.15);
    transition: all 0.3s ease;
}

.helpline:hover {
    box-shadow: 0 8px 24px rgba(214, 45, 140, 0.15);
    border-color: rgba(214, 45, 140, 0.3);
}

.helpline h4 {
    color: #D62D8C;
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.helpline h4 i {
    font-size: 1.25rem;
}

.helpline p {
    margin-bottom: 0.5rem;
    color: #4B5563;
}

.helpline p strong {
    display: block;
    color: #1F2937;
    margin-bottom: 0.25rem;
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.resource {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(214, 45, 140, 0.15);
    transition: all 0.3s ease;
}

.resource:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(214, 45, 140, 0.15);
}

.resource h3 {
    color: #D62D8C;
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.resource h3 i {
    font-size: 1.5rem;
}

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

.resource li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(214, 45, 140, 0.1);
}

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

.resource li a {
    color: #4B5563;
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource li a:hover {
    color: #D62D8C;
}

.resource li strong {
    display: block;
    color: #1F2937;
    margin-bottom: 0.25rem;
}

/* Tool Summary */
.tool-summary {
    margin: 2.5rem 0;
}

.tool-summary h3 {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tools-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tools-table thead {
    background: linear-gradient(135deg, #D62D8C, #7B2D7E);
    color: white;
}

.tools-table th,
.tools-table td {
    padding: 1rem;
    text-align: left;
}

.tools-table th {
    font-weight: 600;
}

.tools-table tbody tr {
    border-bottom: 1px solid #f3f4f6;
}

.tools-table tbody tr:last-child {
    border-bottom: none;
}

.tools-table tbody tr:nth-child(even) {
    background: rgba(214, 45, 140, 0.02);
}

.tools-table tbody tr:hover {
    background: rgba(214, 45, 140, 0.05);
}

.tools-table td {
    color: #4B5563;
}

.tools-table td:first-child {
    font-weight: 600;
    color: #1F2937;
}

/* Conclusion Section */
.conclusion {
    background: linear-gradient(135deg, rgba(214, 45, 140, 0.03), rgba(123, 45, 126, 0.03));
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
}

/* Final Reminders */
.final-reminders {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.final-reminders h3 {
    color: #D62D8C;
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.final-reminders h3 i {
    color: #F89E3B;
}

/* Empowerment Message */
.empowerment-message {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4B5563;
    margin: 2rem 0;
}

.empowerment-message p {
    margin-bottom: 1.5rem;
}

/* Stay Connected */
.stay-connected {
    background: linear-gradient(135deg, rgba(214, 45, 140, 0.05), rgba(123, 45, 126, 0.05));
    border: 2px solid rgba(214, 45, 140, 0.2);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.stay-connected h3 {
    color: #D62D8C;
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stay-connected h3 i {
    color: #F89E3B;
}

.stay-connected p {
    color: #4B5563;
    margin-bottom: 1rem;
}

.stay-connected ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stay-connected li {
    padding: 0.5rem 0;
    color: #4B5563;
}

.stay-connected li strong {
    color: #1F2937;
}

/* Article Share */
.article-share {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid rgba(214, 45, 140, 0.15);
    text-align: center;
    margin: 3rem 0;
}

.article-share h3 {
    color: #1F2937;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.article-share > p {
    color: #6B7280;
    margin-bottom: 2rem;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white-color);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.share-twitter {
    background: #1da1f2;
}

.share-facebook {
    background: #4267b2;
}

.share-linkedin {
    background: #0077b5;
}

.share-email {
    background: #ea4335;
}

.share-copy {
    background: #6B7280;
}

/* Related Reports */
.related-reports {
    margin: 3rem 0;
}

.related-reports > h3 {
    color: #1F2937;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

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

.related-card {
    background: white;
    border: 2px solid rgba(214, 45, 140, 0.15);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(214, 45, 140, 0.15);
    border-color: rgba(214, 45, 140, 0.3);
}

.related-card h4 {
    color: #D62D8C;
    margin: 0 0 0.75rem 0;
    font-size: 1.25rem;
}

.related-card p {
    color: #6B7280;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .article-header {
        padding: 5rem 0 3rem;
    }
    
    .article-title {
        font-size: 2.25rem;
    }
    
    .article-subtitle {
        font-size: 1.15rem;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .article-header {
        padding: 4rem 0 2rem;
    }
    
    .article-title {
        font-size: 1.75rem;
    }
    
    .article-subtitle {
        font-size: 1rem;
    }
    
    .article-author {
        flex-direction: column;
        text-align: center;
    }
    
    .article-toc {
        padding: 1.5rem;
    }
    
    .stat-highlight,
    .use-case-grid,
    .extensions-grid,
    .browser-comparison,
    .search-engines,
    .helplines,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table,
    .tools-table {
        font-size: 0.875rem;
    }
    
    .comparison-table th,
    .comparison-table td,
    .tools-table th,
    .tools-table td {
        padding: 0.75rem;
    }
}

/* Print Styles */
@media print {
    .article-header,
    .article-share,
    .share-buttons,
    .breadcrumbs,
    .article-toc {
        display: none;
    }
    
    .article-content {
        max-width: 100%;
    }
    
    .content-section {
        page-break-inside: avoid;
    }
    
    .content-section h2 {
        page-break-after: avoid;
    }
    
    a {
        text-decoration: underline;
        color: #000;
    }
    
    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}