        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f5f2eb;
            color: #2c2b28;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #b37b2e;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a521a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 0.75rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
            color: #1f1e1b;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #b37b2e;
            padding-bottom: 0.5rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 6px solid #b37b2e;
            padding-left: 0.75rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.25rem;
            font-weight: 600;
        }
        p {
            margin: 0.8rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fffcf7;
            padding: 0 1.5rem 2rem;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.06);
            border-radius: 12px;
        }
        header {
            padding: 1.2rem 0 0.6rem;
            border-bottom: 2px solid #e6ddd0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: #4d3e2b;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo i {
            color: #b37b2e;
            font-size: 2.2rem;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
            color: #b37b2e;
        }
        .logo-sub {
            font-size: 0.7rem;
            letter-spacing: 4px;
            color: #8a7a66;
            display: block;
            margin-top: -4px;
            font-weight: 400;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        nav a {
            padding: 0.5rem 1rem;
            font-weight: 600;
            color: #4d3e2b;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        nav a:hover {
            background: #b37b2e;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #4d3e2b;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #e6ddd0;
        }
        #nav-toggle {
            display: none;
        }
        .nav-wrapper {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .breadcrumb {
            padding: 0.6rem 0 0.2rem;
            font-size: 0.9rem;
            color: #8a7a66;
            width: 100%;
            margin-top: 0.2rem;
        }
        .breadcrumb i {
            margin: 0 0.3rem;
            font-size: 0.7rem;
            color: #b37b2e;
        }
        .breadcrumb a {
            color: #8a7a66;
        }
        .breadcrumb a:hover {
            color: #b37b2e;
        }
        .breadcrumb span.current {
            color: #4d3e2b;
            font-weight: 600;
        }
        .search-section {
            background: #f0ebe2;
            padding: 1.2rem 1.5rem;
            border-radius: 12px;
            margin: 1.5rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
        }
        .search-section label {
            font-weight: 700;
            color: #4d3e2b;
            font-size: 1.1rem;
        }
        .search-section form {
            display: flex;
            flex: 1 1 300px;
            gap: 0.5rem;
        }
        .search-section input[type="text"] {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid #d6cdbd;
            border-radius: 8px;
            font-size: 1rem;
            background: #fffcf7;
            transition: border 0.2s;
        }
        .search-section input[type="text"]:focus {
            border-color: #b37b2e;
            outline: none;
        }
        .search-section button {
            padding: 0.7rem 1.4rem;
            background: #b37b2e;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-section button:hover {
            background: #8f621f;
            transform: scale(1.02);
        }
        .rating-area {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem 2rem;
            background: #faf6f0;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            margin: 1rem 0 1.8rem;
            border: 1px solid #e6ddd0;
        }
        .rating-stars {
            display: flex;
            gap: 0.25rem;
            font-size: 1.8rem;
            color: #d6cdbd;
            cursor: pointer;
            transition: color 0.15s;
        }
        .rating-stars i.active {
            color: #f5a623;
        }
        .rating-stars i:hover,
        .rating-stars i.hover {
            color: #f5a623;
        }
        .rating-form {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .rating-form button {
            padding: 0.5rem 1.2rem;
            background: #4d3e2b;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-form button:hover {
            background: #b37b2e;
        }
        .rating-average {
            font-weight: 700;
            color: #4d3e2b;
        }
        .comments-section {
            margin: 2rem 0 1.5rem;
            padding: 1.5rem;
            background: #faf6f0;
            border-radius: 12px;
            border: 1px solid #e6ddd0;
        }
        .comments-section h3 {
            margin-top: 0;
        }
        .comments-section form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .comments-section input,
        .comments-section textarea {
            padding: 0.7rem 1rem;
            border: 2px solid #d6cdbd;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            background: #fffcf7;
            transition: border 0.2s;
        }
        .comments-section input:focus,
        .comments-section textarea:focus {
            border-color: #b37b2e;
            outline: none;
        }
        .comments-section textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comments-section button {
            align-self: flex-start;
            padding: 0.7rem 2rem;
            background: #b37b2e;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .comments-section button:hover {
            background: #8f621f;
            transform: scale(1.02);
        }
        .comment-list {
            margin-top: 1.5rem;
            border-top: 2px solid #e6ddd0;
            padding-top: 1rem;
        }
        .comment-item {
            padding: 0.8rem 0;
            border-bottom: 1px solid #ede6db;
        }
        .comment-item strong {
            color: #4d3e2b;
        }
        .comment-item .date {
            font-size: 0.8rem;
            color: #8a7a66;
            margin-left: 1rem;
        }
        .comment-item p {
            margin: 0.3rem 0 0;
        }
        .hero-figure {
            margin: 1.5rem 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .hero-figure img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
        }
        .hero-figure figcaption {
            padding: 0.6rem 1rem;
            background: #f0ebe2;
            font-size: 0.9rem;
            color: #5a4e3d;
            font-style: italic;
        }
        .content-well {
            padding: 0.5rem 0 1.5rem;
        }
        .content-well p {
            margin: 1rem 0;
        }
        .highlight-box {
            background: #f7f1e8;
            border-left: 6px solid #b37b2e;
            padding: 1rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: #fffcf7;
            border: 1px solid #e6ddd0;
            border-radius: 12px;
            padding: 1.2rem;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        .stat-card i {
            font-size: 2rem;
            color: #b37b2e;
            margin-bottom: 0.4rem;
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #4d3e2b;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #8a7a66;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
            list-style: none;
            padding: 0;
            margin: 0.8rem 0;
        }
        .link-list-inline li::before {
            content: "⚡";
            margin-right: 0.3rem;
            color: #b37b2e;
        }
        .link-list-inline a {
            font-weight: 600;
        }
        footer {
            margin-top: 2.5rem;
            padding: 1.8rem 0 1.2rem;
            border-top: 3px solid #e6ddd0;
            font-size: 0.95rem;
            color: #5a4e3d;
        }
        friend-link {
            display: block;
            padding: 0.8rem 0;
            border-bottom: 1px solid #ede6db;
            margin-bottom: 1rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1rem 0.2rem 0;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 1rem;
            color: #8a7a66;
            font-size: 0.85rem;
            border-top: 1px solid #ede6db;
        }
        .copyright strong {
            color: #4d3e2b;
        }
        .last-update {
            text-align: right;
            font-size: 0.85rem;
            color: #8a7a66;
            margin-top: 0.5rem;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.5rem;
            }
            .container {
                padding: 0 0.8rem 1.5rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.6rem;
            }
            .hamburger {
                display: block;
            }
            .nav-wrapper {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: #fffcf7;
                padding: 0.8rem 0;
                border-top: 1px solid #e6ddd0;
                margin-top: 0.5rem;
            }
            #nav-toggle:checked~.nav-wrapper {
                display: flex;
            }
            .nav-wrapper a {
                padding: 0.6rem 1rem;
                border-radius: 0;
                border-bottom: 1px solid #f0ebe2;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .search-section {
                flex-direction: column;
                align-items: stretch;
                padding: 1rem;
            }
            .search-section form {
                flex-direction: column;
            }
            .rating-area {
                flex-direction: column;
                align-items: flex-start;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .comments-section input,
            .comments-section textarea {
                font-size: 0.95rem;
            }
            .link-list-inline {
                flex-direction: column;
                gap: 0.3rem;
            }
            friend-link a {
                display: block;
                margin: 0.3rem 0;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
                padding-left: 0.5rem;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
        }
        .text-muted {
            color: #8a7a66;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .gap-1 {
            gap: 1rem;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .badge {
            display: inline-block;
            background: #b37b2e;
            color: #fff;
            padding: 0.15rem 0.6rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
        }
