        *,
        *::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, Roboto, 'Helvetica Neue', sans-serif;
            background: #f8f6f2;
            color: #1e1e1e;
            line-height: 1.8;
            padding: 0 0 0 0;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus {
            color: #7c2d12;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.6rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #1a1a1a;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #b45309;
            padding-bottom: 0.5rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #b45309;
            padding-left: 1rem;
            margin-top: 2.8rem;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 1.6rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #1e1e1e;
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #fbbf24;
            text-decoration: none;
            background: linear-gradient(135deg, #fbbf24, #b45309);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo span {
            font-weight: 300;
            color: #fff;
            -webkit-text-fill-color: #fff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #f0f0f0;
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-menu a:hover {
            background: #b45309;
            color: #fff;
            text-decoration: none;
        }
        .nav-menu .active {
            background: #b45309;
            color: #fff;
        }
        .breadcrumb {
            background: #f0ede8;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding-left: 0;
            margin-bottom: 0;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #888;
        }
        .breadcrumb a {
            color: #b45309;
        }
        .breadcrumb .current {
            color: #555;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(135deg, #1e1e1e 0%, #3a2a1a 100%);
            color: #fff;
            padding: 3rem 0 2.5rem;
            margin-bottom: 2rem;
            border-radius: 0 0 40px 40px;
        }
        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }
        .hero h1 {
            color: #fff;
            border-bottom-color: #fbbf24;
            font-size: 2.6rem;
            margin-top: 0;
        }
        .hero p {
            font-size: 1.15rem;
            opacity: 0.92;
            max-width: 540px;
        }
        .hero .hero-img {
            border-radius: 16px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
            width: 100%;
            object-fit: cover;
            max-height: 320px;
        }
        .hero .btn-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 1.2rem;
        }
        .btn {
            display: inline-block;
            background: #fbbf24;
            color: #1a1a1a;
            font-weight: 700;
            padding: 0.7rem 1.6rem;
            border-radius: 40px;
            transition: all 0.25s;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }
        .btn:hover {
            background: #f59e0b;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(251, 191, 36, 0.35);
            text-decoration: none;
            color: #1a1a1a;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #fbbf24;
            color: #fbbf24;
        }
        .btn-outline:hover {
            background: #fbbf24;
            color: #1a1a1a;
        }
        .search-section {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin-bottom: 2.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
        }
        .search-section form {
            display: flex;
            flex: 1 1 300px;
            gap: 0.6rem;
        }
        .search-section input[type="text"] {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 2px solid #ddd;
            border-radius: 40px;
            font-size: 1rem;
            transition: border 0.2s;
            min-width: 180px;
        }
        .search-section input[type="text"]:focus {
            border-color: #b45309;
            outline: none;
            box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.15);
        }
        .search-section button {
            background: #b45309;
            color: #fff;
            border: none;
            padding: 0.7rem 1.6rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
            font-size: 0.95rem;
        }
        .search-section button:hover {
            background: #7c2d12;
            transform: scale(1.02);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        .main-content {
            background: #fff;
            border-radius: 20px;
            padding: 2rem 2.2rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
        }
        .sidebar {
            background: #fff;
            border-radius: 20px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
            align-self: start;
            position: sticky;
            top: 90px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px solid #f0ede8;
            padding-bottom: 0.6rem;
        }
        .sidebar ul {
            list-style: none;
            padding-left: 0;
        }
        .sidebar li {
            margin-bottom: 0.5rem;
            border-bottom: 1px solid #f5f3ef;
            padding-bottom: 0.4rem;
        }
        .sidebar a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
        }
        .sidebar a i {
            width: 1.2rem;
            color: #b45309;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e5e2dc;
        }
        th {
            background: #1e1e1e;
            color: #fff;
            font-weight: 600;
        }
        tr:nth-child(even) {
            background: #faf8f5;
        }
        tr:hover td {
            background: #f5efe7;
        }
        .rating-area,
        .comment-area {
            background: #faf8f5;
            border-radius: 16px;
            padding: 1.5rem 2rem;
            margin: 2rem 0 1rem;
            border: 1px solid #e5e2dc;
        }
        .rating-area h3,
        .comment-area h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            color: #d4d4d4;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.15s, transform 0.15s;
            color: #ccc;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #fbbf24;
            transform: scale(1.1);
        }
        .rating-display {
            font-size: 1.2rem;
            font-weight: 600;
            color: #b45309;
            margin-top: 0.4rem;
        }
        .comment-area textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 12px;
            border: 2px solid #ddd;
            font-family: inherit;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            transition: border 0.2s;
        }
        .comment-area textarea:focus {
            border-color: #b45309;
            outline: none;
            box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.1);
        }
        .comment-area .btn {
            margin-top: 0.6rem;
        }
        .site-footer {
            background: #1e1e1e;
            color: #ccc;
            padding: 2.5rem 0 1.2rem;
            margin-top: 3rem;
            border-radius: 40px 40px 0 0;
        }
        .site-footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .site-footer a {
            color: #fbbf24;
        }
        .site-footer a:hover {
            color: #fff;
        }
        .site-footer h4 {
            color: #fff;
            margin-top: 0;
            font-size: 1.1rem;
            border-bottom: 2px solid #b45309;
            padding-bottom: 0.4rem;
            display: inline-block;
        }
        friend-link {
            display: block;
            margin-top: 0.8rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            margin-bottom: 0.4rem;
        }
        .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid #444;
            padding-top: 1.2rem;
            margin-top: 1.2rem;
            text-align: center;
            font-size: 0.9rem;
            color: #999;
        }
        .copyright strong {
            color: #fbbf24;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero p {
                margin: 0 auto;
            }
            .hero .btn-group {
                justify-content: center;
            }
            .hero .hero-img {
                max-height: 260px;
                width: 80%;
                margin: 0 auto;
            }
            .site-footer .container {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2a2a2a;
                padding: 0.8rem 1rem;
                border-radius: 12px;
                margin-top: 0.6rem;
                gap: 0.4rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.5rem 0.8rem;
                border-radius: 8px;
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .main-content {
                padding: 1.2rem 1rem;
            }
            .search-section {
                padding: 1rem 1.2rem;
                flex-direction: column;
            }
            .search-section form {
                width: 100%;
            }
            .site-footer .container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .hero .hero-img {
                width: 100%;
            }
            .rating-area,
            .comment-area {
                padding: 1rem 1.2rem;
            }
            .star-rating {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .breadcrumb ol {
                padding: 0 0.8rem;
                font-size: 0.8rem;
            }
            .btn {
                padding: 0.5rem 1.2rem;
                font-size: 0.85rem;
            }
            table {
                font-size: 0.8rem;
            }
            th,
            td {
                padding: 0.4rem 0.6rem;
            }
        }
        .badge {
            display: inline-block;
            background: #b45309;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.15rem 0.7rem;
            border-radius: 40px;
            letter-spacing: 0.3px;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #888;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin-bottom: 1.2rem;
        }
        .feature-box {
            background: #faf8f5;
            border-left: 4px solid #b45309;
            padding: 1rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .feature-box p:last-child {
            margin-bottom: 0;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .inline-icon {
            margin-right: 0.3rem;
            color: #b45309;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .gallery-grid img {
            border-radius: 12px;
            height: 180px;
            width: 100%;
            object-fit: cover;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .gallery-grid img:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }
        .blockquote-custom {
            background: #f5efe7;
            padding: 1.2rem 2rem;
            border-radius: 16px;
            font-style: italic;
            position: relative;
            margin: 1.8rem 0;
        }
        .blockquote-custom::before {
            content: "\201C";
            font-size: 3rem;
            color: #b45309;
            position: absolute;
            left: 0.6rem;
            top: -0.2rem;
            line-height: 1;
        }
        .blockquote-custom cite {
            display: block;
            margin-top: 0.6rem;
            font-style: normal;
            font-weight: 600;
            color: #555;
        }
        .toc {
            background: #faf8f5;
            border-radius: 16px;
            padding: 1.2rem 1.8rem;
            border: 1px solid #e5e2dc;
            margin-bottom: 2rem;
        }
        .toc summary {
            font-weight: 700;
            font-size: 1.2rem;
            cursor: pointer;
            color: #1e1e1e;
        }
        .toc ol {
            margin-bottom: 0;
            padding-left: 1.2rem;
        }
        .toc ol li {
            margin-bottom: 0.3rem;
        }
        .toc a {
            color: #1e1e1e;
        }
        .toc a:hover {
            color: #b45309;
        }
