        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f5f1eb;
            color: #1e1e1e;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a2e00;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #2d1b0e, #4a2c17);
            padding: 16px 0;
            border-bottom: 4px solid #eab308;
            position: sticky;
            top: 0;
            z-index: 100;
            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;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            font-family: 'Georgia', serif;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #d4a373;
            display: block;
            font-weight: 400;
            letter-spacing: 2px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #fbbf24;
            color: #fbbf24;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #fbbf24;
            color: #2d1b0e;
        }
        .nav-menu {
            display: flex;
            gap: 8px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #f5e3c3;
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 6px;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .nav-menu a:hover {
            background: rgba(251, 191, 36, 0.15);
            color: #fbbf24;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 6px;
        }
        .breadcrumb {
            background: #eaddcf;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #d6c4b2;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #8a6f5a;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6b4f3a;
        }
        .breadcrumb .current {
            color: #2d1b0e;
            font-weight: 600;
        }
        .search-bar {
            display: flex;
            gap: 6px;
            max-width: 320px;
            margin: 6px 0;
        }
        .search-bar input {
            flex: 1;
            padding: 10px 14px;
            border: 2px solid #d6c4b2;
            border-radius: 30px;
            font-size: 0.9rem;
            background: #fefcf8;
            outline: none;
            transition: 0.2s;
        }
        .search-bar input:focus {
            border-color: #b45309;
            box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.15);
        }
        .search-bar button {
            background: #b45309;
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 0 20px;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-bar button:hover {
            background: #7a2e00;
        }
        main {
            padding: 30px 0 50px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #2d1b0e;
            margin-bottom: 12px;
            line-height: 1.2;
            border-left: 6px solid #eab308;
            padding-left: 20px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #3a2416;
            margin-top: 48px;
            margin-bottom: 16px;
            border-bottom: 2px solid #eaddcf;
            padding-bottom: 8px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #4a2c17;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #5c3a22;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #2a2a2a;
        }
        .content-section {
            background: #fefcf8;
            border-radius: 20px;
            padding: 30px 35px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }
        .featured-image {
            margin: 28px 0 30px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            background: #eaddcf;
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #5c3a22;
            background: #f5ede4;
            font-style: italic;
        }
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0 30px;
            font-size: 0.98rem;
            background: #faf6f0;
            border-radius: 12px;
            overflow: hidden;
        }
        .info-table th {
            background: #4a2c17;
            color: #f5e3c3;
            text-align: left;
            padding: 12px 16px;
            font-weight: 600;
        }
        .info-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #eaddcf;
        }
        .info-table tr:last-child td {
            border-bottom: none;
        }
        .info-table tr:hover td {
            background: #f5ede4;
        }
        ul,
        ol {
            margin: 12px 0 20px 24px;
        }
        li {
            margin-bottom: 6px;
            font-size: 1.02rem;
        }
        blockquote {
            border-left: 5px solid #eab308;
            background: #faf3e8;
            padding: 16px 24px;
            margin: 24px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #3a2416;
        }
        blockquote footer {
            margin-top: 8px;
            font-weight: 600;
            color: #7a2e00;
        }
        .highlight {
            background: linear-gradient(120deg, #fef3c7 0%, #fde68a 100%);
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #b45309;
            color: #fff;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .interaction-panel {
            background: #faf6f0;
            border-radius: 16px;
            padding: 28px 30px;
            margin-top: 50px;
            border: 1px solid #eaddcf;
        }
        .interaction-panel h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            color: #3a2416;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #d6c4b2;
            border-radius: 10px;
            font-size: 1rem;
            background: #fefcf8;
            transition: 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #b45309;
            box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.1);
            outline: none;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #d6c4b2;
            cursor: pointer;
            transition: 0.15s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #eab308;
        }
        .btn {
            display: inline-block;
            padding: 12px 32px;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            background: #b45309;
            color: #fff;
        }
        .btn:hover {
            background: #7a2e00;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(180, 83, 9, 0.3);
        }
        .btn-secondary {
            background: #4a2c17;
        }
        .btn-secondary:hover {
            background: #2d1b0e;
        }
        .site-footer {
            background: #2d1b0e;
            color: #eaddcf;
            padding: 40px 0 20px;
            border-top: 4px solid #eab308;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-inner h4 {
            color: #fbbf24;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-inner p,
        .footer-inner a {
            color: #d6c4b2;
            font-size: 0.95rem;
        }
        .footer-inner a:hover {
            color: #fbbf24;
        }
        friend-link {
            display: block;
            padding: 20px 0;
            border-top: 1px solid #4a2c17;
            border-bottom: 1px solid #4a2c17;
            margin-bottom: 20px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            color: #d6c4b2;
            font-size: 0.95rem;
        }
        friend-link a:hover {
            color: #fbbf24;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            font-size: 0.88rem;
            color: #8a6f5a;
            border-top: 1px solid #3a2416;
        }
        .last-updated {
            display: inline-block;
            background: #eaddcf;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #4a2c17;
            font-weight: 500;
            margin-bottom: 20px;
        }
        .last-updated i {
            margin-right: 6px;
        }
        @media (max-width: 992px) {
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #3a2416;
                padding: 16px;
                border-radius: 12px;
                margin-top: 12px;
                gap: 6px;
            }
            .nav-menu.open {
                display: flex;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            h1 {
                font-size: 1.9rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .content-section {
                padding: 18px 16px;
            }
            .interaction-panel {
                padding: 18px 16px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .search-bar {
                max-width: 100%;
            }
            .info-table {
                font-size: 0.85rem;
            }
            .info-table th,
            .info-table td {
                padding: 8px 10px;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            .star-rating label {
                font-size: 1.5rem;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
        }
        :target {
            scroll-margin-top: 100px;
        }
        .text-muted {
            color: #6b4f3a;
            font-size: 0.95rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .gap-8 {
            gap: 8px;
        }
