        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #fdf8f0;
            color: #2c2c2c;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #b45f2e;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus {
            color: #8a451f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 0.75rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #f7d9c4 0%, #fce6d4 100%);
            border-bottom: 4px solid #e8b48c;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #b45f2e, #d4834a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(180, 95, 46, 0.15);
            transition: transform 0.3s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #6b4a3a;
            background: none;
            color: #6b4a3a;
            display: block;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #b45f2e;
            border-radius: 8px;
            padding: 0.4rem 0.8rem;
            font-size: 1.5rem;
            color: #b45f2e;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #b45f2e20;
        }
        .main-nav {
            display: flex;
            gap: 0.25rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #4d3428;
            transition: background 0.25s, color 0.25s;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            background: #b45f2e20;
            color: #8a451f;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #b45f2e;
            color: #fff;
        }
        .breadcrumb {
            background: #f5ede6;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #e6d5c8;
        }
        .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: #b45f2e;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7a5a48;
        }
        .breadcrumb .current {
            color: #2c2c2c;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #faeede 0%, #f5e2d0 100%);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            margin: 2rem 0 1.5rem;
            text-align: center;
            border: 1px solid #ecdccf;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #4d3428;
            line-height: 1.2;
            margin-bottom: 0.75rem;
        }
        .hero h1 span {
            background: linear-gradient(135deg, #b45f2e, #d4834a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            color: #5e4538;
            max-width: 720px;
            margin: 0 auto 1rem;
        }
        .hero .meta-badge {
            display: inline-block;
            background: #fff;
            padding: 0.3rem 1.4rem;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #b45f2e;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            border: 1px solid #ecdccf;
        }
        .hero .meta-badge i {
            margin-right: 0.4rem;
        }
        section {
            margin: 3rem 0;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #3d2b20;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #e8b48c;
            display: inline-block;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #4d3428;
            margin: 1.75rem 0 0.75rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #5e4538;
            margin: 1.2rem 0 0.5rem;
        }
        p {
            margin: 0.85rem 0;
            color: #3a2e26;
        }
        .content-card {
            background: #fffdfa;
            border-radius: 16px;
            padding: 2rem 2rem 1.5rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            border: 1px solid #f0e4da;
            margin: 1.5rem 0;
            transition: box-shadow 0.3s;
        }
        .content-card:hover {
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
        }
        .highlight-box {
            background: #f7ede5;
            border-left: 5px solid #b45f2e;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.2rem 0;
        }
        .highlight-box strong {
            color: #8a451f;
        }
        .emoji-lg {
            font-size: 1.6rem;
            margin-right: 0.3rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
            background: #f5ede6;
        }
        .featured-image img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #5e4538;
            background: #faf3ec;
            border-top: 1px solid #e6d5c8;
            font-style: italic;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 0.75rem;
            margin: 1rem 0;
        }
        .link-grid a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: #faf3ec;
            padding: 0.7rem 1.2rem;
            border-radius: 30px;
            font-weight: 500;
            border: 1px solid #ecdccf;
            transition: background 0.25s, transform 0.2s;
        }
        .link-grid a:hover {
            background: #f0e4da;
            transform: translateY(-2px);
            text-decoration: none;
        }
        .link-grid a i {
            color: #b45f2e;
            font-size: 0.9rem;
        }
        .search-section {
            background: #fffdfa;
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid #f0e4da;
            margin: 2.5rem 0;
        }
        .search-form {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            max-width: 640px;
            margin: 1rem 0 0;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #e6d5c8;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            transition: border-color 0.3s;
            outline: none;
        }
        .search-form input:focus {
            border-color: #b45f2e;
        }
        .search-form button {
            padding: 0.8rem 1.8rem;
            background: #b45f2e;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #8a451f;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }
        @media (max-width: 768px) {
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        .feedback-card {
            background: #fffdfa;
            border-radius: 16px;
            padding: 1.8rem;
            border: 1px solid #f0e4da;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card form {
            margin-top: 0.8rem;
        }
        .feedback-card input,
        .feedback-card textarea {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #e6d5c8;
            border-radius: 10px;
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
            font-family: inherit;
            resize: vertical;
            transition: border-color 0.3s;
            outline: none;
            background: #fff;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus {
            border-color: #b45f2e;
        }
        .feedback-card textarea {
            min-height: 90px;
        }
        .feedback-card .btn-submit {
            padding: 0.7rem 2rem;
            background: #b45f2e;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card .btn-submit:hover {
            background: #8a451f;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.15rem;
            margin: 0.5rem 0 0.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating label::before {
            content: "\f005";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
        }
        .star-rating input:checked~label {
            color: #f5b342;
        }
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f5b342;
            transform: scale(1.1);
        }
        .star-rating input:checked+label:hover,
        .star-rating input:checked+label:hover~label {
            color: #f5b342;
        }
        .site-footer {
            background: #3d2b20;
            color: #f0e4da;
            padding: 2.5rem 0 1.2rem;
            margin-top: 3.5rem;
            border-top: 6px solid #b45f2e;
        }
        .site-footer a {
            color: #e8b48c;
        }
        .site-footer a:hover {
            color: #f7d9c4;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        .footer-inner h4 {
            color: #f7d9c4;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
        }
        .footer-inner p,
        .footer-inner li {
            font-size: 0.95rem;
            color: #d9c6b8;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-inner ul li {
            margin-bottom: 0.4rem;
        }
        friend-link {
            display: block;
            margin: 0.5rem 0;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            padding: 0.2rem 0.6rem;
            border-radius: 12px;
            background: #4d3428;
            margin: 0.2rem 0.3rem 0.2rem 0;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #5e4538;
            text-decoration: none;
        }
        .copyright {
            border-top: 1px solid #5e4538;
            padding-top: 1.2rem;
            margin-top: 1.5rem;
            text-align: center;
            font-size: 0.9rem;
            color: #b8a293;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #fffdfa;
                border-radius: 16px;
                padding: 0.8rem 0.5rem;
                border: 1px solid #ecdccf;
                margin-top: 0.5rem;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1.2rem;
                border-radius: 12px;
                width: 100%;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero {
                padding: 1.5rem 1rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 14px;
            }
            .link-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .search-form input {
                min-width: 140px;
            }
            .content-card {
                padding: 1.2rem;
            }
        }
        .text-muted {
            color: #7a5a48;
            font-size: 0.95rem;
        }
        .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: 0.5rem;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #7a5a48;
            background: #f5ede6;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            display: inline-block;
        }
        .last-updated i {
            margin-right: 0.4rem;
        }
        @media print {
            .site-header {
                position: static;
                box-shadow: none;
            }
            .nav-toggle,
            .search-form button {
                display: none;
            }
            .main-nav {
                display: flex !important;
            }
            .site-footer {
                break-inside: avoid;
            }
        }
