        *,
        *::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: #faf8f5;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #b8860b;
            text-decoration: underline;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #8b6508;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #0d0d0d;
            color: #f5f0e8;
            padding: 0.8rem 0;
            border-bottom: 4px solid #b8860b;
            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;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #f5f0e8;
            text-decoration: none;
            text-transform: uppercase;
            background: linear-gradient(135deg, #b8860b, #e6b422);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            padding: 0.2rem 0;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .my-logo small {
            font-size: 0.5rem;
            display: block;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            letter-spacing: 0.2em;
            font-weight: 300;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f5f0e8;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
        }
        .nav-menu {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #f5f0e8;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
        }
        .nav-menu a:hover {
            background: #b8860b;
            color: #0d0d0d;
        }
        .nav-menu a i {
            margin-right: 0.35rem;
        }
        .breadcrumb {
            background: #ece8e2;
            padding: 0.6rem 0;
            font-size: 0.8rem;
            border-bottom: 1px solid #d6d0c8;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #888;
        }
        .breadcrumb a {
            color: #6b5e4a;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #b8860b;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2416 100%);
            color: #f5f0e8;
            padding: 3rem 0 2.5rem;
            text-align: center;
            position: relative;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .hero h1 span {
            background: linear-gradient(135deg, #b8860b, #e6b422);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 750px;
            margin: 0 auto 1.5rem;
            opacity: 0.9;
        }
        .hero .meta-badge {
            display: inline-block;
            background: #b8860b;
            color: #0d0d0d;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.85rem;
        }
        .hero .last-updated {
            display: block;
            margin-top: 0.8rem;
            font-size: 0.75rem;
            opacity: 0.6;
        }
        section {
            padding: 2.5rem 0;
        }
        section:nth-child(even) {
            background: #f3efe9;
        }
        h2 {
            font-size: 2rem;
            font-weight: 800;
            margin: 0 0 1.2rem;
            color: #1a1a1a;
            border-left: 6px solid #b8860b;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin: 1.8rem 0 0.8rem;
            color: #2d2416;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 1.2rem 0 0.5rem;
            color: #4a3e2e;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media (min-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr 1fr;
            }
            .content-grid.col3 {
                grid-template-columns: 1fr 1fr 1fr;
            }
        }
        .card {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            transition: transform 0.2s ease, box-shadow 0.3s ease;
            border: 1px solid #e8e2da;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
        }
        .card i {
            color: #b8860b;
            font-size: 1.8rem;
            margin-bottom: 0.6rem;
        }
        .feature-img {
            border-radius: 16px;
            overflow: hidden;
            margin: 1.5rem 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            background: #ddd;
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #2d2416, #4a3e2e);
            color: #f5f0e8;
            font-size: 1.2rem;
            text-align: center;
            padding: 2rem;
            position: relative;
        }
        .feature-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }
        .feature-img .img-placeholder {
            z-index: 1;
            position: relative;
            background: rgba(0, 0, 0, 0.4);
            padding: 1.5rem 2rem;
            border-radius: 12px;
            backdrop-filter: blur(4px);
        }
        .feature-img .img-placeholder i {
            font-size: 3rem;
            color: #e6b422;
            margin-bottom: 0.5rem;
        }
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.9rem;
        }
        .info-table th {
            background: #1a1a1a;
            color: #f5f0e8;
            padding: 0.7rem 1rem;
            text-align: left;
        }
        .info-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #e0d8ce;
        }
        .info-table tr:nth-child(even) td {
            background: #f9f6f2;
        }
        .search-box {
            display: flex;
            max-width: 550px;
            margin: 1.5rem auto;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }
        .search-box input {
            flex: 1;
            padding: 0.9rem 1.4rem;
            border: none;
            font-size: 1rem;
            background: #fff;
            outline: none;
        }
        .search-box button {
            background: #b8860b;
            color: #fff;
            border: none;
            padding: 0.9rem 1.8rem;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: background 0.25s;
        }
        .search-box button:hover {
            background: #9a7109;
        }
        .comment-form,
        .rating-form {
            background: #fff;
            padding: 1.8rem;
            border-radius: 16px;
            border: 1px solid #e8e2da;
            margin: 1.5rem 0;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.9rem;
            border: 1px solid #d6d0c8;
            border-radius: 12px;
            font-family: inherit;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            transition: border 0.25s;
        }
        .comment-form textarea:focus {
            border-color: #b8860b;
            outline: none;
            box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #d6d0c8;
            border-radius: 12px;
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
            transition: border 0.25s;
        }
        .comment-form input[type="text"]:focus {
            border-color: #b8860b;
            outline: none;
            box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
        }
        .btn {
            display: inline-block;
            background: #b8860b;
            color: #fff;
            padding: 0.7rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
            text-decoration: none;
        }
        .btn:hover {
            background: #9a7109;
            transform: scale(1.02);
            color: #fff;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #b8860b;
            color: #b8860b;
        }
        .btn-outline:hover {
            background: #b8860b;
            color: #fff;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.3rem;
            margin: 0.8rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #e6b422;
        }
        .link-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.5rem;
        }
        @media (min-width: 600px) {
            .link-list {
                grid-template-columns: 1fr 1fr;
            }
        }
        .link-list li a {
            display: block;
            padding: 0.6rem 1rem;
            background: #fff;
            border-radius: 12px;
            border: 1px solid #e8e2da;
            text-decoration: none;
            color: #2d2416;
            font-weight: 500;
            transition: background 0.2s, border-color 0.2s;
        }
        .link-list li a:hover {
            background: #f5efe6;
            border-color: #b8860b;
            color: #b8860b;
        }
        .link-list li a i {
            margin-right: 0.6rem;
            color: #b8860b;
        }
        friend-link {
            display: block;
            padding: 1.5rem 0;
            border-top: 2px solid #e8e2da;
            margin-top: 2rem;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
        }
        friend-link ul li a {
            color: #6b5e4a;
            font-weight: 500;
            text-decoration: none;
        }
        friend-link ul li a:hover {
            color: #b8860b;
            text-decoration: underline;
        }
        .site-footer {
            background: #0d0d0d;
            color: #ccc;
            padding: 2rem 0 1.5rem;
            font-size: 0.85rem;
        }
        .site-footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1rem;
        }
        .site-footer a {
            color: #b8860b;
        }
        .site-footer a:hover {
            color: #e6b422;
        }
        .site-footer .copyright {
            width: 100%;
            text-align: center;
            padding-top: 1.2rem;
            border-top: 1px solid #2a2a2a;
            margin-top: 1rem;
            font-size: 0.75rem;
            opacity: 0.7;
        }
        @media (max-width: 767px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0 0.5rem;
                gap: 0.2rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.6rem 1rem;
                border-radius: 8px;
                width: 100%;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.3rem;
            }
        }
        @media (min-width: 768px) {
            .nav-toggle {
                display: none !important;
            }
            .nav-menu {
                display: flex !important;
            }
        }
        .tag {
            display: inline-block;
            background: #e8e2da;
            padding: 0.2rem 0.9rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #4a3e2e;
            margin: 0.2rem;
        }
        .divider {
            height: 2px;
            background: linear-gradient(to right, transparent, #b8860b, transparent);
            margin: 2rem 0;
        }
        .text-gold {
            color: #b8860b;
        }
        .fw-700 {
            font-weight: 700;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        @media print {
            .site-header {
                position: static;
            }
            .search-box,
            .comment-form,
            .rating-form,
            .nav-toggle {
                display: none !important;
            }
            .hero {
                padding: 1rem 0;
            }
        }
