        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0a0e1a;
            color: #e8e6e3;
            line-height: 1.75;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
            min-height: 100vh;
        }
        a {
            color: #c8a86e;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #f0d48a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.75rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.3;
            color: #f5f0e8;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #c8a86e;
            padding-left: 1.2rem;
            margin-top: 1.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #2a2f42;
            padding-bottom: 0.4rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.15rem;
            margin-top: 1.5rem;
            color: #d4c9b5;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        strong {
            color: #f0d48a;
            font-weight: 600;
        }
        em {
            color: #b8c4d0;
            font-style: italic;
        }
        hr {
            border: none;
            border-top: 1px solid #2a2f42;
            margin: 2.5rem 0;
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 1rem;
            background: #c8a86e;
            color: #0a0e1a;
            padding: 0.5rem 1rem;
            border-radius: 0 0 8px 8px;
            z-index: 9999;
            font-weight: 600;
        }
        .skip-link:focus {
            top: 0;
        }
        header {
            padding: 1.5rem 0 1rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid #2a2f42;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f0d48a, #c8a86e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 0.5px;
            color: #8a8f9a;
            -webkit-text-fill-color: #8a8f9a;
            background: none;
            display: block;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #e8e6e3;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #1e2336;
        }
        .nav-toggle:focus-visible {
            outline: 2px solid #c8a86e;
            outline-offset: 2px;
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.25rem 1.2rem;
            align-items: center;
        }
        nav a {
            font-size: 0.95rem;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            color: #c8c6c0;
            font-weight: 500;
        }
        nav a:hover,
        nav a:focus-visible {
            background: #1e2336;
            color: #f0d48a;
            text-decoration: none;
        }
        nav a[aria-current="page"] {
            color: #f0d48a;
            border-bottom: 2px solid #c8a86e;
        }
        .breadcrumb {
            width: 100%;
            margin-top: 0.75rem;
            font-size: 0.85rem;
            color: #8a8f9a;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            list-style: none;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #5a5f6a;
        }
        .breadcrumb a {
            color: #a8acb6;
        }
        .breadcrumb a:hover {
            color: #f0d48a;
        }
        .breadcrumb li[aria-current="page"] {
            color: #c8a86e;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1.5rem 0 2rem;
            max-width: 600px;
        }
        .search-form input[type="search"] {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            border: 1px solid #2a2f42;
            border-radius: 8px;
            background: #12172b;
            color: #e8e6e3;
            font-size: 1rem;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .search-form input[type="search"]:focus {
            outline: none;
            border-color: #c8a86e;
            box-shadow: 0 0 0 3px rgba(200, 168, 110, 0.2);
        }
        .search-form button {
            padding: 0.7rem 1.5rem;
            background: #c8a86e;
            border: none;
            border-radius: 8px;
            color: #0a0e1a;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover,
        .search-form button:focus-visible {
            background: #f0d48a;
            transform: scale(1.02);
        }
        .search-form button:focus-visible {
            outline: 2px solid #f0d48a;
            outline-offset: 2px;
        }
        .feature-card {
            background: linear-gradient(145deg, #12172b, #0d1122);
            border: 1px solid #2a2f42;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin-bottom: 2rem;
            transition: border-color 0.3s, transform 0.2s;
        }
        .feature-card:hover {
            border-color: #c8a86e44;
            transform: translateY(-2px);
        }
        .feature-card h3 {
            margin-top: 0;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.5rem;
        }
        .hero-img {
            margin: 1.8rem 0;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
        }
        .hero-img figcaption {
            font-size: 0.85rem;
            color: #8a8f9a;
            margin-top: 0.5rem;
            text-align: center;
            font-style: italic;
        }
        .comment-form,
        .score-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin: 1.2rem 0 1.8rem;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 100px;
            padding: 0.8rem 1rem;
            border: 1px solid #2a2f42;
            border-radius: 8px;
            background: #12172b;
            color: #e8e6e3;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            transition: border-color 0.2s;
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: #c8a86e;
        }
        .comment-form input[type="text"],
        .score-form input[type="number"],
        .score-form input[type="text"] {
            padding: 0.6rem 1rem;
            border: 1px solid #2a2f42;
            border-radius: 8px;
            background: #12172b;
            color: #e8e6e3;
            font-size: 1rem;
            flex: 1 1 200px;
            transition: border-color 0.2s;
        }
        .comment-form input:focus,
        .score-form input:focus {
            outline: none;
            border-color: #c8a86e;
        }
        .comment-form button,
        .score-form button {
            padding: 0.6rem 1.5rem;
            background: #c8a86e;
            border: none;
            border-radius: 8px;
            color: #0a0e1a;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: #f0d48a;
            transform: scale(1.02);
        }
        .score-value {
            font-size: 2rem;
            font-weight: 700;
            color: #f0d48a;
            display: inline-block;
            margin-right: 0.5rem;
        }
        .star-rating {
            color: #f0d48a;
            letter-spacing: 2px;
            font-size: 1.3rem;
        }
        footer {
            border-top: 1px solid #2a2f42;
            padding: 2.5rem 0 2rem;
            margin-top: 3.5rem;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            background: #12172b;
            border: 1px solid #2a2f42;
            border-radius: 12px;
            padding: 1.5rem 2rem;
            margin: 1.5rem 0;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.5rem;
            margin-bottom: 0.5rem;
            color: #a8acb6;
            font-weight: 500;
        }
        friend-link a:hover {
            color: #f0d48a;
        }
        .copyright {
            text-align: center;
            color: #6a6f7a;
            font-size: 0.9rem;
            padding-top: 1.5rem;
            border-top: 1px solid #1e2336;
        }
        .copyright strong {
            color: #a8acb6;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #6a6f7a;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin: 0.5rem 0 1rem;
        }
        .last-updated i {
            color: #c8a86e;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #12172b;
            border-radius: 12px;
            overflow: hidden;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid #1e2336;
        }
        th {
            background: #1a1f34;
            color: #f0d48a;
            font-weight: 600;
        }
        tr:hover td {
            background: #1a1f3444;
        }
        @media (max-width: 900px) {
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        @media (max-width: 720px) {
            body {
                padding: 0 0.75rem;
            }
            h1 {
                font-size: 1.8rem;
                padding-left: 0.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.75rem;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
                padding: 1rem 0 0.5rem;
                border-top: 1px solid #2a2f42;
                margin-top: 0.75rem;
            }
            nav.open {
                display: flex;
            }
            nav a {
                width: 100%;
                padding: 0.5rem 0.75rem;
                font-size: 1rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                gap: 0.2rem 0.4rem;
            }
            .feature-card {
                padding: 1.2rem 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            friend-link a {
                display: block;
                margin-right: 0;
                margin-bottom: 0.4rem;
            }
            .comment-form input[type="text"],
            .score-form input[type="number"],
            .score-form input[type="text"] {
                flex: 1 1 100%;
            }
        }
        @media (min-width: 721px) {
            .nav-toggle {
                display: none;
            }
            nav {
                display: flex !important;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-wrap: wrap;
        }
        .quote {
            border-left: 4px solid #c8a86e;
            padding: 0.8rem 1.2rem;
            margin: 1.2rem 0;
            background: #12172b88;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #d4c9b5;
        }
        .quote cite {
            display: block;
            margin-top: 0.5rem;
            font-size: 0.9rem;
            color: #8a8f9a;
            font-style: normal;
        }
        :focus-visible {
            outline: 2px solid #c8a86e;
            outline-offset: 2px;
        }
        .feature-card,
        button,
        input,
        textarea,
        a {
            transition: all 0.2s ease;
        }
        .schema-hidden {
            display: none;
        }
