        *,
        *::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, sans-serif;
            background: #0b0a0f;
            color: #dcdcdc;
            line-height: 1.7;
            min-height: 100vh;
            padding: 0 16px;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffde7a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f5f0e8;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.6rem;
            letter-spacing: -0.02em;
            border-left: 6px solid #f0c040;
            padding-left: 20px;
            margin-top: 0.4rem;
        }
        h2 {
            font-size: 2.0rem;
            border-bottom: 2px solid #2a2a3e;
            padding-bottom: 10px;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
            color: #f0e6d0;
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 1.5rem;
            color: #c0b8a8;
        }
        p {
            margin-bottom: 1.1rem;
            font-size: 1.02rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.4rem 1.8rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        strong {
            color: #f5e8c8;
            font-weight: 700;
        }
        em {
            color: #d4c8b0;
            font-style: italic;
        }
        hr {
            border: none;
            border-top: 2px solid #2a2a3e;
            margin: 2.8rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0 12px;
            border-bottom: 2px solid #2a2a3e;
            position: relative;
        }
        .my-logo {
            font-size: 2.0rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f0c040, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }
        .my-logo:hover {
            text-decoration: none;
            filter: brightness(1.2);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f0c040;
            font-size: 1.8rem;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-list {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 18px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-list li a {
            padding: 6px 4px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #c8c0b0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .nav-list li a:hover {
            color: #f0c040;
            border-bottom-color: #f0c040;
            text-decoration: none;
        }
        .nav-list li a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #f0c040;
            color: #f0c040;
            font-size: 1.6rem;
            padding: 4px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1f1a2e;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.85rem;
            color: #999;
            padding: 12px 0 8px;
            list-style: none;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #666;
        }
        .breadcrumb a {
            color: #c8b890;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .search-section {
            margin: 28px 0 20px;
            background: #15131c;
            border-radius: 16px;
            padding: 28px 24px;
            border: 1px solid #2a2a3e;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .search-form label {
            font-weight: 600;
            color: #f0e6d0;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 12px 18px;
            border-radius: 30px;
            border: 2px solid #2a2a3e;
            background: #0b0a0f;
            color: #f0e6d0;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f0c040;
        }
        .search-form button {
            padding: 12px 32px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #f0c040, #e67e00);
            color: #0b0a0f;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(240, 192, 64, 0.35);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            margin: 24px 0 40px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            background: #15131c;
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid #2a2a3e;
            height: fit-content;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px solid #2a2a3e;
            padding-bottom: 8px;
        }
        .sidebar ul {
            list-style: none;
            margin: 12px 0 0;
            padding: 0;
        }
        .sidebar ul li {
            padding: 6px 0;
            border-bottom: 1px solid #1f1a2e;
        }
        .sidebar ul li a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #c8b890;
        }
        .sidebar ul li a:hover {
            color: #f0c040;
        }
        @media (min-width: 860px) {
            .content-grid {
                grid-template-columns: 1fr 300px;
            }
        }
        .featured-image {
            margin: 24px 0 28px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
            background: #1a1720;
            padding: 8px;
        }
        .featured-image img {
            border-radius: 10px;
            width: 100%;
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #999;
            padding: 8px 0 4px;
        }
        .interaction-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin: 32px 0 20px;
            background: #15131c;
            border-radius: 16px;
            padding: 28px 24px;
            border: 1px solid #2a2a3e;
        }
        @media (min-width: 640px) {
            .interaction-section {
                grid-template-columns: 1fr 1fr;
            }
        }
        .comment-box,
        .score-box {
            background: #1a1720;
            border-radius: 12px;
            padding: 20px 18px;
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 2px solid #2a2a3e;
            padding-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 12px 14px;
            border-radius: 10px;
            border: 2px solid #2a2a3e;
            background: #0b0a0f;
            color: #f0e6d0;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border-color 0.3s;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            border-color: #f0c040;
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 10px 14px;
            border-radius: 10px;
            border: 2px solid #2a2a3e;
            background: #0b0a0f;
            color: #f0e6d0;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
            margin: 8px 0 12px;
        }
        .comment-form input[type="text"]:focus {
            border-color: #f0c040;
        }
        .comment-form button,
        .score-form button {
            padding: 10px 28px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #f0c040, #e67e00);
            color: #0b0a0f;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover,
        .score-form button:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 16px rgba(240, 192, 64, 0.3);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 4px;
            justify-content: flex-end;
            margin: 8px 0 12px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f0c040;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #888;
            text-align: right;
            margin: 12px 0 4px;
            border-top: 1px solid #2a2a3e;
            padding-top: 12px;
        }
        .last-updated i {
            margin-right: 6px;
        }
        .site-footer {
            border-top: 2px solid #2a2a3e;
            padding: 32px 0 24px;
            margin-top: 48px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }
        @media (min-width: 640px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr;
            }
        }
        friend-link {
            display: block;
            background: #15131c;
            border-radius: 12px;
            padding: 18px 20px;
            border: 1px solid #2a2a3e;
        }
        friend-link h4 {
            font-size: 1.1rem;
            margin: 0 0 12px;
            color: #f0e6d0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        friend-link ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
        }
        friend-link ul li a {
            color: #c8b890;
            font-weight: 500;
        }
        friend-link ul li a:hover {
            color: #f0c040;
        }
        .copyright {
            font-size: 0.85rem;
            color: #777;
            margin-top: 20px;
            text-align: center;
            border-top: 1px solid #1f1a2e;
            padding-top: 18px;
        }
        .copyright strong {
            color: #aaa;
        }
        @media (max-width: 720px) {
            .hamburger {
                display: inline-block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #15131c;
                border-radius: 12px;
                padding: 16px 12px;
                margin-top: 12px;
                border: 1px solid #2a2a3e;
                gap: 4px;
            }
            #nav-toggle:checked+.hamburger+.nav-list {
                display: flex;
            }
            .nav-list li a {
                padding: 10px 8px;
                border-bottom: 1px solid #1f1a2e;
                display: block;
            }
            .site-header {
                flex-wrap: wrap;
            }
            h1 {
                font-size: 1.9rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .search-form {
                flex-direction: column;
                align-items: stretch;
            }
            .search-form button {
                justify-content: center;
            }
            .interaction-section {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 420px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 0 6px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .search-section {
                padding: 16px 12px;
            }
            .comment-box,
            .score-box {
                padding: 14px 10px;
            }
        }
        .badge {
            display: inline-block;
            background: #2a2a3e;
            padding: 2px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #f0c040;
            letter-spacing: 0.5px;
        }
        .highlight-box {
            background: #1a1720;
            border-left: 6px solid #f0c040;
            padding: 16px 20px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .emoji-big {
            font-size: 1.8rem;
            vertical-align: middle;
        }
        :target {
            scroll-margin-top: 90px;
        }
