        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #f8f6f2;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #7a2e0e;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #1a1a2e;
            margin-top: 1.8rem;
            margin-bottom: 0.75rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 3px solid #eab308;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.4rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #0f0e17 0%, #1a1a2e 100%);
            color: #fefefe;
            padding: 0.8rem 0;
            border-bottom: 4px solid #eab308;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #fbbf24, #eab308);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            display: inline-block;
        }
        .my-logo small {
            font-size: 0.75rem;
            font-weight: 400;
            -webkit-text-fill-color: #ccc;
            color: #ccc;
            display: block;
            letter-spacing: 0.3px;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            opacity: 0.9;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 0.2rem;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
        }
        .nav-list li a {
            color: #f0e9db;
            padding: 0.5rem 0.9rem;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            display: block;
        }
        .nav-list li a:hover,
        .nav-list li a:focus {
            background: #eab308;
            color: #0f0e17;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0e9db;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #f1ede6;
            padding: 0.7rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #ddd6c8;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #a38d7a;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #7a5c3a;
        }
        .breadcrumb .current {
            color: #1a1a2e;
            font-weight: 600;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0 3rem;
        }
        @media (max-width: 900px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .sidebar {
                order: 2;
            }
        }
        .sidebar {
            background: #f1ede6;
            border-radius: 20px;
            padding: 1.8rem 1.5rem;
            border: 1px solid #e3d9cc;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
            align-self: start;
            position: sticky;
            top: 110px;
        }
        .sidebar-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 1rem;
            border-left: 4px solid #eab308;
            padding-left: 0.75rem;
        }
        .sidebar-links {
            list-style: none;
            padding: 0;
            margin: 0 0 1.8rem 0;
        }
        .sidebar-links li {
            margin-bottom: 0.4rem;
        }
        .sidebar-links a {
            display: block;
            padding: 0.45rem 0.6rem;
            background: #fffcf7;
            border-radius: 12px;
            font-size: 0.88rem;
            border: 1px solid #e8ddd0;
            transition: background 0.2s, border-color 0.2s, transform 0.15s;
        }
        .sidebar-links a:hover {
            background: #eab308;
            border-color: #c9950a;
            color: #0f0e17;
            transform: translateX(4px);
            text-decoration: none;
        }
        .sidebar .score-area {
            background: #fffcf7;
            border-radius: 16px;
            padding: 1.2rem;
            margin: 1.2rem 0;
            border: 1px solid #e0d5c6;
            text-align: center;
        }
        .score-area .stars {
            font-size: 1.8rem;
            color: #eab308;
            letter-spacing: 4px;
            cursor: pointer;
        }
        .score-area .stars i {
            transition: transform 0.15s, color 0.15s;
        }
        .score-area .stars i:hover {
            transform: scale(1.2);
            color: #f59e0b;
        }
        .search-block {
            background: #fffcf7;
            border-radius: 16px;
            padding: 1.2rem 1.2rem 1.5rem;
            border: 1px solid #e0d5c6;
            margin-bottom: 1.8rem;
        }
        .search-block form {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .search-block input[type="text"] {
            flex: 1;
            min-width: 140px;
            padding: 0.6rem 1rem;
            border: 2px solid #ddd6c8;
            border-radius: 40px;
            font-size: 0.9rem;
            background: #fff;
            transition: border-color 0.25s;
        }
        .search-block input[type="text"]:focus {
            outline: none;
            border-color: #eab308;
        }
        .search-block button {
            background: #eab308;
            border: none;
            padding: 0.6rem 1.4rem;
            border-radius: 40px;
            font-weight: 600;
            color: #0f0e17;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            font-size: 0.9rem;
        }
        .search-block button:hover {
            background: #d4a206;
            transform: scale(1.02);
        }
        .comment-block {
            background: #fffcf7;
            border-radius: 16px;
            padding: 1.2rem 1.2rem 1.5rem;
            border: 1px solid #e0d5c6;
            margin-top: 1.2rem;
        }
        .comment-block textarea {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #ddd6c8;
            border-radius: 12px;
            font-size: 0.9rem;
            resize: vertical;
            min-height: 80px;
            font-family: inherit;
            transition: border-color 0.25s;
        }
        .comment-block textarea:focus {
            outline: none;
            border-color: #eab308;
        }
        .comment-block input[type="text"] {
            width: 100%;
            padding: 0.6rem 1rem;
            border: 2px solid #ddd6c8;
            border-radius: 40px;
            font-size: 0.9rem;
            margin: 0.4rem 0 0.6rem;
        }
        .comment-block input[type="text"]:focus {
            outline: none;
            border-color: #eab308;
        }
        .comment-block button {
            background: #1a1a2e;
            border: none;
            padding: 0.6rem 1.6rem;
            border-radius: 40px;
            font-weight: 600;
            color: #f0e9db;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            font-size: 0.9rem;
            margin-top: 0.4rem;
        }
        .comment-block button:hover {
            background: #2d2d4a;
            transform: scale(1.02);
        }
        .highlight-box {
            background: linear-gradient(135deg, #fef9ec, #fdf4d6);
            border-left: 6px solid #eab308;
            padding: 1.4rem 2rem;
            border-radius: 16px;
            margin: 1.8rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            font-size: 0.92rem;
            background: #fffcf7;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
        }
        .data-table th {
            background: #1a1a2e;
            color: #f0e9db;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.65rem 1rem;
            border-bottom: 1px solid #e8ddd0;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #fdf6ed;
        }
        .tag {
            display: inline-block;
            background: #eab308;
            color: #0f0e17;
            padding: 0.15rem 0.8rem;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.3px;
        }
        .feature-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
            margin: 1.8rem 0;
            background: #e8ddd0;
        }
        .feature-image img {
            width: 100%;
            height: auto;
            display: block;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .feature-image figcaption {
            padding: 0.6rem 1.2rem;
            font-size: 0.82rem;
            color: #5a4a38;
            background: #f8f4ee;
            font-style: italic;
        }
        .site-footer {
            background: #0f0e17;
            color: #ccc;
            padding: 2.5rem 0 1.8rem;
            margin-top: 3rem;
            border-top: 4px solid #eab308;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 1.8rem;
        }
        @media (max-width: 700px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        .site-footer h4 {
            color: #fbbf24;
            margin-top: 0;
            font-size: 1.05rem;
        }
        .site-footer a {
            color: #d4b48a;
        }
        .site-footer a:hover {
            color: #fbbf24;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.5rem;
            padding: 1rem 0;
            border-top: 1px solid #2a2838;
            border-bottom: 1px solid #2a2838;
            margin: 1.2rem 0;
        }
        .friend-link a {
            font-size: 0.88rem;
            padding: 0.2rem 0;
        }
        .copyright {
            text-align: center;
            font-size: 0.82rem;
            color: #8a7e6e;
            padding-top: 1.2rem;
            border-top: 1px solid #2a2838;
            margin-top: 1.2rem;
        }
        .copyright strong {
            color: #eab308;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a2e;
                padding: 0.8rem 0.4rem;
                border-radius: 0 0 16px 16px;
                margin-top: 0.4rem;
                gap: 0.1rem;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            .nav-wrapper {
                flex-wrap: wrap;
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .sidebar {
                position: static;
                margin-top: 1rem;
            }
        }
        @media (max-width: 480px) {
            .search-block form {
                flex-direction: column;
            }
            .search-block input[type="text"] {
                min-width: unset;
            }
            .data-table {
                font-size: 0.78rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.4rem 0.5rem;
            }
        }
        .last-updated {
            font-size: 0.82rem;
            color: #7a6a58;
            background: #f1ede6;
            display: inline-block;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            margin-bottom: 0.8rem;
        }
        .emoji-big {
            font-size: 1.3rem;
            margin-right: 0.3rem;
        }
        .btn-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #1a1a2e;
            color: #fbbf24;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s, background 0.2s;
            z-index: 999;
            border: none;
            cursor: pointer;
        }
        .btn-top:hover {
            transform: translateY(-4px);
            background: #eab308;
            color: #0f0e17;
        }
        .schema-hidden {
            display: none;
        }
