        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #faf9f6;
            color: #1e2a3a;
            line-height: 1.7;
            padding-top: 70px;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover {
            color: #78350f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
            color: #0f172a;
        }
        h1 {
            font-size: 2.2rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.7rem;
            border-bottom: 3px solid #e2e8f0;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.3rem;
        }
        h4 {
            font-size: 1.1rem;
        }
        p {
            margin-bottom: 1.25rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .badge {
            display: inline-block;
            background: #b45309;
            color: #fff;
            font-size: 0.7rem;
            padding: 0.2rem 0.7rem;
            border-radius: 20px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        header {
            background: #0f172a;
            color: #f8fafc;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
            padding: 0 20px;
        }
        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fbbf24;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            color: #f59e0b;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            color: #fde68a;
            text-decoration: none;
        }
        .my-logo span {
            font-weight: 300;
            color: #94a3b8;
            font-size: 0.8rem;
            margin-left: 4px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 1.8rem;
            align-items: center;
        }
        .nav-list a {
            color: #e2e8f0;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-list a:hover {
            color: #fbbf24;
            border-bottom-color: #fbbf24;
            text-decoration: none;
        }
        .nav-list .active a {
            color: #fbbf24;
            border-bottom-color: #fbbf24;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
        }
        .hamburger span {
            width: 28px;
            height: 3px;
            background: #f8fafc;
            border-radius: 3px;
            transition: 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        .breadcrumb {
            background: #f1f5f9;
            padding: 0.7rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #e2e8f0;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #94a3b8;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #475569;
        }
        .breadcrumb .current {
            color: #b45309;
            font-weight: 600;
        }
        .search-section {
            background: #eef2ff;
            padding: 2rem 0;
            border-radius: 12px;
            margin: 2rem 0;
        }
        .search-section .container {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
            justify-content: center;
        }
        .search-section form {
            display: flex;
            flex: 1 1 400px;
            max-width: 600px;
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        }
        .search-section input {
            flex: 1;
            padding: 0.9rem 1.5rem;
            border: none;
            font-size: 1rem;
            outline: none;
            background: #fff;
            min-width: 0;
        }
        .search-section button {
            background: #b45309;
            color: #fff;
            border: none;
            padding: 0 1.8rem;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.25s;
        }
        .search-section button:hover {
            background: #78350f;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        .main-content {
            background: #fff;
            padding: 2rem 2.2rem;
            border-radius: 16px;
            box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
        }
        .sidebar {
            background: #fff;
            padding: 1.8rem 1.5rem;
            border-radius: 16px;
            box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
            height: fit-content;
            position: sticky;
            top: 90px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 1rem;
            border-left: 4px solid #b45309;
            padding-left: 0.8rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #f1f5f9;
        }
        .sidebar li a {
            font-weight: 500;
            font-size: 0.95rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f8fafc;
            padding: 0.8rem 1.2rem;
            font-size: 0.85rem;
            color: #475569;
            border-top: 1px solid #e2e8f0;
        }
        .interaction-box {
            background: #f8fafc;
            border-radius: 16px;
            padding: 2rem;
            margin: 2.5rem 0;
            border: 1px solid #e2e8f0;
        }
        .interaction-box h3 {
            margin-top: 0;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .comment-form textarea,
        .comment-form input,
        .score-form select,
        .score-form input {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #cbd5e1;
            border-radius: 10px;
            font-size: 0.95rem;
            margin-bottom: 1rem;
            font-family: inherit;
            background: #fff;
        }
        .comment-form textarea {
            min-height: 110px;
            resize: vertical;
        }
        .btn {
            background: #b45309;
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }
        .btn:hover {
            background: #78350f;
            transform: translateY(-1px);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #b45309;
            color: #b45309;
        }
        .btn-outline:hover {
            background: #b45309;
            color: #fff;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.25rem;
            margin-bottom: 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #cbd5e1;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f59e0b;
        }
        footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3.5rem;
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2.5rem;
        }
        footer h4 {
            color: #f8fafc;
            margin-top: 0;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        footer a {
            color: #94a3b8;
        }
        footer a:hover {
            color: #fbbf24;
        }
        footer .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid #1e293b;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            text-align: center;
            font-size: 0.85rem;
            color: #64748b;
        }
        friend-link {
            display: block;
            background: #1e293b;
            padding: 1.2rem 1.5rem;
            border-radius: 12px;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }
        friend-link a {
            color: #fbbf24;
            margin-right: 1.2rem;
            display: inline-block;
        }
        friend-link a:hover {
            color: #fde68a;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            footer .container {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-list {
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: #0f172a;
                flex-direction: column;
                padding: 1.5rem 2rem;
                gap: 0.8rem;
                display: none;
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
                border-top: 1px solid #1e293b;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list a {
                font-size: 1.1rem;
                padding: 0.5rem 0;
            }
            .header-inner {
                height: 60px;
            }
            body {
                padding-top: 60px;
            }
            .main-content {
                padding: 1.2rem;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            footer .container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .search-section form {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-section input {
                border-radius: 16px 16px 0 0;
            }
            .search-section button {
                border-radius: 0 0 16px 16px;
                padding: 0.8rem;
            }
            .sidebar {
                padding: 1.2rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .main-content {
                padding: 0.8rem;
            }
            .interaction-box {
                padding: 1.2rem;
            }
        }
        .highlight-box {
            background: #fef3c7;
            border-left: 5px solid #f59e0b;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .data-table th {
            background: #0f172a;
            color: #f8fafc;
            padding: 0.7rem 1rem;
            text-align: left;
        }
        .data-table td,
        .data-table th {
            border: 1px solid #e2e8f0;
            padding: 0.6rem 1rem;
        }
        .data-table tr:nth-child(even) {
            background: #f8fafc;
        }
        .tag {
            display: inline-block;
            background: #e2e8f0;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #1e293b;
            margin: 0.2rem 0.3rem;
        }
        .last-updated {
            font-size: 0.8rem;
            color: #64748b;
            margin-bottom: 0.2rem;
            display: block;
            text-align: right;
        }
        .emoji-lg {
            font-size: 1.4rem;
            margin-right: 0.3rem;
        }
