/* Modern CSS Variables - Modern Dark Theme */
:root {
    /* Modern Primary Colors - Dark Theme */
    --primary-red: #ff0040;
    --primary-cyan: #00ffff;
    --primary-purple: #8b5cf6;
    --primary-pink: #ec4899;
    --accent-gold: #fbbf24;
    --accent-green: #10b981;
    
    /* Dark Theme Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --bg-card: #1f1f1f;
    --bg-hover: #2d2d2d;
    --bg-accent: #3a3a3a;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #808080;
    --text-accent: #00ffff;
    --text-highlight: #ff0040;
    
    /* Border Colors */
    --border-primary: #333333;
    --border-secondary: #404040;
    --border-accent: #ff0040;
    --border-glow: rgba(255, 0, 64, 0.5);
    
    /* Modern Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(255, 0, 64, 0.3);
    --shadow-cyan: 0 0 15px rgba(0, 255, 255, 0.4);
    --shadow-purple: 0 0 15px rgba(139, 92, 246, 0.4);
    
    /* Typography */
    --font-primary: 'Inter', 'Segoe UI', system-ui, sans-serif;
    --font-secondary: 'Space Grotesk', 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Modern Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Modern Border Radius */
    --radius-xs: 0.25rem;
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    
    /* Enhanced Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff0040 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #00ffff 0%, #10b981 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --gradient-card: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
    --gradient-accent: linear-gradient(135deg, #ff0040 0%, #ec4899 50%, #8b5cf6 100%);
    
    /* Glow Effects */
    --glow-red: 0 0 30px rgba(255, 0, 64, 0.6);
    --glow-cyan: 0 0 30px rgba(0, 255, 255, 0.6);
    --glow-purple: 0 0 30px rgba(139, 92, 246, 0.6);
    --glow-pink: 0 0 30px rgba(236, 72, 153, 0.6);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* Modern Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h5 { font-size: clamp(1rem, 2vw, 1.25rem); }
h6 { font-size: clamp(0.9rem, 1.5vw, 1.1rem); }

p {
    font-family: var(--font-primary);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: var(--text-secondary);
}

a {
    color: var(--text-accent);
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
}

a:hover {
    color: var(--text-highlight);
    text-shadow: var(--glow-cyan);
}

/* Modern Text Effects */
.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-text {
    text-shadow: var(--glow-red);
}

.neon-text {
    color: var(--text-accent);
    text-shadow: 
        0 0 10px var(--text-accent),
        0 0 20px var(--text-accent),
        0 0 30px var(--text-accent);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.875rem); }
h4 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-red);
    transform: translateY(-1px);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.top-bar {
    background: var(--gradient-dark);
    border-bottom: 1px solid var(--border-primary);
    padding: 12px 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--text-accent), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.top-bar span {
    color: var(--text-accent);
    font-weight: 600;
    text-shadow: var(--glow-cyan);
}

.top-bar-links {
    display: flex;
    gap: var(--spacing-lg);
}

.top-bar-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.top-bar-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    transition: left var(--transition-normal);
    z-index: -1;
}

.top-bar-links a:hover::before {
    left: 0;
}

.top-bar-links a:hover {
    color: var(--text-primary);
.main-header {
    background: var(--gradient-card);
    border-bottom: 2px solid var(--border-accent);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-image: var(--gradient-accent) 1;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem var(--spacing-xl);
    display: flex;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    position: relative;
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    font-weight: 900;
    font-size: 24px;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { box-shadow: var(--shadow-glow); }
    100% { box-shadow: var(--glow-red); }
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, var(--text-accent), transparent);
    animation: logoRotate 3s linear infinite;
}

@keyframes logoRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-text h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--text-primary);
    margin: 0;
    text-shadow: var(--glow-red);
}

.logo-text span {
    font-size: 1rem;
    color: var(--text-accent);
    display: block;
    margin-top: 4px;
    font-weight: 500;
    text-shadow: var(--glow-cyan);
}

