
        /* =========================================
           
        ========================================== */

        :root {
            --page-bg: #e8f1d6;
            --page-bg-secondary: #f5f8ec;

            --card-bg: #ffffff;
            --soft-green: #dce9ca;
            --soft-green-2: #edf4e4;

            --green: #788900;
            --green-dark: #596800;

            --blue: #1e7bc7;
            --orange: #f98300;
            --coral: #c35d54;

            --text: #666b67;
            --text-dark: #353936;
            --border: #e2e8dc;

            --shadow:
                0 18px 45px rgba(72, 91, 45, 0.10),
                0 2px 8px rgba(72, 91, 45, 0.05);

            --radius: 22px;
            --radius-small: 12px;

            --content-width: 720px;

            --font:
                "Century Gothic",
                "Avenir Next",
                Avenir,
                "Segoe UI",
                Arial,
                sans-serif;
        }


        /* =========================================
           Reset
        ========================================== */

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            min-height: 100vh;

            font-family: var(--font);
            font-size: 0.9rem;
            line-height: 1.8;

            color: var(--text);

            background:
                radial-gradient(
                    circle at top left,
                    rgba(255, 255, 255, 0.8),
                    transparent 35%
                ),
                linear-gradient(
                    135deg,
                    var(--page-bg) 0%,
                    var(--page-bg-secondary) 100%
                );
        }

        img {
            display: block;
            max-width: 100%;
            height: auto;
        }

        a {
            color: var(--green);
            font-weight: 600;
            text-decoration: none;

            transition:
                color 160ms ease,
                background-color 160ms ease,
                transform 160ms ease;
        }

        a:hover {
            color: var(--text-dark);
        }

        a:focus-visible {
            outline: 3px solid rgba(30, 123, 199, 0.25);
            outline-offset: 4px;
            border-radius: 4px;
        }

        p {
            margin: 0 0 1.15rem;
        }

        strong,
        b {
            color: var(--orange);
            font-weight: 700;
        }

        em,
        i {
            color: var(--coral);
        }


        /* =========================================
           Accessibility
        ========================================== */

        .skip-link {
            position: fixed;
            top: 10px;
            left: 10px;
            z-index: 1000;

            padding: 0.65rem 1rem;

            color: #fff;
            background: var(--text-dark);
            border-radius: 8px;

            transform: translateY(-200%);
            transition: transform 150ms ease;
        }

        .skip-link:focus {
            transform: translateY(0);
        }


        /* =========================================
           Main wrapper
        ========================================== */

        .site-wrapper {
            width: min(
                calc(100% - 2rem),
                var(--content-width)
            );

            margin: clamp(2rem, 6vw, 5rem) auto;
        }


        /* =========================================
           Website card
        ========================================== */

        .site {
            overflow: hidden;

            background: var(--card-bg);

            border: 1px solid rgba(255, 255, 255, 0.9);
            border-radius: var(--radius);

            box-shadow: var(--shadow);
        }


        /* =========================================
           Banner / Header
        ========================================== */

        .site-header {
            position: relative;
            overflow: hidden;
            background: var(--soft-green);
        }

        .site-header img {
            width: 100%;
            aspect-ratio: 438 / 160;
            object-fit: cover;
        }

        .site-header::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 50px;

            pointer-events: none;

            background: linear-gradient(
                to top,
                rgba(255, 255, 255, 0.18),
                transparent
            );
        }


        /* =========================================
           Navigation
        ========================================== */

        .site-nav {
            padding: 1rem 1.5rem;

            background:
                rgba(255, 255, 255, 0.94);

            border-bottom: 1px solid var(--border);
        }

        .site-nav ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.4rem;

            margin: 0;
            padding: 0;

            list-style: none;
        }

        .site-nav a {
            display: block;

            padding: 0.45rem 0.7rem;

            color: var(--green-dark);

            font-size: 0.7rem;
            font-weight: 700;

            letter-spacing: 0.07em;
            text-transform: uppercase;

            border-radius: 999px;
        }

        .site-nav a:hover {
            color: var(--text-dark);
            background: var(--soft-green-2);
        }

        .site-nav a[aria-current="page"] {
            color: #fff;
            background: var(--green);
        }


        /* =========================================
           Main content
        ========================================== */

        .content {
            padding:
                clamp(1.5rem, 5vw, 3rem)
                clamp(1.4rem, 6vw, 3.5rem);
        }

        .intro-label {
            margin-bottom: 0.4rem;

            color: var(--green);

            font-size: 0.67rem;
            font-weight: 800;

            letter-spacing: 0.18em;
            text-transform: uppercase;
        }

        h1,
        h2 {
            margin:
                0
                0
                1.5rem;

            color: var(--blue);

            font-family: var(--font);
            font-weight: 700;

            line-height: 1.3;
        }

        h1 {
            position: relative;

            padding-bottom: 0.8rem;

            font-size: clamp(1.35rem, 5vw, 2rem);

            text-align: right;
            text-transform: uppercase;

            letter-spacing: 0.08em;
        }

        h1::after {
            content: "";

            position: absolute;
            right: 0;
            bottom: 0;

            width: min(100%, 250px);
            height: 2px;

            background:
                repeating-linear-gradient(
                    to right,
                    var(--soft-green) 0,
                    var(--soft-green) 5px,
                    transparent 5px,
                    transparent 10px
                );
        }

        h2 {
            font-size: 1rem;
            letter-spacing: 0.04em;
        }


        /* =========================================
           Welcome box
        ========================================== */

        .welcome {
            margin-bottom: 2rem;
        }

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


        /* =========================================
           Fanlisting explanation
        ========================================== */

        .info-box {
            position: relative;

            margin: 2rem 0;
            padding: 1.5rem 1.6rem;

            background:
                linear-gradient(
                    135deg,
                    var(--soft-green-2),
                    #f8fbf3
                );

            border: 1px solid var(--border);
            border-left: 6px solid var(--green);
            border-radius: var(--radius-small);
        }

        .info-box h2 {
            margin-bottom: 0.8rem;

            color: var(--green-dark);

            font-size: 0.8rem;

            text-transform: uppercase;
            letter-spacing: 0.09em;
        }

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

        .question {
            color: var(--orange);
            font-weight: 700;
        }

        .answer {
            color: var(--blue);
            font-weight: 700;
        }


        /* =========================================
           Optional fanlisting stats
        ========================================== */

        .fanlisting-stats {
            display: grid;
            grid-template-columns:
                repeat(3, minmax(0, 1fr));

            gap: 0.75rem;

            margin: 2rem 0;
        }

        .stat {
            padding: 1rem;

            text-align: center;

            background: #fafcf7;
            border: 1px solid var(--border);
            border-radius: var(--radius-small);
        }

        .stat strong {
            display: block;

            color: var(--blue);

            font-size: 1.15rem;
            line-height: 1.2;
        }

        .stat span {
            display: block;
            margin-top: 0.35rem;

            color: #8a918a;

            font-size: 0.62rem;
            font-weight: 700;

            letter-spacing: 0.08em;
            text-transform: uppercase;
        }


        /* =========================================
           Footer
        ========================================== */

        .site-footer {
            padding: 1.4rem 1.5rem;

            color: #899083;
            background: var(--soft-green-2);

            font-size: 0.7rem;
            line-height: 1.7;
            text-align: center;

            border-top: 1px solid var(--border);
        }

        .site-footer p {
            margin: 0.2rem 0;
        }

        .site-footer a {
            color: var(--green-dark);
        }


        /* =========================================
           Mobile
        ========================================== */

        @media (max-width: 600px) {
            .site-wrapper {
                width: min(calc(100% - 1rem), var(--content-width));
                margin: 0.5rem auto;
            }

            .site {
                border-radius: 16px;
            }

            .content {
                padding: 1.5rem 1.25rem;
            }

            h1 {
                text-align: left;
            }

            h1::after {
                right: auto;
                left: 0;
            }

            .site-nav {
                padding: 0.9rem;
            }

            .site-nav ul {
                gap: 0.25rem;
            }

            .site-nav a {
                padding: 0.4rem 0.55rem;
                font-size: 0.62rem;
            }

            .fanlisting-stats {
                grid-template-columns: 1fr;
            }
        }


        /* =========================================
           Reduced motion
        ========================================== */

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                scroll-behavior: auto !important;
                transition: none !important;
            }
        }
