/* Modern Dark Theme Design System (John Giovannelli Inspired) */
:root {
    /* Base Colors - High Contrast Dark */
    --color-bg-primary: #0a0a0a;
    --color-bg-secondary: #1a1a1a;
    --color-bg-tertiary: #222222;
    --color-bg-elevated: #2a2a2a;

    /* Glassmorphism - Subtle Dark */
    --color-bg-glass: rgba(10, 10, 10, 0.9);
    --backdrop-blur: 12px;

    /* Primary Colors - Bright Blue */
    --color-primary: #007bff;
    --color-primary-dark: #0056b3;
    --color-primary-light: #339af0;
    --color-primary-glow: rgba(0, 123, 255, 0.3);

    /* Accent - Bright Yellow/Gold */
    --color-accent: #ffea00;
    --color-accent-dark: #ffd600;
    --color-accent-light: #ffff00;
    --color-accent-glow: rgba(255, 234, 0, 0.2);

    /* Danger - Bright Red */
    --color-danger: #ff1744;
    --color-danger-dark: #d50000;
    --color-danger-light: #ff616f;
    --color-danger-glow: rgba(255, 23, 68, 0.25);

    /* Success - Bright Green */
    --color-success: #00e676;
    --color-success-dark: #00c853;
    --color-success-glow: rgba(0, 230, 118, 0.25);

    /* Warning - Bright Orange */
    --color-warning: #ff9100;
    --color-warning-dark: #ff6d00;

    /* Purple - Bright Purple */
    --color-purple: #d500f9;
    --color-purple-dark: #aa00ff;
    --color-purple-glow: rgba(213, 0, 249, 0.25);

    /* Text - High Contrast White */
    --color-text-primary: #ffffff;
    --color-text-secondary: #e0e0e0;
    --color-text-muted: #a0a0a0;

    /* Borders - Subtle Dark */
    --color-border: #333333;
    --color-border-hover: #007bff;
    --color-border-accent: #ffea00;

    /* Shadows - Deep */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 15px rgba(0, 123, 255, 0.2);
    --shadow-glow-accent: 0 0 20px rgba(255, 234, 0, 0.2);
    --shadow-glow-danger: 0 0 25px rgba(255, 23, 68, 0.3);

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Libre Baskerville', Georgia, serif;
    --font-display: 'Outfit', sans-serif;

    /* Layout */
    --container-max: 1400px;

    /* Gradients - Dark & Vibrant */
    --gradient-primary: linear-gradient(135deg, #007bff, #0056b3);
    --gradient-accent: linear-gradient(135deg, #ffea00, #ffd600);
    --gradient-danger: linear-gradient(135deg, #ff1744, #d50000);
    --gradient-success: linear-gradient(135deg, #00e676, #00c853);
    --gradient-purple: linear-gradient(135deg, #d500f9, #aa00ff);
    --gradient-dark: linear-gradient(to bottom, #1a1a1a, #0a0a0a);
    --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);

    /* Compatibility Variables */
    --color-gray-200: #333333;
    --color-gray-300: #a0a0a0;
    --color-gray-500: #808080;
    --color-gray-600: #e0e0e0;
    --color-primary-light: #339af0;
    --color-text-tertiary: #a0a0a0;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 5%;
    /* Fluid padding */
    width: 100%;
}

@media (min-width: 1600px) {
    .container {
        padding: 0 2rem;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--color-bg-secondary);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.content-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.card-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.section-title {
    font-family: var(--font-serif);
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all var(--transition-base);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-text-primary);
    text-transform: lowercase;
    letter-spacing: -0.02em;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(220, 38, 38, 0.4));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Button Base Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-text-primary);
    margin: 6px 0;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: radial-gradient(circle at top right, #1e293b, #0f172a);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    color: #ffffff;
    /* Force white text on dark background */
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(239, 68, 68, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    filter: blur(40px);
    animation: pulse 8s ease-in-out infinite alternate;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    padding: 4rem 0 3rem;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-family: var(--font-serif);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title .highlight {
    color: var(--color-primary);
    text-shadow: none;
}

.hero-title .subtitle {
    display: block;
    font-size: 0.5em;
    color: var(--color-text-tertiary);
    font-family: var(--font-sans);
    font-weight: 500;
    margin-top: 1rem;
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.7);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary-light);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    position: relative;
    padding: 3rem 0;
    border-top: 1px solid rgba(220, 20, 60, 0.3);
    width: 100%;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 0, 0, 0.6);
    border-radius: 16px;
    border: 1px solid var(--color-gray-200);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-text-tertiary);
    font-size: 0.95rem;
}

.section {
    padding: 8rem 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

/* Overview Section */
.overview-section {
    background: var(--color-bg-primary);
}

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

.content-card {
    background: var(--color-bg-glass);
    backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.content-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
    background: rgba(30, 41, 59, 0.9);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.4));
}

.content-card h3 {
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.content-card p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.detail-list {
    list-style: none;
    margin-top: 1.5rem;
}

.detail-list li {
    padding: 0.75rem 0 0.75rem 1.5rem;
    position: relative;
    color: var(--color-text-tertiary);
    font-size: 0.95rem;
}

.detail-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* Cases Section */
.cases-section {
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 4rem;
}

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 4px solid var(--color-bg-secondary);
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.8);
}