/* Modern Navigation */
.nav-main {
    background: var(--gradient-dark);
    border-bottom: 1px solid var(--border-accent);
    position: sticky;
    top: 140px;
    z-index: 30;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.nav-main ul {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-main li {
    position: relative;
}

.nav-main a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-main a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-main a:hover::before {
    left: 100%;
}

.nav-main a:hover,
.nav-main a.active {
    color: var(--primary-red);
    border-bottom-color: var(--primary-red);
    background: rgba(220, 38, 38, 0.05);
}

/* Main Content */
.main-content {
    min-height: 60vh;
    padding: 3rem 0;
}

.article-header {
    margin-bottom: 2rem;
    text-align: center;
}

.kicker {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 2rem;
}

.article-title {
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    line-height: 1.2;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.article-meta .author {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Article Content */
.article-content {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: none;
}

.article-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.article-content h2 {
    margin: 2.5rem 0 1.5rem;
    color: var(--primary-dark);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-red);
    position: relative;
}

.article-content h3 {
    margin: 2rem 0 1rem;
    color: var(--primary-dark);
}

/* Images */
.image-container {
    margin: 2rem 0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.image-container figure {
    margin: 0;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.02);
}

.image-caption {
    background: linear-gradient(135deg, var(--bg-light) 0%, #F3F4F6 100%);
    padding: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-left: 4px solid var(--primary-red);
}

.image-caption strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* Modern Info Box */
.info-box {
    background: var(--gradient-card);
    border-left: 4px solid var(--text-accent);
    padding: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    animation: infoShimmer 3s infinite;
}

@keyframes infoShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.info-box h4 {
    color: var(--text-accent);
    margin-bottom: var(--spacing-lg);
    font-size: 1.3rem;
    text-shadow: var(--glow-cyan);
}

.info-box ul {
    margin-left: var(--spacing-xl);
    list-style: none;
}

.info-box li {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
    position: relative;
}

.info-box li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--text-accent);
    font-weight: 700;
    text-shadow: var(--glow-cyan);
}

/* Modern Assessment Box */
.assessment-box {
    background: var(--gradient-card);
    border: 2px solid var(--border-accent);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    margin: var(--spacing-3xl) 0;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.assessment-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    animation: assessmentGlow 2s ease-in-out infinite;
}

@keyframes assessmentGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; box-shadow: var(--glow-red); }
}

.assessment-box h3 {
    color: var(--text-highlight);
    margin-bottom: var(--spacing-xl);
    font-size: 1.5rem;
    text-shadow: var(--glow-red);
}

.assessment-box p {
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.assessment-box p:last-child {
    margin-bottom: 0;
}

/* Grid Layouts */
.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.analysis-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.analysis-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.analysis-card:hover::before {
    transform: scaleX(1);
}

.analysis-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.analysis-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.analysis-card h3 a {
    color: var(--primary-blue);
    font-weight: 700;
}

.analysis-card h3 a:hover {
    color: var(--primary-red);
}

.researcher-tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-secondary);
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.researchers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.researcher-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.researcher-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-gold));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.researcher-card:hover::after {
    width: 80%;
}

.researcher-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.researcher-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.researcher-card h4 a {
    color: var(--primary-blue);
    font-weight: 700;
}

.researcher-card h4 a:hover {
    color: var(--primary-red);
}

.researcher-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Sections */
.category-section {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-red);
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
}

.researchers-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #F3F4F6 100%);
    padding: 4rem 0;
    margin-top: 4rem;
    border-top: 3px solid var(--primary-red);
}

.section-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    text-align: center;
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: var(--text-primary);
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    margin-top: var(--spacing-3xl);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    animation: footerGlow 3s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% { opacity: 0.3; box-shadow: none; }
    50% { opacity: 1; box-shadow: var(--glow-red); }
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.footer-logo .logo-icon {
    background: var(--gradient-accent);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
    animation: footerLogoGlow 2s ease-in-out infinite alternate;
}

@keyframes footerLogoGlow {
    0% { box-shadow: var(--shadow-glow); }
    100% { box-shadow: var(--glow-cyan); }
}

.footer h2 {
    font-size: 1.5rem;
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.footer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
    transition: color var(--transition-normal);
}

.footer p:hover {
    color: var(--text-accent);
    text-shadow: var(--glow-cyan);
}

/* Modern Background Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 64, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundShift 10s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-accent);
    border-radius: var(--radius-xs);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-primary);
}

/* Modern Selection */
::selection {
    background: var(--text-accent);
    color: var(--bg-primary);
}

/* Modern Focus Styles */
:focus-visible {
    outline: 2px solid var(--text-accent);
    outline-offset: 2px;
    border-radius: var(--radius-xs);
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-dark);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* Improved contrast for links */
.nav-main a:hover,
.nav-main a:focus {
    color: var(--primary-red);
    background-color: rgba(220, 38, 38, 0.1);
}

