        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, 'Helvetica Neue', sans-serif;
            background: #f7f5f0;
            color: #2d2a24;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #1a6b4a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #0d4d34;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: #1e3b2f;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            font-weight: 600;
        }
        h1 {
            font-size: 2.2rem;
            border-left: 6px solid #d4a853;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.7rem;
            border-bottom: 2px solid #e0d6c8;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.3rem;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
        }
        strong {
            color: #1a4a34;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
            border-radius: 24px;
            padding: 1.5rem 2rem 2rem;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.5rem;
            }
            .container {
                padding: 1rem 1rem 1.5rem;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.6rem;
                padding-left: 0.7rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.1rem;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 0.8rem 0 1rem;
            border-bottom: 2px solid #e8e0d4;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -1px;
            color: #1e3b2f;
            background: linear-gradient(145deg, #d4a853, #b8923a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
            gap: 0.2rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none !important;
        }
        .my-logo i {
            -webkit-text-fill-color: #d4a853;
            font-size: 1.8rem;
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo i {
                font-size: 1.3rem;
            }
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.1rem;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
        }
        .nav-list li a {
            display: block;
            padding: 0.5rem 0.9rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #2d2a24;
            transition: background 0.2s, color 0.2s;
        }
        .nav-list li a:hover,
        .nav-list li a:focus {
            background: #1a6b4a;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1e3b2f;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #e8e0d4;
        }
        #nav-toggle {
            display: none;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #faf8f4;
                border-radius: 16px;
                padding: 0.8rem 0.5rem;
                margin-top: 0.8rem;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
                border: 1px solid #e8e0d4;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            .nav-wrapper {
                flex-wrap: wrap;
                width: 100%;
            }
            .nav-list li a {
                padding: 0.6rem 1rem;
                font-size: 1rem;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.8rem 0 0.2rem;
            margin: 0 0 1rem;
            font-size: 0.85rem;
            color: #6b6258;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 0.6rem;
            color: #b8a99a;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #1a6b4a;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .active {
            color: #4a3f35;
            font-weight: 500;
        }
        .search-section {
            background: #f4f0e9;
            border-radius: 60px;
            padding: 0.3rem 0.3rem 0.3rem 1.2rem;
            display: flex;
            align-items: center;
            max-width: 480px;
            margin: 1.2rem 0 1.8rem;
            border: 1px solid #ddd6ca;
            transition: box-shadow 0.2s;
        }
        .search-section:focus-within {
            box-shadow: 0 0 0 3px rgba(26, 107, 74, 0.2);
            border-color: #1a6b4a;
        }
        .search-section input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 0.7rem 0;
            font-size: 1rem;
            outline: none;
            color: #2d2a24;
            font-family: inherit;
        }
        .search-section input::placeholder {
            color: #9a8f80;
            font-style: italic;
        }
        .search-section button {
            background: #1a6b4a;
            border: none;
            color: #fff;
            font-size: 1rem;
            padding: 0.7rem 1.5rem;
            border-radius: 40px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-section button:hover {
            background: #0d4d34;
            transform: scale(1.02);
        }
        @media (max-width: 480px) {
            .search-section {
                border-radius: 30px;
                padding: 0.2rem 0.2rem 0.2rem 0.8rem;
                flex-wrap: wrap;
            }
            .search-section input {
                font-size: 0.9rem;
                padding: 0.5rem 0;
                min-width: 120px;
            }
            .search-section button {
                padding: 0.5rem 1rem;
                font-size: 0.85rem;
            }
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 1.8rem;
            }
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            background: #faf8f4;
            border-radius: 20px;
            padding: 1.5rem 1.2rem;
            border: 1px solid #e8e0d4;
            align-self: start;
            position: sticky;
            top: 1.5rem;
        }
        @media (max-width: 992px) {
            .sidebar {
                position: static;
                order: 2;
            }
        }
        .sidebar h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 2px solid #d4a853;
            padding-bottom: 0.4rem;
            display: inline-block;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 1rem 0 0;
        }
        .sidebar ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #e8e0d4;
            font-size: 0.95rem;
        }
        .sidebar ul li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar ul li a i {
            color: #d4a853;
            width: 1.2rem;
            text-align: center;
        }
        .featured-image {
            margin: 2rem 0 2.5rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        .featured-image figcaption {
            background: #f4f0e9;
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #5a4f42;
            font-style: italic;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0 2rem;
            border-radius: 12px;
            border: 1px solid #e0d6c8;
        }
        .table-wrap table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        .table-wrap th,
        .table-wrap td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e8e0d4;
        }
        .table-wrap th {
            background: #1e3b2f;
            color: #f5efe6;
            font-weight: 600;
        }
        .table-wrap tr:last-child td {
            border-bottom: none;
        }
        .table-wrap tr:hover td {
            background: #f8f4ed;
        }
        .feedback-section {
            background: #faf8f4;
            border-radius: 20px;
            padding: 2rem 1.8rem;
            margin: 2.5rem 0 1.5rem;
            border: 1px solid #e0d6c8;
        }
        .feedback-section h2 {
            margin-top: 0;
            border-bottom: none;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin-top: 1.2rem;
        }
        @media (max-width: 700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }
        .feedback-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.4rem 1.5rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
            border: 1px solid #e8e0d4;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .feedback-card input,
        .feedback-card textarea {
            padding: 0.7rem 1rem;
            border: 1px solid #ddd6ca;
            border-radius: 12px;
            font-family: inherit;
            font-size: 0.95rem;
            background: #fcfaf7;
            transition: border-color 0.2s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus {
            border-color: #1a6b4a;
            outline: none;
            box-shadow: 0 0 0 3px rgba(26, 107, 74, 0.1);
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card .btn-submit {
            background: #1a6b4a;
            color: #fff;
            border: none;
            padding: 0.7rem 1.2rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
        }
        .feedback-card .btn-submit:hover {
            background: #0d4d34;
            transform: scale(1.01);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.6rem;
            color: #ddd6ca;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #d4a853;
        }
        .site-footer {
            margin-top: 3rem;
            padding-top: 1.8rem;
            border-top: 2px solid #e8e0d4;
            font-size: 0.9rem;
            color: #5a4f42;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }
        .footer-col h4 {
            margin-top: 0;
            font-size: 1rem;
            color: #1e3b2f;
            border-bottom: 1px solid #ddd6ca;
            padding-bottom: 0.3rem;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0.6rem 0 0;
        }
        .footer-col ul li {
            padding: 0.2rem 0;
            font-size: 0.88rem;
        }
        .footer-col ul li a {
            color: #1a6b4a;
        }
        .footer-col ul li a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding: 1.2rem 0 0.5rem;
            border-top: 1px solid #e0d6c8;
            color: #7a6f60;
            font-size: 0.82rem;
        }
        .copyright strong {
            color: #1e3b2f;
        }
        friend-link {
            display: block;
            background: #f4f0e9;
            border-radius: 16px;
            padding: 1rem 1.4rem;
            margin: 1.5rem 0 0.5rem;
            font-size: 0.9rem;
            border: 1px solid #ddd6ca;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.8rem 0.3rem 0;
            padding: 0.2rem 0.6rem;
            background: #fff;
            border-radius: 20px;
            border: 1px solid #ddd6ca;
            font-size: 0.85rem;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #1a6b4a;
            color: #fff;
            border-color: #1a6b4a;
            text-decoration: none;
        }
        friend-link::before {
            content: "🌐 Friend Links";
            display: block;
            font-weight: 600;
            color: #1e3b2f;
            margin-bottom: 0.4rem;
            font-size: 0.95rem;
        }
        .badge {
            display: inline-block;
            background: #d4a853;
            color: #1e3b2f;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.15rem 0.6rem;
            border-radius: 30px;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        .last-updated {
            display: block;
            text-align: right;
            font-size: 0.82rem;
            color: #8a7f70;
            margin-top: 0.2rem;
            font-style: italic;
        }
        .emoji-lg {
            font-size: 1.3rem;
        }
        .tip-box {
            background: #edf5f0;
            border-left: 5px solid #1a6b4a;
            padding: 1rem 1.3rem;
            border-radius: 12px;
            margin: 1.5rem 0;
        }
        .tip-box strong {
            color: #0d4d34;
        }
        .inline-icon {
            margin-right: 0.3rem;
        }
        @media (max-width: 480px) {
            .feedback-section {
                padding: 1.2rem 1rem;
            }
            .feedback-card {
                padding: 1rem;
            }
        }
