
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --blood-red: #DC143C;
            --anarchy-black: #0A0A0A;
            --riot-white: #F5F5F5;
            --warning-yellow: #FFD700;
            --grunge-gray: #2A2A2A;
        }
        
        body {
            font-family: 'Oswald', sans-serif;
            background-color: var(--anarchy-black);
            color: var(--riot-white);
            overflow-x: hidden;
            cursor: crosshair;
        }
        
        /* Glitch Effect */
        @keyframes glitch {
            0%, 100% {
                text-shadow: 
                    0.05em 0 0 rgba(255, 0, 0, .75),
                    -0.025em -0.05em 0 rgba(0, 255, 0, .75),
                    0.025em 0.05em 0 rgba(0, 0, 255, .75);
            }
            14% {
                text-shadow: 
                    0.05em 0 0 rgba(255, 0, 0, .75),
                    -0.05em -0.025em 0 rgba(0, 255, 0, .75),
                    0.025em 0.05em 0 rgba(0, 0, 255, .75);
            }
            15% {
                text-shadow: 
                    -0.05em -0.025em 0 rgba(255, 0, 0, .75),
                    0.025em 0.025em 0 rgba(0, 255, 0, .75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, .75);
            }
            49% {
                text-shadow: 
                    -0.05em -0.025em 0 rgba(255, 0, 0, .75),
                    0.025em 0.025em 0 rgba(0, 255, 0, .75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, .75);
            }
            50% {
                text-shadow: 
                    0.025em 0.05em 0 rgba(255, 0, 0, .75),
                    0.05em 0 0 rgba(0, 255, 0, .75),
                    0 -0.05em 0 rgba(0, 0, 255, .75);
            }
            99% {
                text-shadow: 
                    0.025em 0.05em 0 rgba(255, 0, 0, .75),
                    0.05em 0 0 rgba(0, 255, 0, .75),
                    0 -0.05em 0 rgba(0, 0, 255, .75);
            }
        }
        
        /* Static Noise Background */
        @keyframes static {
            0% { background-position: 0 0; }
            100% { background-position: 100% 100%; }
        }
        
        .noise-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            z-index: 1;
            pointer-events: none;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Ii43NSIgbnVtT2N0YXZlcz0iMTAiLz48ZmVDb2xvck1hdHJpeCB2YWx1ZXM9IjAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDEgMCIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNhKSIgb3BhY2l0eT0iMSIvPjwvc3ZnPg==');
            animation: static 0.2s steps(10) infinite;
        }
        
        /* Header */
        header {
            position: relative;
            z-index: 10;
            background: linear-gradient(135deg, var(--anarchy-black) 0%, var(--grunge-gray) 100%);
            border-bottom: 3px solid var(--blood-red);
            padding: 20px;
            text-align: center;
        }
        
        .logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(3rem, 8vw, 6rem);
            letter-spacing: 0.1em;
            color: var(--riot-white);
            text-shadow: 
                3px 3px 0 var(--blood-red),
                6px 6px 0 var(--grunge-gray),
                9px 9px 20px rgba(220, 20, 60, 0.5);
            animation: glitch 2s infinite;
            cursor: pointer;
            display: inline-block;
        }
        
        .logo:hover {
            transform: scale(1.05) rotate(-2deg);
            transition: all 0.3s;
        }
        
        .tagline {
            font-family: 'Courier Prime', monospace;
            color: var(--warning-yellow);
            font-size: 1.2rem;
            margin-top: 10px;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            background: var(--anarchy-black);
            padding: 5px 15px;
            display: inline-block;
            transform: rotate(-1deg);
        }
        
        /* Navigation */
        nav {
            background: var(--blood-red);
            padding: 15px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 5px 20px rgba(0,0,0,0.8);
        }
        
        .nav-items {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .nav-item {
            background: var(--anarchy-black);
            color: var(--riot-white);
            padding: 10px 20px;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 0.1em;
            transform: skew(-10deg);
            transition: all 0.3s;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .nav-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--warning-yellow);
            transition: left 0.3s;
            z-index: -1;
        }
        
        .nav-item:hover {
            color: var(--anarchy-black);
            border-color: var(--warning-yellow);
            transform: skew(-10deg) scale(1.1);
        }
        
        .nav-item:hover:before {
            left: 0;
        }
        
        /* Main Content */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
            position: relative;
            z-index: 5;
        }
        
        /* Hero Section */
        .hero {
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(45deg, transparent 30%, rgba(220, 20, 60, 0.1) 50%, transparent 70%);
            margin-bottom: 60px;
            position: relative;
        }
        
        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-family: 'Bebas Neue', sans-serif;
            color: var(--riot-white);
            text-shadow: 2px 2px 0 var(--blood-red);
            margin-bottom: 20px;
            transform: rotate(-2deg);
            display: inline-block;
        }
        
        .hero-text {
            font-size: 1.3rem;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
            background: rgba(42, 42, 42, 0.8);
            padding: 20px;
            border-left: 5px solid var(--blood-red);
            transform: rotate(1deg);
        }
        
        /* Concept Cards */
        .concepts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .concept-card {
            background: var(--grunge-gray);
            border: 3px solid var(--blood-red);
            padding: 25px;
            position: relative;
            transform: rotate(-1deg);
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .concept-card:nth-child(even) {
            transform: rotate(1deg);
        }
        
        .concept-card:hover {
            transform: rotate(0deg) scale(1.05);
            box-shadow: 0 10px 30px rgba(220, 20, 60, 0.5);
            z-index: 10;
        }
        
        .concept-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            color: var(--warning-yellow);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        
        .concept-content {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--riot-white);
        }
        
        .concept-tag {
            position: absolute;
            top: -15px;
            right: 20px;
            background: var(--blood-red);
            color: var(--riot-white);
            padding: 5px 15px;
            font-weight: 700;
            text-transform: uppercase;
            transform: rotate(5deg);
            font-size: 0.9rem;
        }
        
        /* Questions Section */
        .questions-section {
            background: linear-gradient(135deg, var(--grunge-gray) 0%, var(--anarchy-black) 100%);
            padding: 60px 40px;
            margin: 60px -20px;
            position: relative;
            overflow: hidden;
        }
        
        .questions-section:before {
            content: "?";
            position: absolute;
            font-size: 20rem;
            color: rgba(220, 20, 60, 0.1);
            top: -100px;
            right: -50px;
            transform: rotate(-15deg);
            font-family: 'Bebas Neue', sans-serif;
        }
        
        .question-item {
            background: rgba(10, 10, 10, 0.8);
            border-left: 5px solid var(--warning-yellow);
            padding: 20px;
            margin-bottom: 20px;
            font-size: 1.2rem;
            position: relative;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .question-item:hover {
            transform: translateX(10px);
            border-left-width: 10px;
            background: rgba(220, 20, 60, 0.1);
        }
        
        .question-number {
            position: absolute;
            left: -40px;
            top: 50%;
            transform: translateY(-50%);
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            color: var(--blood-red);
            opacity: 0.5;
        }
        
        /* Tooltip System */
        .tooltip {
            position: relative;
            color: var(--warning-yellow);
            border-bottom: 2px dotted var(--warning-yellow);
            cursor: help;
            display: inline-block;
        }
        
        .tooltip-text {
            visibility: hidden;
            width: 250px;
            background-color: var(--blood-red);
            color: var(--riot-white);
            text-align: left;
            padding: 10px;
            position: absolute;
            z-index: 1000;
            bottom: 125%;
            left: 50%;
            margin-left: -125px;
            opacity: 0;
            transition: opacity 0.3s;
            font-size: 0.9rem;
            border: 2px solid var(--warning-yellow);
            box-shadow: 0 5px 20px rgba(0,0,0,0.8);
        }
        
        .tooltip:hover .tooltip-text {
            visibility: visible;
            opacity: 1;
        }
        
        /* History Section */
        .history-section {
            margin: 60px 0;
        }
        
        .history-card {
            background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(42, 42, 42, 0.8) 100%);
            padding: 30px;
            margin-bottom: 30px;
            border: 2px solid var(--blood-red);
            position: relative;
            transform: perspective(1000px) rotateY(-2deg);
            transition: all 0.3s;
        }
        
        .history-card:hover {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .history-date {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            color: var(--blood-red);
            margin-bottom: 10px;
        }
        
        .history-event {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--warning-yellow);
            margin-bottom: 15px;
        }
        
        .history-lesson {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--riot-white);
            font-style: italic;
        }
        
        /* Call to Action */
        .cta-section {
            text-align: center;
            padding: 80px 20px;
            background: var(--blood-red);
            margin: 60px -20px;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section:before {
            content: "!";
            position: absolute;
            font-size: 30rem;
            color: rgba(0, 0, 0, 0.1);
            top: -150px;
            left: 50%;
            transform: translateX(-50%) rotate(-10deg);
            font-family: 'Bebas Neue', sans-serif;
        }
        
        .cta-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4rem);
            color: var(--riot-white);
            text-shadow: 3px 3px 0 var(--anarchy-black);
            margin-bottom: 30px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .cta-button {
            background: var(--anarchy-black);
            color: var(--warning-yellow);
            padding: 15px 40px;
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border: 3px solid var(--warning-yellow);
            transform: skew(-10deg);
            transition: all 0.3s;
            display: inline-block;
        }
        
        .cta-button:hover {
            background: var(--warning-yellow);
            color: var(--anarchy-black);
            transform: skew(-10deg) scale(1.1);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
        }
        
        /* Philosophers Section */
        .thinkers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 60px 0;
        }
        
        .thinker-card {
            background: var(--grunge-gray);
            padding: 20px;
            border-top: 5px solid var(--blood-red);
            transform: rotate(-1deg);
            transition: all 0.3s;
        }
        
        .thinker-card:nth-child(odd) {
            transform: rotate(1deg);
        }
        
        .thinker-card:hover {
            transform: rotate(0deg) translateY(-5px);
            box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
        }
        
        .thinker-name {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            color: var(--warning-yellow);
            margin-bottom: 10px;
        }
        
        .thinker-quote {
            font-style: italic;
            color: var(--riot-white);
            line-height: 1.5;
            border-left: 3px solid var(--blood-red);
            padding-left: 15px;
        }
        
        /* Interactive Elements */
        .debate-box {
            background: var(--grunge-gray);
            padding: 30px;
            margin: 40px 0;
            border: 3px solid var(--blood-red);
            position: relative;
        }
        
        .debate-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            color: var(--warning-yellow);
            text-align: center;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .debate-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }
        
        .debate-option {
            background: var(--anarchy-black);
            padding: 20px;
            border: 2px solid var(--warning-yellow);
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            font-size: 1.1rem;
        }
        
        .debate-option:hover {
            background: var(--warning-yellow);
            color: var(--anarchy-black);
            transform: scale(1.05);
        }
        
        /* Visitor Counter */
        .counter-section {
            background: var(--grunge-gray);
            border: 3px solid var(--blood-red);
            padding: 30px;
            margin: 60px auto;
            max-width: 600px;
            text-align: center;
            transform: rotate(-1deg);
            position: relative;
        }
        
        .counter-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            color: var(--warning-yellow);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.2em;
        }
        
        .counter-display {
            font-family: 'Courier Prime', monospace;
            font-size: 3rem;
            color: var(--blood-red);
            text-shadow: 2px 2px 0 var(--anarchy-black);
            margin: 20px 0;
            display: inline-block;
            padding: 10px 30px;
            background: var(--anarchy-black);
            border: 2px solid var(--warning-yellow);
            transform: skew(-5deg);
        }
        
        .counter-message {
            font-size: 1.1rem;
            color: var(--riot-white);
            margin-top: 20px;
            line-height: 1.5;
        }
        
        .counter-privacy {
            font-size: 0.9rem;
            color: var(--warning-yellow);
            margin-top: 15px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        
        /* Footer */
        footer {
            background: var(--anarchy-black);
            border-top: 5px solid var(--blood-red);
            padding: 40px 20px;
            text-align: center;
            margin-top: 100px;
        }
        
        .footer-message {
            font-family: 'Courier Prime', monospace;
            font-size: 1.2rem;
            color: var(--warning-yellow);
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 20px;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .footer-link {
            color: var(--riot-white);
            text-decoration: none;
            font-size: 1.1rem;
            padding: 10px;
            border: 2px solid transparent;
            transition: all 0.3s;
        }
        
        .footer-link:hover {
            border-color: var(--blood-red);
            color: var(--blood-red);
            transform: rotate(-5deg);
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-items {
                flex-direction: column;
                align-items: center;
            }
            
            .concepts-grid {
                grid-template-columns: 1fr;
            }
            
            .debate-options {
                grid-template-columns: 1fr;
            }
            
            .question-number {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        
        /* Graffiti Text Effect */
        .graffiti {
            font-family: 'Bebas Neue', sans-serif;
            background: linear-gradient(45deg, var(--blood-red), var(--warning-yellow), var(--blood-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        
        /* Warning Banner */
        .warning-banner {
            background: repeating-linear-gradient(
                45deg,
                var(--warning-yellow),
                var(--warning-yellow) 10px,
                var(--anarchy-black) 10px,
                var(--anarchy-black) 20px
            );
            padding: 15px;
            text-align: center;
            font-weight: 700;
            font-size: 2rem;
            color: var(--anarchy-black);
            text-transform: uppercase;
            letter-spacing: 0.2em;
        }

        /* ===========================================
           ACCESSIBILITY SYSTEM STYLES
           ========================================== */

        /* Accessibility Menu Styles */
        .accessibility-menu {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 10000;
        }

        .accessibility-trigger {
            background: var(--blood-red);
            border: 2px solid var(--warning-yellow);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
            transition: all 0.3s ease;
        }

        .accessibility-trigger:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(220, 20, 60, 0.5);
        }

        .accessibility-trigger img {
            width: 30px;
            height: 30px;
            filter: brightness(0) invert(1);
        }

        .accessibility-panel {
            position: absolute;
            top: 70px;
            right: 0;
            width: 280px;
            background: #1a1a1a;
            border: 2px solid var(--warning-yellow);
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
            display: none;
            max-height: 70vh;
            overflow-y: auto;
            overflow-x: hidden;
        }

        .accessibility-panel::-webkit-scrollbar {
            width: 8px;
        }

        .accessibility-panel::-webkit-scrollbar-track {
            background: #2a2a2a;
            border-radius: 4px;
        }

        .accessibility-panel::-webkit-scrollbar-thumb {
            background: var(--warning-yellow);
            border-radius: 4px;
        }

        .accessibility-panel::-webkit-scrollbar-thumb:hover {
            background: var(--blood-red);
        }

        .accessibility-panel.open {
            display: block;
        }

        .accessibility-header {
            background: var(--blood-red);
            color: white;
            padding: 15px;
            border-radius: 6px 6px 0 0;
            font-weight: bold;
            text-align: center;
            font-size: 16px;
        }

        .accessibility-section {
            padding: 12px;
            border-bottom: 1px solid #333;
        }

        .accessibility-section:last-child {
            border-bottom: none;
        }

        .accessibility-section h3 {
            color: var(--warning-yellow);
            margin: 0 0 10px 0;
            font-size: 14px;
            text-transform: uppercase;
            font-weight: bold;
        }

        .accessibility-controls {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .accessibility-btn {
            background: #333;
            color: white;
            border: 1px solid #555;
            padding: 6px 10px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 11px;
            transition: all 0.3s;
            flex: 1;
            min-width: 80px;
            text-align: center;
        }

        .accessibility-btn:hover {
            background: var(--warning-yellow);
            color: #1a1a1a;
        }

        .accessibility-btn.active {
            background: var(--blood-red);
            color: white;
            border-color: var(--warning-yellow);
        }

        .accessibility-info {
            color: #ccc;
            font-size: 11px;
            margin-top: 5px;
            text-align: center;
        }

        /* Page Structure Modal */
        .page-structure-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 10001;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .page-structure-modal.open {
            display: flex;
        }

        .page-structure-content {
            background: #1a1a1a;
            border: 3px solid var(--warning-yellow);
            border-radius: 8px;
            width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }

        .page-structure-header {
            background: var(--blood-red);
            color: white;
            padding: 20px;
            border-radius: 5px 5px 0 0;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
            position: relative;
        }

        .page-structure-close {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        .page-structure-tabs {
            display: flex;
            background: #333;
        }

        .page-structure-tab {
            flex: 1;
            padding: 15px;
            background: #333;
            color: #ccc;
            border: none;
            cursor: pointer;
            font-size: 14px;
            font-weight: bold;
        }

        .page-structure-tab.active {
            background: var(--warning-yellow);
            color: #1a1a1a;
        }

        .page-structure-list {
            padding: 20px;
            max-height: 400px;
            overflow-y: auto;
        }

        .structure-item {
            padding: 10px 15px;
            border-bottom: 1px solid #333;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: background 0.2s;
        }

        .structure-item:hover {
            background: #333;
        }

        .structure-item-label {
            background: var(--blood-red);
            color: white;
            padding: 2px 8px;
            border-radius: 3px;
            font-size: 10px;
            font-weight: bold;
            min-width: 30px;
            text-align: center;
        }

        .structure-item-text {
            color: #ccc;
            flex: 1;
        }

        /* Accessibility States */
        body.high-contrast { 
            filter: contrast(200%); 
        }
        
        body.invert-colors { 
            filter: invert(1) hue-rotate(180deg); 
        }
        
        body.dark-contrast { 
            background: #000000 !important; 
            color: #ffffff !important; 
        }

        body.dark-contrast * {
            background-color: #000000 !important;
            color: #ffffff !important;
            border-color: #ffffff !important;
        }

        body.dark-contrast .concept-card,
        body.dark-contrast .accessibility-panel {
            background: #111111 !important;
            border-color: #ffffff !important;
        }

        body.dark-contrast .nav-item,
        body.dark-contrast .cta-button {
            background: #222222 !important;
            color: #ffffff !important;
        }

        body.highlight-links a { 
            background: yellow !important; 
            color: black !important; 
            padding: 2px 4px; 
            border-radius: 2px; 
        }
        
        body.big-text { 
            font-size: 1.2em; 
        }
        
        body.big-text * { 
            font-size: inherit !important; 
        }

        body.bigger-text { 
            font-size: 1.4em; 
        }
        
        body.bigger-text * { 
            font-size: inherit !important; 
        }

        body.huge-text { 
            font-size: 1.6em; 
        }
        
        body.huge-text * { 
            font-size: inherit !important; 
        }

        body.wide-spacing * { 
            letter-spacing: 2px !important; 
            word-spacing: 4px !important; 
        }

        body.no-animations .logo { 
            animation: none !important; 
        }
        
        body.no-animations .graffiti { 
            animation: none !important; 
        }
        
        body.no-animations .noise-overlay { 
            animation: none !important; 
        }
        
        body.no-animations .warning-banner { 
            animation: none !important; 
        }

        /* Keep essential hover effects for usability even when animations are paused */
        body.no-animations .nav-item:hover,
        body.no-animations .concept-card:hover,
        body.no-animations .cta-button:hover { 
            transition: background-color 0.1s ease !important; 
        }

        body.hide-images img { 
            display: none !important; 
        }
        
        body.large-cursor * { 
            cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><polygon fill="red" points="0,0 0,20 8,16 12,24 16,22 12,14 20,14"/></svg>'), auto !important; 
        }
        
        body.dyslexia-friendly { 
            font-family: 'Comic Sans MS', cursive !important; 
            line-height: 1.8 !important; 
        }
        
        body.loose-line-height { 
            line-height: 2 !important; 
        }
        
        body.desaturate { 
            filter: saturate(0%); 
        }
        
        body.low-saturation { 
            filter: saturate(50%); 
        }
        
        body.high-saturation { 
            filter: saturate(150%); 
        }

        /* Reading Guide with cursor-following upward arrow */
        .reading-guide {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent 0%, var(--blood-red) 20%, var(--warning-yellow) 50%, var(--blood-red) 80%, transparent 100%);
            z-index: 1000;
            display: none;
            box-shadow: 0 0 15px rgba(220, 20, 60, 0.8);
            --arrow-position: 50%;
            pointer-events: none;
        }

        .reading-guide::after {
            content: '';
            position: absolute;
            left: var(--arrow-position, 50%);
            top: -12px;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 12px solid var(--warning-yellow);
            filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
            transition: left 0.05s ease;
            pointer-events: none;
        }

        body.reading-guide-active .reading-guide { 
            display: block; 
        }

        /* Reduce hover effect conflicts when reading guide is active */
        body.reading-guide-active .concept-card {
            transition: transform 0.1s ease !important;
        }

        body.reading-guide-active .concept-card:hover {
            transition-delay: 0.1s;
        }

        /* Reading Mask - improved with clear viewing area */
        .reading-mask {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent;
            z-index: 1001;
            display: none;
            pointer-events: none;
        }

        .reading-mask-window {
            position: absolute;
            background: rgba(255, 255, 255, 0.01);
            height: 80px;
            width: 100%;
            top: 50%;
            box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.8);
            pointer-events: none;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        body.reading-mask-active .reading-mask { 
            display: block; 
        }