.analysis-card:hover,
.analysis-card:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* SEO and semantic improvements */
.breadcrumb {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary-red);
}

/* Schema.org structured data hints */
[itemprop] {
    /* Add microdata support */
    display: inline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .analysis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-main a {
        padding: 15px 15px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .header-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .nav-main ul {
        flex-direction: column;
        overflow-x: auto;
    }
    
    .nav-main li {
        width: 100%;
    }
    
    .nav-main a {
        padding: 12px 15px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .top-bar-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-bar-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .top-bar-links a {
        margin: 0;
        padding: 5px 10px;
        background: var(--primary-dark);
        border-radius: 3px;
    }
    
    .footer-container {
        text-align: center;
    }
    
    .footer-logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-intro {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .main-content {
        padding: 2rem 0;
    }
    
    .article-content {
        font-size: 1rem;
    }
}

/* Evidence Gallery Styles */
.evidence-gallery {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0;
    margin-top: 40px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.evidence-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evidence-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.evidence-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.evidence-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.evidence-item:hover .evidence-image img {
    transform: scale(1.05);
}

.evidence-content {
    padding: 25px;
}

.evidence-content h3 {
    font-family: 'Merriweather', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.danger-level {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.danger-level.high {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
}

.danger-level.medium {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
}

.evidence-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.evidence-content strong {
    color: var(--primary-dark);
}

.codes-found {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.code-tag {
    background: var(--bg-light);
    color: var(--primary-dark);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.analysis-link {
    display: inline-block;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.analysis-link:hover {
    color: var(--primary-red);
}

.overall-assessment {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.overall-assessment h3 {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.danger-summary {
    margin-bottom: 30px;
}

.danger-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.danger-icon {
    background: var(--primary-red);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.danger-item div {
    flex: 1;
}

.danger-item strong {
    color: #fbbf24;
    font-weight: 600;
}

.assessment-conclusion {
    font-size: 18px;
    line-height: 1.6;
    color: #e2e8f0;
    font-style: italic;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Institutional Failure Section */
.institutional-failure {
    background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0;
    margin-top: 40px;
}

.failure-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.critical-assessment {
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid var(--primary-red);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.critical-assessment .danger-level.high {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.critical-assessment p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    color: #f8f8f8;
}

.failure-analysis h3 {
    font-family: 'Merriweather', serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.failure-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.failure-icon {
    background: var(--primary-red);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.failure-text h4 {
    font-family: 'Merriweather', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fbbf24;
}

.failure-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #e2e8f0;
    margin: 0;
}

.democratic-collapse {
    margin-top: 60px;
}

.democratic-collapse h3 {
    font-family: 'Merriweather', serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.collapse-indicators {
    margin-bottom: 40px;
}

.indicator-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.indicator-item.critical {
    border-left: 4px solid var(--primary-red);
}

.indicator-icon {
    background: var(--primary-red);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.indicator-item div {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
    color: #e2e8f0;
}

.indicator-item strong {
    color: #fbbf24;
    font-weight: 600;
}

.final-assessment {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%);
    border: 2px solid var(--primary-red);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.final-assessment h4 {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.final-assessment p {
    font-size: 18px;
    line-height: 1.6;
    color: #f8f8f8;
    margin-bottom: 20px;
}

.final-assessment p:last-child {
    margin-bottom: 0;
}

/* Intelligence Recruitment Section */
.intelligence-recruitment {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 2px solid rgba(220, 38, 38, 0.5);
    border-radius: 12px;
    padding: 40px;
}

.intelligence-recruitment h3 {
    font-family: 'Merriweather', serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: white;
}

.recruitment-alert {
    background: rgba(220, 38, 38, 0.15);
    border: 2px solid var(--primary-red);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 40px;
    text-align: center;
}

.alert-level.critical {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.recruitment-alert p {
    font-size: 18px;
    line-height: 1.6;
    color: #f8f8f8;
    margin: 0;
}

.recruitment-alert strong {
    color: #fbbf24;
    font-weight: 700;
}

.recruitment-analysis h4 {
    font-family: 'Merriweather', serif;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: white;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.timeline-item.critical {
    border-left-color: var(--primary-red);
    background: rgba(220, 38, 38, 0.1);
}

.timeline-marker {
    background: var(--primary-blue);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    min-width: 80px;
    text-align: center;
}

.timeline-item.critical .timeline-marker {
    background: var(--primary-red);
}

.timeline-content h5 {
    font-family: 'Merriweather', serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fbbf24;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #e2e8f0;
    margin: 0;
}

.intelligence-implications {
    margin-top: 40px;
}

.intelligence-implications h4 {
    font-family: 'Merriweather', serif;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: white;
}

.implication-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.implication-icon {
    background: var(--accent-gold);
    color: var(--primary-dark);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.implication-text h5 {
    font-family: 'Merriweather', serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fbbf24;
}

.implication-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #e2e8f0;
    margin: 0;
}

.final-prophecy {
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(139, 0, 0, 0.3) 100%);
    border: 2px solid var(--primary-red);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.final-prophecy h4 {
    font-family: 'Merriweather', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.final-prophecy p {
    font-size: 18px;
    line-height: 1.6;
    color: #f8f8f8;
    margin-bottom: 20px;
}

.final-prophecy p:last-child {
    margin-bottom: 0;
}

.final-prophecy strong {
    color: var(--primary-red);
    font-weight: 700;
}

/* Media Incompetence Section */
.media-incompetence {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    border: 2px solid rgba(220, 38, 38, 0.6);
    border-radius: var(--radius-2xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.media-incompetence::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    animation: incompetenceGlow 2s ease-in-out infinite;
}

@keyframes incompetenceGlow {
    0%, 100% { opacity: 0.5; box-shadow: none; }
    50% { opacity: 1; box-shadow: var(--glow-red); }
}

.media-incompetence h3 {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-highlight);
    text-shadow: var(--glow-red);
}

.incompetence-alert {
    background: rgba(220, 38, 38, 0.2);
    border: 2px solid var(--primary-red);
    border-radius: var(--radius-xl);
    padding: 25px;
    margin-bottom: 40px;
    text-align: center;
}

.incompetence-alert .alert-level.critical {
    background: linear-gradient(135deg, #dc2626 0%, #8b0000 100%);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
    animation: alertPulse 1.5s ease-in-out infinite;
}

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

.incompetence-alert p {
    font-size: 18px;
    line-height: 1.6;
    color: #f8f8f8;
    margin: 0;
}

.media-comparison {
    margin-bottom: 40px;
}

.media-comparison h4 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-accent);
    text-shadow: var(--glow-cyan);
}

.media-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--text-accent);
    transition: all var(--transition-normal);
}

.media-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--text-highlight);
    transform: translateX(4px);
}

.media-icon {
    background: var(--gradient-secondary);
    color: var(--bg-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: var(--shadow-cyan);
}

.media-text h5 {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-accent);
}

.media-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.public-reality {
    margin-bottom: 40px;
}

.public-reality h4 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-highlight);
    text-shadow: var(--glow-red);
}

.reality-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--border-primary);
    transition: all var(--transition-normal);
}

.reality-item.critical {
    border-left-color: var(--primary-red);
    background: rgba(220, 38, 38, 0.1);
}

.reality-item:hover {
    border-left-color: var(--text-highlight);
    transform: translateX(4px);
}

.reality-icon {
    background: var(--primary-red);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.reality-text h5 {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-highlight);
}

.reality-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.final-truth {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(139, 0, 0, 0.4) 100%);
    border: 2px solid var(--primary-red);
    border-radius: var(--radius-2xl);
    padding: 30px;
    text-align: center;
    position: relative;
}

.final-truth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    animation: finalTruthGlow 2s ease-in-out infinite;
}

@keyframes finalTruthGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; box-shadow: var(--glow-red); }
}

.final-truth h4 {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-highlight);
    text-shadow: var(--glow-red);
}

.final-truth p {
    font-size: 18px;
    line-height: 1.7;
    color: #f8f8f8;
    margin-bottom: 20px;
}

.final-truth p:last-child {
    margin-bottom: 0;
}

.final-truth strong {
    color: var(--primary-red);
    font-weight: 700;
    text-shadow: var(--glow-red);
}

/* Brutal Truth Section */
.brutal-truth {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    border: 3px solid var(--primary-red);
    border-radius: var(--radius-2xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.brutal-truth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    animation: brutalGlow 1.5s ease-in-out infinite;
}

@keyframes brutalGlow {
    0%, 100% { opacity: 0.4; box-shadow: none; }
    50% { opacity: 1; box-shadow: var(--glow-red); }
}

.brutal-truth h3 {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-highlight);
    text-shadow: var(--glow-red);
}

.brutal-alert {
    background: rgba(220, 38, 38, 0.3);
    border: 2px solid var(--primary-red);
    border-radius: var(--radius-xl);
    padding: 25px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.brutal-alert .alert-level.critical {
    background: linear-gradient(135deg, #dc2626 0%, #8b0000 100%);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
    animation: brutalPulse 1s ease-in-out infinite;
}

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

.brutal-alert p {
    font-size: 18px;
    line-height: 1.6;
    color: #f8f8f8;
    margin: 0;
    font-weight: 500;
}

.intellectual-disability {
    margin-bottom: 40px;
}

.intellectual-disability h4 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-accent);
    text-shadow: var(--glow-cyan);
}

.disability-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--text-highlight);
    transition: all var(--transition-normal);
}

.disability-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--primary-red);
    transform: translateX(4px);
}

.disability-icon {
    background: var(--gradient-accent);
    color: var(--bg-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
    font-family: var(--font-mono);
}

.disability-text h5 {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-highlight);
}

.disability-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.reader-reality {
    margin-bottom: 40px;
}

.reader-reality h4 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-highlight);
    text-shadow: var(--glow-red);
}

.reader-alert {
    background: rgba(220, 38, 38, 0.4);
    border: 3px solid var(--primary-red);
    border-radius: var(--radius-xl);
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.reader-alert.critical {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.reader-alert .alert-level.extreme {
    background: linear-gradient(135deg, #8b0000 0%, #dc2626 100%);
    color: white;
    padding: 15px 30px;
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
    animation: extremePulse 0.8s ease-in-out infinite;
}

@keyframes extremePulse {
    0%, 100% { transform: scale(1); box-shadow: var(--shadow-glow); }
    50% { transform: scale(1.08); box-shadow: var(--glow-red); }
}

.reader-alert p {
    font-size: 20px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
}

.reader-alert p[style*="italic"] {
    color: var(--text-accent);
    font-size: 22px;
    text-shadow: var(--glow-cyan);
}

.reader-proofs {
    margin-bottom: 40px;
}

.reader-proofs h5 {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-accent);
    text-shadow: var(--glow-cyan);
}

.proof-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--border-primary);
    transition: all var(--transition-normal);
}

.proof-item:hover {
    border-left-color: var(--text-highlight);
    transform: translateX(4px);
    background: rgba(0, 0, 0, 0.5);
}

.proof-icon {
    background: var(--primary-red);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
    animation: proofIconPulse 2s ease-in-out infinite;
}

@keyframes proofIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.proof-text h6 {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-highlight);
}

