        /* --- RESOURCE MODAL --- */
        .resource-modal-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            min-height: 100%;
            background: #ffffff;
            z-index: 9998;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 5px 0 150px 0;
            /* Extra bottom padding for close button */
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            /* Smooth scroll on mobile */
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .resource-modal-overlay.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .resource-modal-content {
            width: 90%;
            max-width: 900px;
            background: #fff;
            padding: 0;
            /* Let children handle padding */
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .resource-modal-inner {
            border: 5px solid #000;
            padding: 60px;
            background: #fff;
            max-height: 70vh;
            overflow-y: auto;
        }

        .resource-modal-close {
            margin-top: 5px;
            /* Exact user request */
            font-size: 1.5rem;
            font-family: sans-serif;
            font-weight: 900;
            cursor: pointer;
            background: #000;
            color: #fff;
            padding: 20px 60px;
            /* MUCH LARGER */
            display: flex;
            align-items: center;
            justify-content: center;
            text-transform: uppercase;
            border: none;
            align-self: center;
            /* Center horizontally below modal */
            transition: transform 0.2s;
        }

        .resource-modal-close:hover {
            transform: scale(1.05);
        }

        .resource-link-item {
            display: block;
            padding: 30px;
            border: 5px solid #000;
            margin-bottom: 20px;
            text-decoration: none;
            color: #000;
            transition: all 0.2s;
        }

        .resource-link-item:hover {
            background: #000;
            color: #fff;
            transform: translateX(10px);
        }

        .resource-link-label {
            display: block;
            font-size: 1.8rem;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 5px;
        }

        .resource-link-subtitle {
            display: block;
            font-size: 1rem;
            font-weight: bold;
            opacity: 0.6;
        }


        /* --- ABOUT RECORD EXACT STYLES --- */
        .about-container {
            width: 100%;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            background: transparent;
            padding-top: 0px;
        }

        /* Unified main-canvas styling (moved to top) */

        .about-content {
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 800px;
            width: 90%;
            pointer-events: auto;
        }

        .about-main-logo {
            height: 300px;
            margin-bottom: 20px;
            user-select: none;
            transition: filter 0.3s ease;
        }

        .about-text-box {
            position: relative;
            /* Anchor for arrows */
            background-color: #ffffff;
            border: 5px solid #000000;
            padding: 40px;
            width: 100%;
            text-align: center;
            box-sizing: border-box;
        }

        .about-title {
            font-size: 2.2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 0;
            margin-bottom: 20px;
            border-bottom: 5px solid #000000;
            padding-bottom: 10px;
            font-weight: 900;
            font-family: var(--font-primary);
        }

        .about-body {
            line-height: 1.6;
            font-size: 1.15rem;
            font-weight: 600;
            color: #000;
            text-align: center;
        }

        .record-navigation {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            width: 100%;
        }

        .record-nav-btn {
            width: 40px;
            height: 40px;
            background: #000 !important;
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 1.2rem;
            font-weight: 900;
            border-radius: 0;
        }

        .record-nav-btn:hover {
            background: #333 !important;
            transform: scale(1.1);
        }

        .record-indicator {
            display: flex;
            gap: 10px;
            margin-top: 0 !important;
        }

        .record-nav-btn.disabled {
            opacity: 0;
            pointer-events: none;
        }

        /* Reading Tints */
        body.tint-warm::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 140, 0, 0.08);
            pointer-events: none;
            z-index: 100000;
        }

        body.tint-cool::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 100, 255, 0.06);
            pointer-events: none;
            z-index: 100000;
        }

        /* Settings UI Overhaul */
        .settings-toggle {
            width: 60px;
            height: 34px;
            background: #e0e0e0;
            border: 4px solid #000;
            border-radius: 20px;
            position: relative;
            transition: background 0.3s;
            box-sizing: border-box;
        }

        .settings-toggle.on {
            background: #000000;
        }

        .settings-toggle.on::after {
            left: 32px;
            background: #ffffff;
        }

        .settings-toggle::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 4px;
            width: 20px;
            height: 20px;
            background: #fff;
            border-radius: 50%;
            transition: left 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .tint-btn {
            padding: 10px 20px;
            border: 4px solid #000;
            background: #fff;
            font-weight: 900;
            cursor: pointer;
            transition: all 0.2s;
            text-transform: uppercase;
        }

        .tint-btn.active {
            background: #000;
            color: #fff;
        }

        .dot {
            width: 12px;
            height: 12px;
            border: 3px solid #000;
            border-radius: 50%;
            transition: all 0.3s ease;
            background: transparent;
        }

        .dot.active {
            background: #000;
            transform: scale(1.3);
        }

        /* --- ALTERNATING BODY SECTIONS & FOOTER --- */
        .body-sections {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 60px;
            padding: 0 40px;
            /* Increased padding slightly for better air */
            margin-top: 80px;
            pointer-events: auto;
            box-sizing: border-box;
        }

        .alt-row {
            display: flex;
            align-items: center;
            gap: 40px;
            width: 100%;
            box-sizing: border-box;
        }

        .alt-row.reverse {
            flex-direction: row-reverse;
        }

        .alt-image {
            flex: 1;
        }

        .alt-image img {
            width: 100%;
            height: auto;
            border: 5px solid var(--black);
            display: block;
        }

        .alt-text {
            flex: 1;
        }

        .alt-text h3 {
            font-family: var(--font-primary);
            font-size: 2rem;
            margin: 0 0 15px 0;
            text-transform: uppercase;
        }

        .alt-text p {
            font-size: 1.2rem;
            line-height: 1.5;
            font-weight: bold;
            margin: 0;
        }

        .footer-section {
            width: 100%;
            border-top: 5px solid var(--black);
            padding: 40px 20px;
            /* Added side padding and box-sizing */
            margin-top: 80px;
            margin-bottom: 50px;
            pointer-events: auto;
            box-sizing: border-box;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-col h4 {
            font-family: var(--font-primary);
            font-size: 1.2rem;
            text-transform: uppercase;
            margin: 0 0 15px 0;
        }

        .footer-col p {
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
            font-weight: bold;
        }

        .footer-col a {
            color: var(--black);
            text-decoration: none;
        }

        .footer-col a:hover {
            text-decoration: underline;
        }

        /* --- MOBILE RESPONSIVENESS --- */
        @media (max-width: 768px) {
            :root {
                --shelf-width: 0px;
            }

            .zl-banner {
                padding: 15px 10px;
                /* Keep similar to desktop but slightly tighter */
                gap: 15px;
                min-height: auto;
            }

            /* This is where you edit the banner content scaling */
            .banner-logo {
                width: 200px !important;
                /* Constant size on mobile */
                height: auto;
                transform: scale(0.9);
                /* Slightly smaller */
            }

            .banner-nav {
                flex-wrap: nowrap;
                /* Prevent wrapping */
                justify-content: center;
                gap: 5px;
                width: 100%;
                transform: scale(0.85);
                /* Scale the whole nav row slightly */
            }

            .banner-btn {
                padding: 6px 8px;
                font-size: 0.85rem;
                white-space: nowrap;
                /* Keep text on one line */
            }

            .settings-btn {
                position: fixed;
                top: 10px;
                right: 10px;
                bottom: auto;
                left: auto;
                width: 32px;
                height: 32px;
                padding: 5px;
                border-width: 3px;
                transform: none;
                /* Don't scale the button itself too much */
            }

            #settings-modal {
                width: 100%;
                right: -100%;
            }

            #settings-modal.active {
                right: 0;
            }

            .settings-header {
                padding: 20px;
            }

            .settings-content {
                padding: 20px;
            }

            /* Fix large titles on mobile */
            h1 {
                font-size: 2.2rem !important;
                /* Scale down main titles */
                line-height: 1.1;
                word-wrap: break-word;
            }

            h2 {
                font-size: 1.8rem !important;
            }

            #care-title,
            #help-title,
            #contact-title,
            #blog-title {
                font-size: 2.5rem !important;
                /* Specific page titles */
            }

            .main-canvas {
                padding-top: 10px;
            }

            .about-main-logo {
                height: 200px;
            }

            .about-title {
                font-size: 1.5rem;
            }

            .about-body {
                font-size: 0.95rem;
            }

            .alt-row {
                flex-direction: column !important;
                text-align: center;
                gap: 20px;
            }

            .alt-image img {
                width: 100%;
                max-width: 100%;
            }

            /* Fix blog posts for mobile */
            .blog-layout {
                grid-template-columns: 1fr !important;
                gap: 20px !important;
            }

            #blog-posts-main {
                width: 100% !important;
            }

            /* Target the blog post cards injected by JS */
            #blog-posts-main>div {
                grid-template-columns: 1fr !important;
                /* Stack text and image */
                transform: none !important;
                /* Disable hover movement */
                width: 100% !important;
                box-sizing: border-box !important;
            }

            #blog-posts-main>div>div:first-child {
                border-right: none !important;
                border-bottom: 5px solid #000;
                padding: 20px !important;
            }

            #blog-posts-main>div>div:last-child {
                aspect-ratio: 16/9 !important;
                width: 100% !important;
                height: auto !important;
            }

            #blog-posts-main h2 {
                font-size: 1.5rem !important;
            }

            #blog-posts-main p {
                font-size: 1rem !important;
            }

            .blog-sidebar {
                order: 2;
            }

            /* Fix resource cards for mobile */
            #care-grid {
                grid-template-columns: 1fr !important;
            }

            .resource-modal-inner {
                padding: 30px !important;
            }

            #care-modal-title {
                font-size: 1.8rem !important;
            }
        }