        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
            line-height: 1.6;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #f5f2ed;
            color: #1e1e1e;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #d4a017;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: #2c1810;
            margin-top: 1.2em;
            margin-bottom: 0.5em;
        }
        h1 {
            font-size: 2.2rem;
            border-bottom: 4px solid #b8860b;
            padding-bottom: 0.3em;
        }
        h2 {
            font-size: 1.7rem;
            border-left: 6px solid #b8860b;
            padding-left: 0.7em;
            margin-top: 2em;
        }
        h3 {
            font-size: 1.3rem;
            margin-top: 1.6em;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.2em;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.1em;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .flex {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
        }
        .text-center {
            text-align: center;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .btn {
            display: inline-block;
            padding: 10px 22px;
            background: #b8860b;
            color: #fff !important;
            border-radius: 30px;
            font-weight: 600;
            transition: background 0.3s, transform 0.15s;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }
        .btn:hover {
            background: #d4a017;
            transform: scale(1.02);
            text-decoration: none;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #b8860b;
            color: #b8860b !important;
        }
        .btn-outline:hover {
            background: #b8860b;
            color: #fff !important;
        }
        .badge {
            display: inline-block;
            background: #2c1810;
            color: #f5f2ed;
            padding: 2px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #b8860b, transparent);
            margin: 2.5rem 0;
        }
        .card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
            transition: box-shadow 0.3s, transform 0.2s;
        }
        .card:hover {
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.10);
            transform: translateY(-2px);
        }
        .section-highlight {
            background: #fff8f0;
            border-radius: 20px;
            padding: 30px 24px;
            margin: 2rem 0;
            border-left: 8px solid #b8860b;
        }
        .site-header {
            background: #2c1810;
            color: #f5f2ed;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f5f2ed !important;
            text-decoration: none !important;
            display: flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, #b8860b, #f0c040);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo i {
            -webkit-text-fill-color: #f0c040;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none !important;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f5f2ed;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #e0d6cc;
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            text-decoration: none;
        }
        .nav-menu a:hover,
        .nav-menu a:focus-visible {
            background: rgba(184, 134, 11, 0.3);
            color: #f0c040;
            text-decoration: none;
        }
        .nav-menu a.active {
            background: #b8860b;
            color: #fff;
        }
        .breadcrumb {
            padding: 10px 0 6px;
            font-size: 0.85rem;
            color: #8a7a6a;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 10px;
        }
        .breadcrumb a {
            color: #b8860b;
        }
        .breadcrumb span {
            color: #5a4a3a;
        }
        .search-box {
            display: flex;
            max-width: 600px;
            margin: 0 auto 30px;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            background: #fff;
        }
        .search-box input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            font-size: 1rem;
            outline: none;
            background: transparent;
            min-width: 0;
        }
        .search-box button {
            padding: 14px 28px;
            background: #b8860b;
            color: #fff;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: #d4a017;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            cursor: pointer;
            direction: rtl;
            justify-content: center;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            color: #ccc;
            transition: color 0.2s, transform 0.1s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #f5a623;
        }
        .rating-stars label:hover {
            transform: scale(1.15);
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            align-items: center;
            max-width: 400px;
            margin: 0 auto;
        }
        .rating-form textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0d6cc;
            border-radius: 12px;
            resize: vertical;
            font-family: inherit;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.2s;
        }
        .rating-form textarea:focus {
            border-color: #b8860b;
        }
        .rating-form .btn {
            width: 100%;
        }
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin: 20px 0;
        }
        .comment-item {
            background: #fff;
            border-radius: 14px;
            padding: 18px 20px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            border-left: 4px solid #b8860b;
        }
        .comment-item .meta {
            font-size: 0.85rem;
            color: #8a7a6a;
            display: flex;
            gap: 16px;
            margin-bottom: 6px;
        }
        .comment-item .meta strong {
            color: #2c1810;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            max-width: 700px;
            margin: 20px 0;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 12px 16px;
            border: 2px solid #e0d6cc;
            border-radius: 12px;
            font-family: inherit;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.2s;
            width: 100%;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #b8860b;
        }
        .comment-form textarea {
            resize: vertical;
            min-height: 80px;
        }
        .comment-form .btn {
            align-self: flex-start;
        }
        .site-footer {
            background: #2c1810;
            color: #c4b5a5;
            padding: 40px 0 20px;
            margin-top: auto;
        }
        .site-footer a {
            color: #e0c9a5;
        }
        .site-footer a:hover {
            color: #f5d742;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-grid h4 {
            color: #f0e0d0;
            margin-top: 0;
            font-size: 1.1rem;
        }
        friend-link {
            display: block;
            margin: 12px 0;
        }
        friend-link a {
            display: inline-block;
            padding: 4px 0;
        }
        .copyright {
            border-top: 1px solid #3d2a1e;
            padding-top: 20px;
            text-align: center;
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 12px 0 4px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 16px;
                border-radius: 8px;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .header-inner {
                gap: 6px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .card {
                padding: 16px;
            }
            .section-highlight {
                padding: 20px 16px;
            }
            .search-box {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-box button {
                justify-content: center;
                padding: 12px;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.4rem;
            }
            h2 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f5f2ed;
        }
        ::-webkit-scrollbar-thumb {
            background: #b8860b;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #d4a017;
        }
        @media print {
            .site-header,
            .site-footer,
            .search-box,
            .rating-form,
            .comment-form,
            .nav-toggle {
                display: none !important;
            }
            body {
                background: #fff;
                font-size: 12pt;
            }
            .card {
                box-shadow: none;
                border: 1px solid #ddd;
            }
        }