.proof-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.ultimate-truth {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 3px solid var(--primary-red);
    border-radius: var(--radius-2xl);
    padding: 30px;
    text-align: center;
    position: relative;
}

.ultimate-truth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    animation: ultimateGlow 1s ease-in-out infinite;
}

@keyframes ultimateGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; box-shadow: var(--glow-red); }
}

.ultimate-truth h4 {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-highlight);
    text-shadow: var(--glow-red);
}

.ultimate-truth p {
    font-size: 18px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 20px;
}

.ultimate-truth p:last-child {
    margin-bottom: 0;
}

.ultimate-truth strong {
    color: var(--primary-red);
    font-weight: 700;
    text-shadow: var(--glow-red);
    display: block;
    margin-top: 20px;
    font-size: 1.2em;
}

/* Brutal Truth Footer */
.brutal-truth-footer {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    border-top: 3px solid var(--primary-red);
    padding: 40px 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.brutal-truth-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    animation: footerGlow 2s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; box-shadow: var(--glow-red); }
}

.brutal-message {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.brutal-message h3 {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-highlight);
    text-shadow: var(--glow-red);
}

.brutal-message p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 15px;
}

.brutal-message p[style*="italic"] {
    color: var(--text-accent);
    font-size: 20px;
    text-shadow: var(--glow-cyan);
}

