        /* inter-regular - latin */
        @font-face {
            font-display: swap;
            font-family: 'Inter';
            font-style: normal;
            font-weight: 400;
            src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
        }

        /* inter-700 - latin */
        @font-face {
            font-display: swap;
            font-family: 'Inter';
            font-style: normal;
            font-weight: 700;
            src: url('../fonts/inter-v20-latin-700.woff2') format('woff2');
        }

        :root {
            --bg: #060814;
            --card: rgba(255, 255, 255, 0.03);
            --border: rgba(113, 175, 184, 0.22);
            --text: rgba(245, 245, 245, 0.92);
            --muted: rgba(245, 245, 245, 0.68);
            --cyan: rgba(113, 175, 184, 0.78);
            --gold: #FFC94D;
            --shadow: 0 14px 40px rgba(0, 0, 0, 0.38);
        }

        * {
            box-sizing: border-box;
        }

        html,
        body {
            height: 100%;
        }

        html {
            /* Prevent "hard cut" while scrolling by anchoring the background to the viewport */
            background:
                radial-gradient(1000px 500px at 20% 0%, rgba(113, 175, 184, 0.10), transparent 60%),
                radial-gradient(900px 600px at 90% 10%, rgba(255, 201, 77, 0.10), transparent 60%),
                linear-gradient(180deg, rgba(113, 175, 184, 0.04) 0%, rgba(6, 8, 20, 1) 70%),
                var(--bg);
            background-repeat: no-repeat;
            background-attachment: fixed, fixed, fixed, fixed;
        }

        body {
            margin: 0;
            font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
            font-size: 16px;
            background: transparent;
            color: var(--text);
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding: 10px 18px 60px;
        }

        a {
            color: inherit;
        }

        .skip-link {
            position: absolute;
            left: -999px;
            top: 10px;
            background: var(--gold);
            color: #060814;
            padding: 10px 14px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            z-index: 999;
        }

        .skip-link:focus {
            left: 12px;
        }

        .wrap {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            gap: 22px;
        }

        .content {
            display: grid;
            gap: 22px;
        }

        /* Top bar */
        .topbar {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 12px;
            padding: 10px 12px;
            border: 1px solid rgba(113, 175, 184, 0.18);
            background: rgba(255, 255, 255, 0.02);
            border-radius: 14px;
            box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
        }

        .brand-mark {
            width: 12px;
            height: 12px;
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(255, 201, 77, 1), rgba(113, 175, 184, 0.9));
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.03);
            flex: 0 0 auto;
        }

        .brand-name {
            font-weight: 700;
            letter-spacing: -0.4px;
            color: rgba(245, 245, 245, 0.92);
            line-height: 1.25;
        }

        .brand-sub {
            font-size: 0.85rem;
            color: var(--cyan);
            line-height: 1.4;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-link {
            padding: 8px 14px;
            border-radius: 10px;
            font-weight: 700;
            color: rgba(245, 245, 245, 0.85);
            text-decoration: none;
            transition: background 0.18s ease, color 0.18s ease;
        }

        .nav-link:hover {
            background: rgba(113, 175, 184, 0.14);
            color: var(--text);
        }

        .nav-link--active {
            background: rgba(113, 175, 184, 0.18);
            color: var(--text);
        }

        .lang-toggle {
            justify-self: end;
            display: inline-flex;
            gap: 8px;
            padding: 4px;
            border-radius: 12px;
            border: 1px solid rgba(113, 175, 184, 0.25);
            background: rgba(113, 175, 184, 0.10);
            flex: 0 0 auto;
        }

        .lang-btn {
            appearance: none;
            border: 0;
            cursor: pointer;
            border-radius: 10px;
            padding: 10px 14px;
            font-weight: 700;
            color: rgba(245, 245, 245, 0.88);
            background: transparent;
            transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
            min-width: 44px;
            min-height: 44px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .lang-btn:hover {
            transform: translateY(-1px);
            background: rgba(113, 175, 184, 0.14);
        }

        .lang-btn:focus-visible {
            outline: 3px solid var(--gold);
            outline-offset: 3px;
        }

        .lang-btn[aria-current="page"] {
            color: #060814;
            background: linear-gradient(135deg, var(--gold), #ffb700);
        }

        /* Hero */
        .hero {
            display: grid;
            grid-template-columns: minmax(200px, 300px) 1fr;
            gap: 26px;
            align-items: center;
            padding: 18px;
            border-radius: 18px;
            border: 1px solid rgba(113, 175, 184, 0.18);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
            box-shadow: var(--shadow);
        }

        .hero-media {
            display: flex;
            justify-content: flex-start;
        }

        .cover-zoom {
            position: relative;
            display: inline-block;
            width: 100%;
            max-width: 300px;
            border-radius: 14px;
            overflow: hidden;
            cursor: zoom-in;
            box-shadow: 0 16px 46px rgba(0, 0, 0, 0.58);
            transform: translateY(0);
            transition: transform 0.28s ease, box-shadow 0.28s ease;
            text-decoration: none;
        }

        .cover-zoom:hover {
            transform: translateY(-4px);
            box-shadow: 0 22px 64px rgba(0, 0, 0, 0.68);
        }

        .cover-zoom:focus-visible {
            outline: 3px solid var(--gold);
            outline-offset: 4px;
        }

        .hero-cover {
            width: 100%;
            max-width: 300px;
            border-radius: 14px;
            box-shadow: 0 16px 46px rgba(0, 0, 0, 0.58);
            transform: translateY(0);
            transition: transform 0.28s ease, box-shadow 0.28s ease;
            display: block;
        }

        .hero-cover:hover {
            transform: translateY(-4px);
            box-shadow: 0 22px 64px rgba(0, 0, 0, 0.68);
        }

        .cover-zoom--gallery::after {
            content: '🔍';
            position: absolute;
            right: 10px;
            bottom: 10px;
            width: 36px;
            height: 36px;
            display: grid;
            place-items: center;
            background: rgba(0, 0, 0, 0.55);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 999px;
            opacity: 0;
            transform: translateY(4px);
            transition: opacity 0.2s ease, transform 0.2s ease;
        }

        .cover-zoom--gallery:hover::after {
            opacity: 1;
            transform: translateY(0);
        }

        .cover {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 14px;
            transition: transform 0.35s ease;
            transform-origin: center;
        }

        .cover-zoom--gallery:hover .cover {
            transform: scale(1.03);
        }

        .hero-kicker {
            font-size: 0.85rem;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            color: var(--cyan);
            margin: 0 0 10px;
        }

        h1 {
            margin: 0 0 10px;
            font-size: clamp(1.8rem, 2.6vw, 2.6rem);
            letter-spacing: -1.2px;
            line-height: 1.15;
            background: linear-gradient(135deg, rgba(245, 245, 245, 0.98), rgba(113, 175, 184, 0.8));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-lead {
            margin: 0 0 14px;
            color: rgba(245, 245, 245, 0.86);
            font-size: 1.12rem;
            max-width: 60ch;
        }

        .pill-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 10px 0 18px;
        }

        .pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 12px;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 700;
            background: linear-gradient(135deg, rgba(255, 201, 77, 0.14), rgba(113, 175, 184, 0.10));
            border: 1px solid rgba(113, 175, 184, 0.22);
            color: rgba(245, 245, 245, 0.9);
        }

        .cta-stack {
            display: grid;
            gap: 12px;
            align-items: start;
            margin-top: 6px;
        }

        .cta-subrow {
            margin-top: 10px;
        }

        .cta-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
            font-weight: 800;
            letter-spacing: 0.2px;
            padding: 16px 22px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--gold), #ffb700);
            color: #060814;
            box-shadow: 0 14px 34px rgba(255, 201, 77, 0.35), 0 8px 22px rgba(0, 0, 0, 0.25);
            min-height: 52px;
            width: fit-content;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 42px rgba(255, 201, 77, 0.42), 0 10px 28px rgba(0, 0, 0, 0.32);
        }

        .cta-primary:focus-visible {
            outline: 3px solid rgba(255, 201, 77, 0.9);
            outline-offset: 4px;
        }

        .cta-primary .arrow {
            transition: transform 0.2s ease;
        }

        .cta-primary:hover .arrow {
            transform: translateX(3px);
        }

        .cta-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
            font-weight: 800;
            letter-spacing: 0.2px;
            padding: 16px 22px;
            border-radius: 999px;
            border: 1px solid rgba(113, 175, 184, 0.35);
            background: rgba(255, 255, 255, 0.03);
            color: rgba(245, 245, 245, 0.92);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
            min-height: 52px;
            width: fit-content;
            transition: all 0.2s ease;
        }

        .cta-secondary:hover {
            transform: translateY(-2px);
            background: rgba(113, 175, 184, 0.12);
            border-color: rgba(113, 175, 184, 0.6);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
        }

        .cta-secondary:focus-visible {
            outline: 3px solid var(--cyan);
            outline-offset: 4px;
        }

        .cta-secondary .arrow {
            transition: transform 0.2s ease;
        }

        .cta-secondary:hover .arrow {
            transform: translateX(3px);
        }


        .cta-muted {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 18px;
            border-radius: 999px;
            border: 1px solid rgba(113, 175, 184, 0.25);
            background: rgba(255, 255, 255, 0.03);
            color: rgba(245, 245, 245, 0.70);
            font-weight: 800;
            text-decoration: none;
            min-height: 52px;
            width: fit-content;
            cursor: not-allowed;
            user-select: none;
        }

        .retail-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }

        .retail-label {
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            color: rgba(113, 175, 184, 0.78);
            margin-right: 2px;
        }

        .chip {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 9px 12px;
            border-radius: 999px;
            border: 1px solid rgba(113, 175, 184, 0.22);
            background: rgba(255, 255, 255, 0.02);
            color: rgba(245, 245, 245, 0.88);
            text-decoration: none;
            font-weight: 800;
            font-size: 0.92rem;
            transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
        }

        .chip:hover {
            transform: translateY(-1px);
            background: rgba(113, 175, 184, 0.12);
            border-color: rgba(255, 201, 77, 0.35);
        }

        .chip:focus-visible {
            outline: 3px solid var(--gold);
            outline-offset: 3px;
        }

        .hero-meta {
            margin-top: 10px;
            padding-top: 12px;
            border-top: 1px solid rgba(113, 175, 184, 0.18);
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            color: rgba(245, 245, 245, 0.74);
            font-weight: 600;
        }

        .hero-meta strong {
            color: var(--gold);
            font-weight: 800;
            letter-spacing: 0.3px;
        }

        /* Sections */
        .section {
            padding: 22px;
            border-radius: 18px;
            border: 1px solid rgba(113, 175, 184, 0.18);
            background: rgba(255, 255, 255, 0.02);
            box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
        }

        .section h2 {
            margin: 0 0 10px;
            font-size: 1.45rem;
            letter-spacing: -0.4px;
        }

        .section p {
            margin: 0 0 12px;
            color: rgba(245, 245, 245, 0.84);
            font-size: 1.05rem;
            line-height: 1.75;
        }

        .grid {
            display: grid;
            gap: 14px;
        }

        .grid.two {
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        }

        .card {
            padding: 18px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid rgba(113, 175, 184, 0.16);
        }

        .card h3 {
            margin: 0 0 8px;
            font-size: 1.1rem;
            color: rgba(255, 201, 77, 0.92);
            letter-spacing: -0.2px;
        }

        /* Consistent vertical rhythm for sub-headings inside cards */
        .card *+h3 {
            margin-top: 18px;
        }

        .card p {
            font-size: 1.05rem;
            color: rgba(245, 245, 245, 0.84);
            margin: 0 0 12px;
            line-height: 1.75;
        }

        .card ul {
            margin: 8px 0 0;
            padding-left: 18px;
            list-style-position: outside;
            color: rgba(245, 245, 245, 0.82);
        }

        .card li+li {
            margin-top: 6px;
        }

        .card li::marker {
            color: rgba(113, 175, 184, 0.85);
        }

        .covers {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 12px;
            margin-top: 12px;
        }

        .cover-card {
            padding: 10px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid rgba(113, 175, 184, 0.16);
        }

        .cover-card img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            display: block;
            box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
        }

        .cover-cap {
            margin-top: 8px;
            font-weight: 800;
            color: rgba(245, 245, 245, 0.9);
            font-size: 0.9rem;
        }

        /* Lightbox dialog for cover zoom */
        dialog#coverDialog {
            border: 0;
            padding: 0;
            border-radius: 16px;
            background: rgba(6, 8, 20, 0.96);
            box-shadow: 0 24px 90px rgba(0, 0, 0, 0.75);
            width: min(90vw, 820px);
        }

        dialog#coverDialog::backdrop {
            background: rgba(0, 0, 0, 0.65);
        }

        .dialog-inner {
            padding: 14px;
            border: 1px solid rgba(113, 175, 184, 0.22);
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.02);
        }

        .dialog-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            color: rgba(245, 245, 245, 0.9);
            font-weight: 800;
        }

        .dialog-close {
            appearance: none;
            border: 1px solid rgba(113, 175, 184, 0.22);
            background: rgba(255, 255, 255, 0.03);
            color: rgba(245, 245, 245, 0.9);
            border-radius: 999px;
            padding: 10px 12px;
            cursor: pointer;
            font-weight: 800;
            min-width: 44px;
            min-height: 44px;
        }

        .dialog-close:hover {
            background: rgba(113, 175, 184, 0.12);
        }

        .dialog-close:focus-visible {
            outline: 3px solid var(--gold);
            outline-offset: 3px;
        }

        .dialog-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            max-height: 78vh;
            object-fit: contain;
        }

        /* Footer */
        .footer {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: space-between;
            align-items: center;
            padding: 12px 14px;
            border-radius: 14px;
            border: 1px solid rgba(113, 175, 184, 0.18);
            background: rgba(255, 255, 255, 0.02);
        }

        .footer a {
            color: rgba(113, 175, 184, 0.85);
            text-decoration: none;
            font-weight: 700;
            padding: 8px 10px;
            border-radius: 999px;
            transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
        }

        .footer a:hover {
            background: rgba(113, 175, 184, 0.12);
            color: rgba(245, 245, 245, 0.92);
            transform: translateY(-1px);
        }

        @media (max-width: 900px) {
            .topbar {
                display: flex;
                justify-content: space-between;
            }

            .hero {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-media {
                justify-content: center;
            }

            .hero-meta {
                justify-content: center;
            }

            .cta-primary,
            .cta-muted {
                width: 100%;
                max-width: 420px;
                margin: 0 auto;
            }

            .retail-row {
                justify-content: center;
            }

            .brand-sub {
                display: none;
            }

            .grid.two {
                grid-template-columns: 1fr;
            }

            .covers {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .nav-links {
                display: none;
            }
        }

        @media (max-width: 520px) {
            body {
                padding: 20px 14px 54px;
            }

            body {
                font-size: 16px;
            }

            .topbar {
                align-items: flex-start;
            }

            .brand-name {
                max-width: 42vw;
            }

            .covers {
                grid-template-columns: 1fr;
            }

            .chip {
                width: auto;
            }
        }

        /* Avoid fixed-background jank on touch devices */
        @media (hover: none) {
            html {
                background-attachment: scroll, scroll, scroll, scroll;
            }
        }

        /* Homepage Specific Styles */
        .body-home {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .body-home .wrap {
            width: 100%;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .body-home .footer {
            margin-top: auto;
        }

        .hero-home {
            text-align: center;
            padding: 40px 20px 10px;
        }

        .hero-tagline {
            font-size: 0.85rem;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: var(--cyan);
            margin: 0 0 12px;
        }

        .hero-home h1 {
            margin: 0 0 16px;
            font-size: clamp(2rem, 4vw, 3rem);
            letter-spacing: -1.5px;
            line-height: 1.1;
            background: linear-gradient(135deg, rgba(245, 245, 245, 0.98), rgba(113, 175, 184, 0.8));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-desc {
            color: var(--muted);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .hero-home .hero-lead {
            margin-left: auto;
            margin-right: auto;
        }

        .book-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 22px;
            flex: 1;
        }

        .book-card {
            display: flex;
            flex-direction: column;
            padding: 24px;
            border-radius: 18px;
            border: 1px solid var(--border);
            background: var(--card);
            box-shadow: var(--shadow);
            transition: transform 0.28s ease, box-shadow 0.28s ease;
        }

        .book-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
        }

        .book-card--light {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
            border-color: rgba(113, 175, 184, 0.25);
        }

        .book-card--dark {
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
            border-color: rgba(113, 175, 184, 0.18);
        }

        .book-cover {
            width: 100%;
            max-width: 240px;
            margin: 0 auto 20px;
            border-radius: 12px;
            box-shadow: 0 16px 46px rgba(0, 0, 0, 0.58);
            transition: transform 0.28s ease;
        }

        .book-card:hover .book-cover {
            transform: scale(1.02);
        }

        .book-tag {
            font-size: 0.75rem;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            color: var(--cyan);
            margin: 0 0 8px;
            text-align: center;
        }

        .book-title {
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: -0.8px;
            margin: 0 0 8px;
            text-align: center;
            color: var(--text);
        }

        .book-subtitle {
            font-size: 0.95rem;
            color: var(--muted);
            margin: 0 0 12px;
            text-align: center;
            color: var(--muted);
        }

        .book-desc {
            font-size: 1rem;
            color: rgba(245, 245, 245, 0.78);
            text-align: center;
            margin: 0 0 20px;
            flex: 1;
        }

        .book-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none;
            font-weight: 800;
            letter-spacing: 0.2px;
            padding: 14px 20px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--gold), #ffb700);
            color: #060814;
            box-shadow: 0 10px 28px rgba(255, 201, 77, 0.30);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            align-self: center;
        }

        .book-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 36px rgba(255, 201, 77, 0.40);
        }

        .book-cta:focus-visible {
            outline: 3px solid rgba(255, 201, 77, 0.9);
            outline-offset: 4px;
        }

        .book-cta .arrow {
            transition: transform 0.2s ease;
        }

        .book-cta:hover .arrow {
            transform: translateX(3px);
        }

        .cta-sec.book-cta:hover .arrow {
            transform: translateX(3px);
        }

        @media (max-width: 520px) {
            .hero-home {
                padding: 24px 12px;
            }
        }

        /* Loop Page Specific Styles */
        html.page-loop {
            --bg: #000000;
            --card: rgba(255, 255, 255, 0.02);
            --border: rgba(113, 175, 184, 0.18);
            --shadow: 0 14px 40px rgba(0, 0, 0, 0.5);

            background:
                radial-gradient(1000px 500px at 20% 0%, rgba(113, 175, 184, 0.06), transparent 60%),
                radial-gradient(900px 600px at 90% 10%, rgba(113, 175, 184, 0.04), transparent 60%),
                linear-gradient(180deg, rgba(113, 175, 184, 0.02) 0%, rgba(0, 0, 0, 1) 70%),
                #000000;
            background-repeat: no-repeat;
            background-attachment: fixed, fixed, fixed, fixed;
        }

        @media (hover: none) {
            html.page-loop {
                background-attachment: scroll, scroll, scroll, scroll;
            }
        }

        .page-loop .topbar {
            border: 1px solid rgba(113, 175, 184, 0.15);
            background: rgba(255, 255, 255, 0.01);
            box-shadow: 0 8px 26px rgba(0, 0, 0, 0.4);
        }

        .page-loop .brand-mark {
            background: linear-gradient(135deg, rgba(113, 175, 184, 1), rgba(113, 175, 184, 0.6));
            box-shadow: 0 0 0 4px rgba(113, 175, 184, 0.1);
        }

        .page-loop .lang-toggle {
            border: 1px solid rgba(113, 175, 184, 0.20);
            background: rgba(113, 175, 184, 0.08);
        }

        .page-loop .lang-btn:focus-visible {
            outline: 3px solid var(--cyan);
        }

        .page-loop .lang-btn[aria-current="page"] {
            color: #000;
            background: linear-gradient(135deg, var(--cyan), rgba(113, 175, 184, 0.9));
        }

        .page-loop .hero {
            border: 1px solid rgba(113, 175, 184, 0.15);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.005));
            box-shadow: var(--shadow);
        }

        .page-loop .hero-cover {
            box-shadow: 0 16px 46px rgba(0, 0, 0, 0.7);
        }

        .page-loop .hero-cover:hover {
            box-shadow: 0 22px 64px rgba(0, 0, 0, 0.8);
        }

        .page-loop h1 {
            background: linear-gradient(135deg, rgba(245, 245, 245, 0.98), rgba(113, 175, 184, 0.7));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .page-loop .hero-subtitle {
            font-size: 1.1rem;
            color: var(--muted);
            margin: 0 0 16px;
            font-style: italic;
        }

        .page-loop .hero-hook {
            font-size: 1.2rem;
            color: var(--text);
            margin: 0 0 20px;
            font-weight: 700;
        }

        .page-loop .cta-primary {
            background: linear-gradient(135deg, var(--cyan), rgba(113, 175, 184, 0.85));
            color: #000;
            box-shadow: 0 14px 34px rgba(113, 175, 184, 0.25), 0 8px 22px rgba(0, 0, 0, 0.35);
        }

        .page-loop .cta-primary:hover {
            box-shadow: 0 18px 42px rgba(113, 175, 184, 0.35), 0 10px 28px rgba(0, 0, 0, 0.40);
        }

        .page-loop .cta-primary:focus-visible {
            outline: 3px solid var(--cyan);
        }

        .page-loop .section {
            border: 1px solid rgba(113, 175, 184, 0.15);
            background: rgba(255, 255, 255, 0.015);
            box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
        }

        .page-loop .skip-link {
            background: var(--cyan);
            color: #000;
        }

        /* Homepage Diagnostic Theme */
        .code-block {
            font-family: 'Monaco', 'Consolas', 'Courier New', monospace;
            color: var(--cyan);
            margin: 20px 0;
            line-height: 1.5;
            background: rgba(0, 0, 0, 0.3);
            padding: 15px;
            border-radius: 8px;
            border: 1px solid rgba(113, 175, 184, 0.15);
        }

        .status-line {
            display: block;
        }

        .status-completed {
            color: #4CAF50;
            /* Green */
        }

        .card-status-bar {
            height: 6px;
            width: 100%;
            margin-bottom: 20px;
            border-radius: 4px;
        }

        .status-green {
            background: #4CAF50;
            box-shadow: 0 0 12px rgba(76, 175, 80, 0.4);
        }

        .status-yellow {
            background: #FFC107;
            box-shadow: 0 0 12px rgba(255, 193, 7, 0.4);
        }

        .status-red {
            background: #F44336;
            box-shadow: 0 0 12px rgba(244, 67, 54, 0.4);
        }

        .card-meta {
            font-family: 'Monaco', 'Consolas', 'Courier New', monospace;
            font-size: 0.8rem;
            margin-bottom: 12px;
            display: flex;
            flex-direction: column;
            gap: 4px;
            color: rgba(245, 245, 245, 0.7);
            background: rgba(0, 0, 0, 0.2);
            padding: 8px 12px;
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .meta-status {
            font-weight: bold;
        }

        .meta-status.green {
            color: #4CAF50;
        }

        .meta-status.yellow {
            color: #FFC107;
        }

        .meta-status.red {
            color: #F44336;
        }