.elementor-3740 .elementor-element.elementor-element-575572c3{--display:flex;}/* Start custom CSS for html, class: .elementor-element-0304e7e *//* ==========================================================================
   Kahf Browser Theme - Adult Content Blocking Guide
   Matching kahfbrowser.com design system
   ========================================================================== */

/* CSS Variables - Kahf Brand Colors */
:root {
    /* Primary Colors */
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --primary-light: #A78BFA;
    --primary-gradient: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    
    /* Secondary Colors */
    --secondary: #3B82F6;
    --secondary-dark: #2563EB;
    
    /* Accent Colors */
    --accent-green: #10B981;
    --accent-red: #EF4444;
    --accent-orange: #F59E0B;
    --accent-yellow: #FBBF24;
    
    /* Neutral Colors */
    --text-primary: #1F2937;
    --text-secondary: #4B5563;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    
    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-gray: #F3F4F6;
    --bg-dark: #111827;
    
    /* Border Colors */
    --border-light: #E5E7EB;
    --border-medium: #D1D5DB;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-purple: 0 4px 14px 0 rgba(139, 92, 246, 0.3);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 80px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-purple);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    color: white;
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--bg-gray);
    color: var(--text-primary);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */

.breadcrumb-section {
    background: var(--bg-light);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb {
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .separator {
    margin: 0 8px;
    color: var(--text-light);
}

.breadcrumb .current {
    color: var(--text-secondary);
}

/* ==========================================================================
   Article Header
   ========================================================================== */

.article-header {
    padding: 60px 0 40px;
    background: var(--bg-white);
}

.header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.category-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
}

.tag-blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--secondary);
}

.article-header h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.article-meta {
    margin-bottom: 24px;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
}

.publish-date {
    font-size: 14px;
    color: var(--text-muted);
}

.trust-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.trust-badges .badge svg {
    color: var(--primary);
}

.header-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Quick CTA Box
   ========================================================================== */

.quick-cta {
    padding: 0 0 40px;
}

.cta-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-xl);
}

.cta-icon {
    flex-shrink: 0;
}

.cta-content {
    flex: 1;
}

.cta-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cta-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* ==========================================================================
   Main Content Layout
   ========================================================================== */

.article-content {
    padding: 40px 0 80px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
}

/* Table of Contents Sidebar */
.toc-sidebar {
    position: relative;
}

.toc-wrapper {
    position: sticky;
    top: 100px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.toc-wrapper h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.toc ul {
    list-style: none;
}

.toc li {
    margin-bottom: 8px;
}

.toc a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 6px 0;
    border-left: 2px solid transparent;
    padding-left: 12px;
    margin-left: -12px;
    transition: all 0.2s ease;
}

.toc a:hover,
.toc a.active {
    color: var(--primary);
    border-left-color: var(--primary);
}

/* Article Body */
.article-body {
    max-width: 800px;
}

.content-section {
    margin-bottom: 48px;
}

.content-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    padding-top: 24px;
}

.content-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 32px 0 16px;
}

.content-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 24px 0 12px;
}

.content-section p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-primary);
}

/* ==========================================================================
   Stats Highlight
   ========================================================================== */

.stats-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* ==========================================================================
   Definition Box
   ========================================================================== */

.definition-box {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-lg);
    margin: 24px 0;
}

.definition-icon {
    flex-shrink: 0;
}

.definition-content {
    font-size: 16px;
    line-height: 1.7;
}

/* ==========================================================================
   Tables
   ========================================================================== */

.content-table-wrapper {
    overflow-x: auto;
    margin: 24px 0;
}

.content-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.content-table th,
.content-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.content-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.content-table td {
    color: var(--text-secondary);
}

.content-table tbody tr:hover {
    background: var(--bg-light);
}

.highlight-row {
    background: rgba(139, 92, 246, 0.05) !important;
}

.highlight-row td {
    color: var(--text-primary);
}

/* Risk Badges */
.risk-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.risk-critical {
    background: rgba(239, 68, 68, 0.1);
    color: var(--accent-red);
}

.risk-high {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-orange);
}

.risk-medium {
    background: rgba(59, 130, 246, 0.1);
    color: var(--secondary);
}

.free-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* ==========================================================================
   Callouts
   ========================================================================== */

.info-callout,
.warning-callout {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    margin: 24px 0;
}

.info-callout {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.warning-callout {
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.callout-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.callout-content {
    font-size: 14px;
    color: var(--text-secondary);
}

.callout-content strong {
    color: var(--text-primary);
}

/* ==========================================================================
   Danger Stats
   ========================================================================== */

.danger-stats {
    display: grid;
    gap: 16px;
    margin: 24px 0;
}

.danger-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.danger-icon {
    font-size: 24px;
}

.danger-text {
    font-size: 15px;
    color: var(--text-secondary);
}

.danger-text strong {
    color: var(--text-primary);
}

/* ==========================================================================
   Feature List
   ========================================================================== */

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.feature-list li:last-child {
    border-bottom: none;
}

.list-icon {
    font-size: 18px;
    flex-shrink: 0;
}

/* ==========================================================================
   Security Risks Grid
   ========================================================================== */

.security-risks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.risk-card {
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    text-align: center;
}

.risk-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.risk-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.risk-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================================================
   Reasons Grid
   ========================================================================== */

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.reason-card {
    padding: 28px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.reason-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.reason-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
}

.reason-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.reason-card ul {
    list-style: none;
    font-size: 14px;
    color: var(--text-secondary);
}

.reason-card li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.reason-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* ==========================================================================
   Method Cards
   ========================================================================== */

.method-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
    overflow: hidden;
}

.method-recommended {
    border-color: var(--primary);
    box-shadow: var(--shadow-purple);
}

.method-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.method-recommended .method-header {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.method-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: white;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.method-title {
    flex: 1;
}

.method-title h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.recommended-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--accent-green);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-left: 8px;
}