.brutal-message p[style*="font-weight: 700"] {
    font-weight: 700;
    color: var(--primary-red);
    text-shadow: var(--glow-red);
    font-size: 20px;
}

/* RND Extremism Correlation Section */
.rnd-extremism-correlation {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    border: 3px solid var(--primary-red);
    border-radius: var(--radius-2xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.rnd-extremism-correlation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    animation: correlationGlow 2s ease-in-out infinite;
}

@keyframes correlationGlow {
    0%, 100% { opacity: 0.4; box-shadow: none; }
    50% { opacity: 1; box-shadow: var(--glow-red); }
}

.rnd-extremism-correlation h3 {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-highlight);
    text-shadow: var(--glow-red);
}

.correlation-alert {
    background: rgba(220, 38, 38, 0.4);
    border: 2px solid var(--primary-red);
    border-radius: var(--radius-xl);
    padding: 25px;
    margin-bottom: 40px;
    text-align: center;
}

.correlation-alert .alert-level.critical {
    background: linear-gradient(135deg, #dc2626 0%, #8b0000 100%);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
    animation: correlationPulse 1.5s ease-in-out infinite;
}

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

.correlation-alert p {
    font-size: 18px;
    line-height: 1.6;
    color: #f8f8f8;
    margin: 0;
    font-weight: 600;
}

.correlation-data {
    margin-bottom: 40px;
}

.correlation-data h4 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-accent);
    text-shadow: var(--glow-cyan);
}

