* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #f8f6f2;
            color: #1e1e1e;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #8b6508;
            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, #1a0f0a 0%, #2c1a12 100%);
            padding: 14px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
            border-bottom: 2px solid #b8860b;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px 20px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f7d875, #b8860b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(184, 134, 11, 0.3);
            font-family: 'Georgia', serif;
        }
        .my-logo:hover {
            text-decoration: none;
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f7d875;
            margin-right: 6px;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px 14px;
            flex-wrap: wrap;
        }
        .nav-list a {
            color: #f0e6d3;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background 0.25s, color 0.25s;
        }
        .nav-list a:hover {
            background: rgba(184, 134, 11, 0.25);
            color: #f7d875;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #b8860b;
            color: #f7d875;
            font-size: 1.6rem;
            padding: 6px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: #b8860b;
            color: #1a0f0a;
        }
        #nav-toggle {
            display: none;
        }
        #nav-toggle:checked+.nav-list {
            display: flex;
            flex-direction: column;
            width: 100%;
            background: #1a0f0a;
            padding: 16px 12px;
            border-radius: 12px;
            margin-top: 10px;
        }
        .breadcrumb-wrap {
            background: #f0ebe3;
            padding: 8px 0;
            border-bottom: 1px solid #ddd6cb;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 6px 12px;
            font-size: 0.85rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #b8860b;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #5a4a3a;
        }
        .breadcrumb .current {
            color: #b8860b;
            font-weight: 600;
        }
        main {
            padding: 30px 0 50px;
        }
        .page-title {
            font-size: 2.6rem;
            font-weight: 800;
            color: #1a0f0a;
            margin-bottom: 10px;
            line-height: 1.2;
            border-left: 6px solid #b8860b;
            padding-left: 20px;
        }
        .last-updated {
            display: block;
            font-size: 0.85rem;
            color: #7a6a5a;
            margin-bottom: 30px;
            font-style: italic;
        }
        .last-updated i {
            margin-right: 6px;
        }
        h2 {
            font-size: 2rem;
            color: #2c1a12;
            margin: 40px 0 16px;
            border-bottom: 3px solid #e8d5b5;
            padding-bottom: 8px;
        }
        h3 {
            font-size: 1.5rem;
            color: #3d2a1e;
            margin: 30px 0 12px;
        }
        h4 {
            font-size: 1.2rem;
            color: #4d3a2e;
            margin: 22px 0 8px;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2em;
        }
        .content-area {
            background: #fff;
            padding: 30px 30px 40px;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        }
        .content-area .featured-image {
            border-radius: 16px;
            margin: 20px 0 30px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
        }
        .highlight-box {
            background: #fcf8f0;
            border-left: 5px solid #b8860b;
            padding: 18px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #8b6508;
        }
        .emoji-lg {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .btn {
            display: inline-block;
            background: #b8860b;
            color: #fff;
            padding: 10px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: 0.25s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        .btn:hover {
            background: #8b6508;
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(184, 134, 11, 0.3);
            text-decoration: none;
            color: #fff;
        }
        .link-group {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 10px 20px;
            margin: 20px 0;
            padding: 0;
            list-style: none;
        }
        .link-group li a {
            display: block;
            padding: 8px 12px;
            background: #f8f4ee;
            border-radius: 8px;
            transition: 0.2s;
            font-weight: 500;
        }
        .link-group li a:hover {
            background: #e8d5b5;
            text-decoration: none;
            transform: translateX(4px);
        }
        .search-section {
            background: #f0ebe3;
            padding: 30px;
            border-radius: 16px;
            margin: 40px 0;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            max-width: 600px;
        }
        .search-form input[type="text"] {
            flex: 1 1 260px;
            padding: 14px 20px;
            border: 2px solid #ddd6cb;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: 0.25s;
        }
        .search-form input[type="text"]:focus {
            border-color: #b8860b;
            box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.15);
        }
        .search-form button {
            padding: 14px 32px;
            border: none;
            background: #b8860b;
            color: #fff;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: 0.25s;
            font-size: 1rem;
        }
        .search-form button:hover {
            background: #8b6508;
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0;
        }
        @media (max-width:768px) {
            .feedback-section {
                grid-template-columns: 1fr;
            }
        }
        .card-form {
            background: #fcfaf7;
            padding: 24px 28px;
            border-radius: 16px;
            border: 1px solid #e8ddd0;
        }
        .card-form h3 {
            margin-top: 0;
        }
        .card-form label {
            display: block;
            font-weight: 600;
            margin-top: 14px;
            margin-bottom: 4px;
            color: #2c1a12;
        }
        .card-form input,
        .card-form textarea,
        .card-form select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #ddd6cb;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            outline: none;
            transition: 0.2s;
            background: #fff;
        }
        .card-form input:focus,
        .card-form textarea:focus,
        .card-form select:focus {
            border-color: #b8860b;
        }
        .card-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .card-form .btn {
            margin-top: 16px;
            width: 100%;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin: 8px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ddd6cb;
            cursor: pointer;
            transition: 0.15s;
            margin: 0;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f7c948;
        }
        .site-footer {
            background: #1a0f0a;
            color: #e8ddd0;
            padding: 40px 0 20px;
            border-top: 3px solid #b8860b;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        @media (max-width:768px) {
            .footer-inner {
                grid-template-columns: 1fr;
            }
        }
        .footer-inner h4 {
            color: #f7d875;
            margin-bottom: 12px;
            border: none;
        }
        .footer-inner a {
            color: #c4b5a5;
        }
        .footer-inner a:hover {
            color: #f7d875;
        }
        friend-link {
            display: block;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #3d2a1e;
            font-size: 0.9rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 18px;
            margin-bottom: 6px;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            margin-top: 24px;
            border-top: 1px solid #3d2a1e;
            font-size: 0.85rem;
            color: #9a8a7a;
        }
        @media (max-width:768px) {
            .hamburger {
                display: inline-block;
            }
            .nav-list {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 6px;
            }
            .nav-list a {
                padding: 10px 14px;
                display: block;
            }
            #nav-toggle:checked+.nav-list {
                display: flex;
            }
            .header-inner {
                align-items: center;
            }
            .page-title {
                font-size: 1.8rem;
                padding-left: 14px;
            }
            .content-area {
                padding: 18px 14px 30px;
            }
            .search-section {
                padding: 18px;
            }
            .link-group {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width:480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .page-title {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .text-center {
            text-align: center;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .badge {
            display: inline-block;
            background: #b8860b;
            color: #fff;
            padding: 2px 14px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