.timeline-content {
    background: var(--color-bg-elevated);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition-base);
}

.timeline-content:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
    transform: translateX(5px);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.case-court {
    color: var(--color-primary-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.case-tag {
    display: inline-block;
    background: rgba(220, 20, 60, 0.3);
    color: var(--color-primary-light);
    padding: 0.4rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Data Section */
.data-section {
    background: var(--color-bg-primary);
}

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

.data-card {
    background: var(--color-bg-glass);
    backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.data-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-secondary);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.data-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.15), rgba(245, 158, 11, 0.05));
    border-color: var(--color-primary);
}

.data-card h3 {
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.data-stat {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.data-description {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.bar-chart {
    margin: 2rem 0;
}

.bar {
    height: 50px;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.bar-black {
    background: linear-gradient(90deg, var(--color-accent), #DC2626);
}

.bar-white {
    background: linear-gradient(90deg, var(--color-gray-600), var(--color-gray-500));
}

.bar-label {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.research-sources {
    background: var(--color-bg-elevated);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--color-gray-200);
}

.research-sources h3 {
    color: var(--color-text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.source-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-text-secondary);
    transition: all var(--transition-base);
}

.source-card:hover {
    background: rgba(220, 20, 60, 0.15);
    border-color: var(--color-primary);
    transform: translateX(5px);
}

.source-icon {
    font-size: 1.5rem;
}

.source-text {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Action Section */
.action-section {
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
}

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

.content-card {
    background: var(--color-bg-elevated);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-200);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary-light);
}

.action-card {
    background: var(--color-bg-elevated);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

.action-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.4);
}

.action-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(220, 20, 60, 0.3);
    margin-bottom: 1rem;
}

.action-card h3 {
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.action-card p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.action-details {
    background: rgba(220, 20, 60, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 3px solid var(--color-primary);
}

.action-details strong {
    color: var(--color-primary-light);
}

.action-details ul {
    list-style: none;
    margin-top: 1rem;
}

.action-details li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--color-text-tertiary);
    font-size: 0.95rem;
}

.action-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
}

.action-link {
    display: inline-block;
    color: var(--color-primary-light);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.action-link:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.social-share {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.share-btn {
    padding: 0.875rem 1.5rem;
    background: rgba(220, 20, 60, 0.15);
    border: 1px solid var(--color-primary);
    border-radius: 10px;
    color: var(--color-primary-light);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.share-btn:hover {
    background: var(--color-primary);
    color: white;
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid rgba(220, 20, 60, 0.3);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-col p {
    color: var(--color-text-tertiary);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--color-text-tertiary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--color-primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(220, 20, 60, 0.15);
    color: var(--color-gray-500);
}

.footer-tagline {
    margin-top: 0.5rem;
    font-style: italic;
    color: var(--color-primary-light);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    /* Mobile Menu Button */
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(2, 6, 23, 0.98);
        backdrop-filter: blur(20px);
        padding: 6rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        gap: 1.5rem;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.25rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 1rem;
        width: 100%;
        display: block;
    }

    /* Dropdowns in Mobile */
    .dropdown-content {
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        display: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropbtn::after {
        content: ' +';
    }

    .dropdown.active .dropbtn::after {
        content: ' -';
    }

    /* Add Mobile Menu Toggle Logic Here if needed, for now just hiding */

    .hero-content {
        padding: 8rem 0 4rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .stats-grid,
    .content-grid,
    .data-grid,
    .action-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .data-card.featured {
        grid-column: span 1;
    }

    .section {
        padding: 4rem 0;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 50px;
        margin-bottom: 3rem;
    }

    .timeline-marker {
        left: 5px;
    }

    h1 {
        font-size: 2.5rem;
        /* Explicit mobile size */
    }

    h2 {
        font-size: 2rem;
    }

    .stat-number,
    .data-stat {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 2rem;
    }

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

    .content-card,
    .data-card,
    .action-card {
        padding: 1.5rem;
    }
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--color-bg-secondary);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    border-radius: 8px;
    padding: 0.5rem 0;
    top: 100%;
    left: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.dropdown-content a {
    color: var(--color-text-secondary);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background-color: var(--color-bg-elevated);
    color: var(--color-primary);
    padding-left: 20px;
    /* Subtle slide effect */
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropbtn {
    cursor: pointer;
}

/* Legal News Feed Styles */
.feed-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    color: white;
}

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

.feed-card {
    background: var(--color-bg-glass);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(220, 20, 60, 0.1);
}

.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.feed-source {
    font-weight: 700;
    color: var(--color-text-secondary);
}

.feed-source.reddit {
    color: #FF4500;
}

.feed-source.rss {
    color: #FFA500;
}

.feed-source.system {
    color: var(--color-primary);
}

.feed-time {
    color: var(--color-text-tertiary);
}

.feed-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.feed-content p {
    color: var(--color-text-primary);
    line-height: 1.5;
    font-size: 1rem;
}

.feed-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-gray-200);
    padding-top: 1rem;
}

.feed-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    background: var(--color-bg-secondary);
    color: var(--color-text-secondary);
    text-transform: uppercase;
    font-weight: 600;
}

.feed-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.feed-link:hover {
    text-decoration: underline;
}

#feed-loading {
    text-align: center;
    padding: 2rem;
    display: none;
}

#feed-loading.active {
    display: block;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-left-color: var(--color-primary);
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ============================================
   MODERN DESIGN ENHANCEMENTS - PHASE 11
   ============================================ */

/* Highlight Boxes */
.highlight-box {
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, currentColor, transparent);
    opacity: 0.5;
}

.highlight-box.warning {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-left-color: #F59E0B;
    color: #78350F;
}

.highlight-box.danger {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    border-left-color: #DC2626;
    color: #7F1D1D;
}

.highlight-box.info {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border-left-color: #2563EB;
    color: #1E3A8A;
}

.highlight-box.success {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    border-left-color: #059669;
    color: #064E3B;
}

.highlight-box h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

/* Video Embed Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 1rem;
    background: white;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* Modern Cards with Gradients */
.modern-card {
    background: var(--color-bg-glass);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(239, 68, 68, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #DC2626, #EF4444, #F87171);
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(220, 38, 38, 0.15);
}

/* Quote Callout */
.quote-callout {
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    border-left: 5px solid var(--color-primary);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
}

.quote-callout::before {
    content: '"';
    font-size: 4rem;
    color: var(--color-primary);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: Georgia, serif;
}

.quote-callout cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* Updated Component Styles using New Palette */

.section-title {
    font-family: var(--font-serif);
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero {
    background: radial-gradient(circle at top right, #1e293b, #020617);
}

.hero::before {
    background:
        radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-bg-primary);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 0 20px var(--color-primary-glow);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary:hover {
    background: rgba(56, 189, 248, 0.1);
}

/* Cards */
.content-card,
.data-card,
.action-card,
.video-card {
    background: var(--color-bg-glass);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(var(--backdrop-blur));
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.content-card:hover,
.data-card:hover,
.action-card:hover,
.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    background: var(--color-bg-elevated);
}

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

.text-gradient-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-danger {
    background: var(--gradient-danger);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card Variants */
.card-primary {
    border-top: 3px solid var(--color-primary);
}

.card-accent {
    border-top: 3px solid var(--color-accent);
}

.card-danger {
    border-top: 3px solid var(--color-danger);
}

/* Icons */
.card-icon {
    background: rgba(56, 189, 248, 0.1);
    color: var(--color-primary);
}

.card-accent .card-icon {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-accent);
}

.card-danger .card-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-danger);
}

/* Stats */
.stat-number {
    color: var(--color-primary);
    font-family: var(--font-display);
}

/* Timeline */
.timeline-marker {
    background: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2);
}

.timeline-item:hover .timeline-marker {
    background: var(--color-accent);
    box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.2);
}