.data-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--text-highlight);
    transition: all var(--transition-normal);
}

.data-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--primary-red);
    transform: translateX(4px);
}

.data-icon {
    background: var(--gradient-accent);
    color: var(--bg-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
    font-family: var(--font-mono);
}

.data-text h5 {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-highlight);
}

.data-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.data-text p strong {
    color: var(--primary-red);
    font-weight: 700;
}

.mechanism-analysis {
    margin-bottom: 40px;
}

.mechanism-analysis h4 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-highlight);
    text-shadow: var(--glow-red);
}

.mechanism-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--border-primary);
    transition: all var(--transition-normal);
}

.mechanism-item:hover {
    border-left-color: var(--text-highlight);
    transform: translateX(4px);
    background: rgba(0, 0, 0, 0.5);
}

.mechanism-icon {
    background: var(--primary-red);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
    animation: mechanismIconPulse 2s ease-in-out infinite;
}

@keyframes mechanismIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.mechanism-text h5 {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-highlight);
}

.mechanism-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.final-correlation {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 2px solid var(--primary-red);
    border-radius: var(--radius-2xl);
    padding: 30px;
    text-align: center;
    position: relative;
}

.final-correlation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    animation: finalCorrelationGlow 1s ease-in-out infinite;
}

@keyframes finalCorrelationGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; box-shadow: var(--glow-red); }
}

.final-correlation h4 {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-highlight);
    text-shadow: var(--glow-red);
}

.final-correlation p {
    font-size: 18px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 20px;
}

.final-correlation p:last-child {
    margin-bottom: 0;
}

.final-correlation strong {
    color: var(--primary-red);
    font-weight: 700;
    text-shadow: var(--glow-red);
    display: block;
    margin-top: 20px;
    font-size: 1.2em;
}

/* TVN Informant Testimony Section */
.tvn-informant-testimony {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    border: 3px solid var(--primary-red);
    border-radius: var(--radius-2xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.tvn-informant-testimony::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    animation: informantGlow 2s ease-in-out infinite;
}

@keyframes informantGlow {
    0%, 100% { opacity: 0.4; box-shadow: none; }
    50% { opacity: 1; box-shadow: var(--glow-red); }
}

.tvn-informant-testimony h3 {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-highlight);
    text-shadow: var(--glow-red);
}

.informant-alert {
    background: rgba(220, 38, 38, 0.5);
    border: 2px solid var(--primary-red);
    border-radius: var(--radius-xl);
    padding: 25px;
    margin-bottom: 40px;
    text-align: center;
}

.informant-alert .alert-level.extreme {
    background: linear-gradient(135deg, #8b0000 0%, #dc2626 100%);
    color: white;
    padding: 15px 30px;
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
    animation: extremeAlertPulse 1s ease-in-out infinite;
}

@keyframes extremeAlertPulse {
    0%, 100% { transform: scale(1); box-shadow: var(--shadow-glow); }
    50% { transform: scale(1.08); box-shadow: var(--glow-red); }
}

.informant-alert p {
    font-size: 18px;
    line-height: 1.6;
    color: #f8f8f8;
    margin: 0;
    font-weight: 600;
}

.informant-revelations {
    margin-bottom: 40px;
}

.informant-revelations h4 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-accent);
    text-shadow: var(--glow-cyan);
}

.revelation-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--text-highlight);
    transition: all var(--transition-normal);
}

