        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f9f6f0;
            color: #2c2418;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        a {
            color: #b87c3a;
            text-decoration: none;
            transition: color 0.25s, border-bottom 0.25s;
        }
        a:hover {
            color: #8b5e2a;
            border-bottom: 1px solid #b87c3a;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 24px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1e160e;
            letter-spacing: -0.5px;
            line-height: 1.2;
            margin-bottom: 0.6rem;
            border-left: 6px solid #b87c3a;
            padding-left: 20px;
        }
        h2 {
            font-size: 2.1rem;
            font-weight: 700;
            color: #2c1f12;
            margin: 2.4rem 0 1rem 0;
            border-bottom: 2px solid #e6d8c4;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.6rem;
            font-weight: 600;
            color: #3d2c1b;
            margin: 1.8rem 0 0.8rem 0;
        }
        h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #4f3a26;
            margin: 1.2rem 0 0.5rem 0;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #4a3b2c;
            line-height: 1.8;
        }
        .site-header {
            background: #1e160e;
            padding: 0 24px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            max-width: 1180px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            min-height: 70px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #e6d8c4;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: none;
        }
        .my-logo:hover {
            color: #f0e4d2;
            border: none;
        }
        .my-logo span {
            color: #b87c3a;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e6d8c4;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 6px 10px;
            border-radius: 6px;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .main-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #d9ccbc;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            border: none;
        }
        .main-nav a:hover {
            background: #b87c3a;
            color: #1e160e;
            border: none;
        }
        .main-nav .active {
            background: #b87c3a;
            color: #1e160e;
        }
        .breadcrumb {
            background: #e6d8c4;
            padding: 10px 24px;
            font-size: 0.9rem;
            color: #4a3b2c;
        }
        .breadcrumb-inner {
            max-width: 1180px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: #6b4f32;
            border: none;
        }
        .breadcrumb a:hover {
            color: #b87c3a;
            border: none;
        }
        .breadcrumb span {
            margin: 0 6px;
            color: #8a7a6a;
        }
        .hero-image {
            margin: 2rem 0 1.5rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
            background: #dccfc0;
        }
        .hero-image img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 2rem 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            background: #f0e8dd;
            border-radius: 16px;
            padding: 28px 22px;
            height: fit-content;
            position: sticky;
            top: 100px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .sidebar h3 {
            font-size: 1.3rem;
            margin-top: 0;
            border-bottom: 2px solid #d4c4b0;
            padding-bottom: 8px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar ul li {
            padding: 6px 0;
            border-bottom: 1px solid #e0d4c4;
        }
        .sidebar ul li a {
            display: block;
            padding: 4px 0;
        }
        .block-quote {
            background: #e6d8c4;
            border-left: 6px solid #b87c3a;
            padding: 20px 28px;
            margin: 1.8rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            font-size: 1.1rem;
            color: #2c1f12;
        }
        .block-quote strong {
            font-style: normal;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.6rem 0;
            background: #fcf9f5;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .data-table th {
            background: #2c1f12;
            color: #f0e8dd;
            padding: 14px 18px;
            font-weight: 600;
            text-align: left;
        }
        .data-table td {
            padding: 12px 18px;
            border-bottom: 1px solid #e6d8c4;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f5ede2;
        }
        .search-box {
            display: flex;
            gap: 10px;
            margin: 1.8rem 0;
            background: #fff;
            border-radius: 50px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            padding: 4px 4px 4px 20px;
            border: 1px solid #e6d8c4;
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 14px 6px;
            font-size: 1rem;
            background: transparent;
            outline: none;
            color: #2c2418;
        }
        .search-box button {
            background: #b87c3a;
            border: none;
            color: #fff;
            padding: 12px 32px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
        }
        .search-box button:hover {
            background: #9e6730;
        }
        .comment-section,
        .rating-section {
            background: #f0e8dd;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 2rem 0;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            border-bottom: 2px solid #d4c4b0;
            padding-bottom: 8px;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form select,
        .rating-form input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #d4c4b0;
            border-radius: 10px;
            font-size: 1rem;
            background: #fff;
            margin-bottom: 14px;
            font-family: inherit;
            transition: border 0.2s;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form select:focus {
            border-color: #b87c3a;
            outline: none;
            box-shadow: 0 0 0 3px rgba(184, 124, 58, 0.15);
        }
        .comment-form .btn,
        .rating-form .btn {
            background: #b87c3a;
            color: #fff;
            border: none;
            padding: 12px 36px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .comment-form .btn:hover,
        .rating-form .btn:hover {
            background: #9e6730;
            transform: scale(1.02);
        }
        .star-display {
            font-size: 1.8rem;
            letter-spacing: 4px;
            color: #d4c4b0;
            cursor: pointer;
            user-select: none;
        }
        .star-display .star {
            transition: color 0.2s;
        }
        .star-display .star.active {
            color: #b87c3a;
        }
        friend-link {
            display: block;
            padding: 20px 0;
            border-top: 2px solid #e6d8c4;
            margin-top: 20px;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0 12px 6px 0;
            padding: 4px 12px;
            background: #e6d8c4;
            border-radius: 30px;
            color: #2c1f12;
            font-weight: 500;
            border: none;
            transition: background 0.25s;
        }
        friend-link a:hover {
            background: #b87c3a;
            color: #fff;
            border: none;
        }
        .site-footer {
            background: #1e160e;
            color: #c4b8a8;
            padding: 40px 24px 30px;
            margin-top: 3rem;
        }
        .footer-inner {
            max-width: 1180px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        .footer-inner h4 {
            color: #e6d8c4;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner ul li {
            padding: 4px 0;
        }
        .footer-inner ul li a {
            color: #c4b8a8;
            border: none;
        }
        .footer-inner ul li a:hover {
            color: #f0e4d2;
            border: none;
        }
        .copyright {
            max-width: 1180px;
            margin: 30px auto 0;
            padding-top: 20px;
            border-top: 1px solid #3d2c1b;
            text-align: center;
            font-size: 0.9rem;
            color: #8a7a6a;
        }
        .last-updated {
            display: inline-block;
            background: #b87c3a;
            color: #1e160e;
            padding: 2px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 6px;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.35rem;
            }
        }
        @media (max-width: 700px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 12px 0 18px 0;
                gap: 2px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 16px;
                border-radius: 8px;
                width: 100%;
            }
            .header-inner {
                min-height: 60px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            h1 {
                font-size: 1.8rem;
                padding-left: 14px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .search-box {
                flex-direction: column;
                border-radius: 20px;
                padding: 16px;
                background: #fff;
            }
            .search-box input {
                width: 100%;
                padding: 12px 10px;
            }
            .search-box button {
                width: 100%;
                border-radius: 30px;
                padding: 14px;
            }
            .data-table th,
            .data-table td {
                padding: 10px 12px;
                font-size: 0.9rem;
            }
            .comment-section,
            .rating-section {
                padding: 20px 18px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .lead {
                font-size: 1.1rem;
            }
            .block-quote {
                padding: 14px 18px;
                font-size: 1rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .tag {
            background: #e6d8c4;
            color: #2c1f12;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 500;
            display: inline-block;
        }
        .tag:hover {
            background: #b87c3a;
            color: #fff;
        }