/* Navbar */
.navbar {
    background: rgba(2, 6, 23, 0.85);
    /* Darker navy */
    border-bottom: 1px solid var(--color-border);
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-links a::after {
    background: var(--gradient-primary);
}

/* Dropdown */
.dropdown-content {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
}

.dropdown-content a:hover {
    background: var(--color-bg-tertiary);
    color: var(--color-primary);
}

/* Footer */
.footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
}

/* Icon Boxes */
.icon-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--color-bg-elevated);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.icon-box:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.icon-box-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.icon-box-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

/* Statistics Bar */
.stats-bar {
    background: linear-gradient(135deg, #7F1D1D 0%, #450A0A 100%);
    color: white;
    padding: 3rem 0;
    margin: 3rem 0;
    border-radius: 16px;
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stats-bar-item h4 {
    font-size: 3rem;
    font-weight: 900;
    margin: 0;
    color: #FCA5A5;
}

.stats-bar-item p {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Timeline Visualization */
.timeline-visual {
    position: relative;
    padding: 2rem 0;
}

.timeline-visual::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #DC2626, #FCA5A5);
}

.timeline-event {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.timeline-event::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 4px solid white;
    box-shadow: 0 0 0 3px var(--color-primary);
}

.timeline-event-date {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.timeline-event-content {
    background: var(--color-bg-elevated);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Pull Quote */
.pull-quote {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--color-primary);
    font-weight: 600;
    text-align: center;
    padding: 2rem;
    margin: 3rem 0;
    border-top: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    font-style: italic;
}

/* Infographic Section */
.infographic {
    background: linear-gradient(135deg, #FFF5F5 0%, #FEE2E2 100%);
    padding: 3rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.infographic-title {
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

/* Subtle Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #DC2626 0%, #F87171 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modern Link Style */
.modern-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.modern-link:hover {
    border-bottom-color: var(--color-primary);
}

/* ============================================
   PHASE 12: ADVANCED MULTIMEDIA & ANIMATIONS
   ============================================ */

/* PDF/Document Viewer Container */
.pdf-container {
    background: #525659;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    margin: 2rem 0;
}

.pdf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    margin-bottom: 1rem;
    font-family: sans-serif;
    font-size: 0.9rem;
}

.pdf-content {
    background: white;
    height: 500px;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Fake Document Styles */
.doc-page {
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.6;
    color: #333;
    max-width: 100%;
}

.doc-header {
    text-align: center;
    border-bottom: 2px solid #000;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    font-weight: bold;
    text-transform: uppercase;
}

.redacted-text {
    background: black;
    color: black;
    padding: 0 2px;
    cursor: help;
    transition: all 0.3s ease;
}

.redacted-text:hover {
    background: rgba(0, 0, 0, 0.1);
    color: red;
}

/* Provocative Animations */

/* Glitch Effect */
.glitch-wrapper {
    position: relative;
    display: inline-block;
}

.glitch-text {
    position: relative;
    color: var(--color-primary);
    font-weight: 900;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 #00ffff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -1px 0 #ff00ff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(31px, 9999px, 94px, 0);
    }

    20% {
        clip: rect(6px, 9999px, 19px, 0);
    }

    40% {
        clip: rect(86px, 9999px, 14px, 0);
    }

    60% {
        clip: rect(18px, 9999px, 68px, 0);
    }

    80% {
        clip: rect(5px, 9999px, 89px, 0);
    }

    100% {
        clip: rect(48px, 9999px, 26px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
    }

    20% {
        clip: rect(21px, 9999px, 6px, 0);
    }

    40% {
        clip: rect(93px, 9999px, 38px, 0);
    }

    60% {
        clip: rect(2px, 9999px, 81px, 0);
    }

    80% {
        clip: rect(46px, 9999px, 15px, 0);
    }

    100% {
        clip: rect(79px, 9999px, 53px, 0);
    }
}

/* Stamp Animation */
.stamp-container {
    position: relative;
    display: inline-block;
}

.stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg) scale(3);
    border: 0.5rem solid #D32F2F;
    color: #D32F2F;
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    mask-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxmaWx0ZXIgaWQ9Im5vaXNlIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMC41IiBudW1PY3RhdmVzPSIxIiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI25vaXNlKSIgb3BhY2l0eT0iMC41Ii8+PC9zdmc+');
    mask-mode: alpha;
    animation: stamp-slam 0.5s cubic-bezier(0.6, 0.04, 0.98, 0.335) forwards;
    animation-delay: 1s;
}

@keyframes stamp-slam {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(-15deg) scale(3);
    }

    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) rotate(-15deg) scale(1);
    }
}

/* Pulse Attention */
.pulse-attention {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

/* Confidential Watermark */
.confidential-bg {
    position: relative;
}

.confidential-bg::after {
    content: 'CONFIDENTIAL';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.05);
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
}

/* Floating Action Button for Documents */
.fab-doc {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--color-primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 100;
}

.fab-doc:hover {
    transform: scale(1.1) rotate(5deg);
}