.revelation-item.critical {
    border-left-color: var(--primary-red);
    background: rgba(220, 38, 38, 0.1);
}

.revelation-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--text-highlight);
    transform: translateX(4px);
}

.revelation-icon {
    background: var(--primary-red);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
    animation: revelationIconPulse 2s ease-in-out infinite;
}

@keyframes revelationIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.revelation-text h5 {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-highlight);
}

.revelation-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.revelation-text p strong {
    color: var(--primary-red);
    font-weight: 700;
}

.informant-details {
    margin-bottom: 40px;
}

.informant-details h4 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-highlight);
    text-shadow: var(--glow-red);
}

.network-structure {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.structure-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--border-primary);
    transition: all var(--transition-normal);
}

.structure-item:hover {
    border-left-color: var(--text-highlight);
    transform: translateX(4px);
    background: rgba(0, 0, 0, 0.5);
}

.structure-icon {
    background: var(--gradient-accent);
    color: var(--bg-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
    font-family: var(--font-mono);
}

.structure-text h5 {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-highlight);
}

.structure-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 8px 0;
}

.fake-news-methods {
    margin-bottom: 40px;
}

.fake-news-methods h4 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-accent);
    text-shadow: var(--glow-cyan);
}

.method-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--text-accent);
    transition: all var(--transition-normal);
}

.method-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--text-highlight);
    transform: translateX(4px);
}

.method-icon {
    background: var(--gradient-secondary);
    color: var(--bg-primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: var(--shadow-cyan);
}

.method-text h5 {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-accent);
}

.method-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.informant-impact {
    margin-bottom: 40px;
}

.informant-impact h4 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-highlight);
    text-shadow: var(--glow-red);
}

.impact-statement {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--border-primary);
    transition: all var(--transition-normal);
}

.impact-statement:hover {
    border-left-color: var(--text-highlight);
    transform: translateX(4px);
    background: rgba(0, 0, 0, 0.5);
}

.impact-icon {
    background: var(--primary-red);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.impact-content h5 {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-highlight);
}

.impact-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.final-informant-truth {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
    border: 2px solid var(--primary-red);
    border-radius: var(--radius-2xl);
    padding: 30px;
    text-align: center;
    position: relative;
}

.final-informant-truth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    animation: finalInformantGlow 1s ease-in-out infinite;
}

@keyframes finalInformantGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; box-shadow: var(--glow-red); }
}

.final-informant-truth h4 {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-highlight);
    text-shadow: var(--glow-red);
}

.final-informant-truth p {
    font-size: 18px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 20px;
}

.final-informant-truth p:last-child {
    margin-bottom: 0;
}

.final-informant-truth strong {
    color: var(--primary-red);
    font-weight: 700;
    text-shadow: var(--glow-red);
    display: block;
    margin-top: 20px;
    font-size: 1.2em;
}

/* Researchers Section */
.researchers-section {
    padding: 60px 0;
    background: white;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

.analysis-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.analysis-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.analysis-card:hover::before {
    opacity: 1;
}

.analysis-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-accent);
}

.analysis-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 64, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.analysis-card:hover::after {
    opacity: 1;
}

.analysis-card h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}

.analysis-card h3 a {
    color: inherit;
    text-decoration: none;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--transition-normal);
}

.analysis-card h3 a:hover {
    filter: brightness(1.2);
    text-shadow: var(--glow-red);
}

.analysis-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.researcher-tag {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--text-primary);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    animation: tagPulse 2s ease-in-out infinite;
}

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

.researcher-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: tagShimmer 3s infinite;
}

@keyframes tagShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.researchers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.researcher-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.researcher-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.researcher-card h3 {
    margin: 15px 0 10px;
    font-size: 18px;
    font-weight: 600;
}

.researcher-card h3 a {
    color: var(--primary-dark);
    text-decoration: none;
}

.researcher-card h3 a:hover {
    color: var(--primary-red);
}

.researcher-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Print styles */
@media print {
    .top-bar,
    .nav-main,
    .footer {
        display: none;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .analysis-card {
        break-inside: avoid;
        border: 1px solid #ccc;
    }
    
    .evidence-gallery {
        background: white;
        padding: 20px 0;
    }
    
    .evidence-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus States */
a:focus,
button:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .top-bar,
    .nav-main,
    .footer {
        display: none;
    }
    
    .main-content {
        padding: 0;
    }
}