.method-content {
    padding: 24px;
}

.kahf-features {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-lg);
    margin: 16px 0;
}

.kahf-features h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.check-list {
    list-style: none;
    font-size: 14px;
}

.check-list li {
    padding: 6px 0;
    color: var(--text-secondary);
}

.why-best {
    padding: 16px;
    background: rgba(16, 185, 129, 0.05);
    border-left: 3px solid var(--accent-green);
    border-radius: var(--radius-md);
    margin: 16px 0;
    font-size: 14px;
}

/* Steps Accordion */
.steps-accordion {
    margin: 16px 0;
}

.step-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    overflow: hidden;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-light);
    font-weight: 600;
}

.step-icon {
    font-size: 18px;
}

.step-content {
    padding: 16px;
}

.step-content ol {
    margin-left: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.step-content li {
    padding: 4px 0;
}

/* Setup Steps */
.setup-steps {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-lg);
    margin-top: 20px;
}

.setup-steps h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.setup-steps ol {
    margin-left: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.setup-steps li {
    padding: 4px 0;
}

/* Methods Summary */
.methods-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.summary-card {
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    text-align: center;
}

.summary-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary-gradient);
    color: white;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 12px;
}

.summary-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.summary-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.limitation {
    font-size: 12px;
    color: var(--accent-orange);
}

/* ==========================================================================
   Comparison Table
   ========================================================================== */

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 24px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
    background: var(--bg-light);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solution-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.solution-name img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.editor-choice {
    display: inline-block;
    padding: 2px 8px;
    background: var(--primary);
    color: white;
    font-size: 10px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.stars {
    color: var(--accent-yellow);
    letter-spacing: 2px;
}

.editor-note {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: var(--radius-lg);
    margin-top: 24px;
}

.note-icon {
    font-size: 24px;
}

.note-content {
    font-size: 15px;
}

/* ==========================================================================
   Features Grid
   ========================================================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.feature-card {
    padding: 28px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
}

.feature-icon.purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
}

.feature-icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--secondary);
}

.feature-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
}

.feature-icon.orange {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-orange);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card ul {
    list-style: none;
    font-size: 14px;
    color: var(--text-secondary);
}

.feature-card li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.feature-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Kahf Guard Section */
.kahf-guard-section {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: var(--radius-xl);
    margin-top: 32px;
}

.guard-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.guard-content p {
    margin-bottom: 16px;
}

.guard-image img {
    max-width: 100%;
    border-radius: var(--radius-lg);
}

/* ==========================================================================
   Setup Tabs
   ========================================================================== */

.setup-tabs {
    margin: 32px 0;
}

.tab-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.tab-btn {
    padding: 12px 24px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn.active {
    background: var(--primary-gradient);
    color: white;
    border-color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: white;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.platform-icons {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ==========================================================================
   Warning Signs
   ========================================================================== */

.warning-signs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.sign {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(239, 68, 68, 0.05);
    border-radius: var(--radius-md);
    font-size: 14px;
}

.sign-icon {
    font-size: 18px;
}

/* ==========================================================================
   Islamic Perspective
   ========================================================================== */

.islamic-quote {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: var(--radius-xl);
    margin: 24px 0;
}

.quote-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.islamic-quote blockquote {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-primary);
    margin: 0;
}

.islamic-quote cite {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    font-style: normal;
    color: var(--primary);
    font-weight: 600;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.principle {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.principle-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.principle h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.principle p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.ramadan-callout {
    padding: 24px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-radius: var(--radius-lg);
    margin-top: 24px;
}

.ramadan-callout .callout-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.ramadan-callout h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.ramadan-callout p {
    font-size: 14px;
    margin-bottom: 12px;
}

.link-arrow {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.faq-accordion {
    margin: 24px 0;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--bg-white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */

.final-cta {
    padding: 48px;
    background: var(--primary-gradient);
    border-radius: var(--radius-2xl);
    text-align: center;
    margin: 48px 0;
}

.final-cta h2 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.final-cta > .cta-content > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.cta-features span {
    font-size: 14px;
    color: white;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.final-cta .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.final-cta .btn-primary:hover {
    background: var(--bg-light);
}

.final-cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.final-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.platform-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.trust-line {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Related Articles
   ========================================================================== */

.related-articles {
    margin-top: 48px;
}

.related-articles h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    display: block;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.article-image {
    height: 160px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card .article-content {
    padding: 20px;
}

.article-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
}

.article-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 32px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: var(--primary);
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .toc-sidebar {
        display: none;
    }
    
    .header-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .header-image {
        order: -1;
    }
    
    .features-grid,
    .reasons-grid,
    .security-risks {
        grid-template-columns: 1fr;
    }
    
    .kahf-guard-section {
        grid-template-columns: 1fr;
    }
    
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .article-header h1 {
        font-size: 32px;
    }
    
    .stats-highlight {
        grid-template-columns: 1fr;
    }
    
    .methods-summary {
        grid-template-columns: 1fr;
    }
    
    .warning-signs {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
    }
    
    .final-cta {
        padding: 32px 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .article-header h1 {
        font-size: 28px;
    }
    
    .content-section h2 {
        font-size: 26px;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-badges,
    .trust-line {
        flex-direction: column;
        gap: 8px;
    }
}/* End custom CSS */