        *,
        *::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, BlinkMacSystemFont, sans-serif;
            background: #f8f6f1;
            color: #1e2a2f;
            line-height: 1.7;
            padding: 0 1rem;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #b4532d;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #7a2e12;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 24px 24px 0 0;
            padding: 1.5rem 2rem 2rem;
        }
        @media (max-width: 640px) {
            body {
                padding: 0 0.5rem;
            }
            .container {
                padding: 1rem 1rem 1.5rem;
                border-radius: 16px 16px 0 0;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 0 1rem;
            border-bottom: 2px solid #e8e2d8;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(145deg, #2d4b3c, #1f362a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 0.2rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #b4532d;
            font-size: 2rem;
            margin-right: 4px;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem 0.9rem;
            align-items: center;
        }
        .nav-list li a {
            font-weight: 500;
            padding: 0.3rem 0.2rem;
            font-size: 0.95rem;
            color: #2d2d2d;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-list li a:hover {
            border-bottom-color: #b4532d;
            color: #1a1a1a;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #2d4b3c;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            border-radius: 8px;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: #ede8e0;
        }
        #nav-toggle {
            display: none;
        }
        @media (max-width: 800px) {
            .hamburger {
                display: inline-block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #ffffff;
                padding: 1rem 0.5rem;
                border-radius: 16px;
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                z-index: 99;
                gap: 0.3rem 0;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            .nav-wrapper {
                flex-wrap: wrap;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.8rem 0 0.2rem;
            font-size: 0.85rem;
            color: #5e6b66;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #b9b0a6;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #5e6b66;
        }
        .breadcrumb a:hover {
            color: #b4532d;
        }
        h1 {
            font-size: 2.7rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 1.2rem 0 0.5rem;
            color: #1f362a;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 2.2rem 0 0.8rem;
            padding-bottom: 0.3rem;
            border-bottom: 3px solid #e8e2d8;
            color: #2d4b3c;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 1.8rem 0 0.6rem;
            color: #1f362a;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.4rem 0 0.4rem;
            color: #2d4b3c;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 400;
            color: #2e3d36;
            background: #f3efe9;
            padding: 1.2rem 1.8rem;
            border-radius: 16px;
            border-left: 6px solid #b4532d;
        }
        @media (max-width: 640px) {
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .lead {
                padding: 0.9rem 1.2rem;
                font-size: 1.05rem;
            }
        }
        .featured-media {
            margin: 2rem 0 1.5rem;
            border-radius: 16px;
            overflow: hidden;
            background: #f0ebe3;
            padding: 0.5rem;
        }
        .featured-media figcaption {
            padding: 0.6rem 0.8rem 0.3rem;
            font-size: 0.9rem;
            color: #4a5a52;
            font-style: italic;
            text-align: center;
        }
        .grid-2,
        .grid-3 {
            display: grid;
            gap: 1.8rem;
            margin: 1.8rem 0;
        }
        .grid-2 {
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        }
        .grid-3 {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }
        .card {
            background: #faf8f4;
            padding: 1.5rem 1.2rem;
            border-radius: 20px;
            border: 1px solid #e8e2d8;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
        }
        .card i {
            color: #b4532d;
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
        }
        .card h3 {
            margin-top: 0.2rem;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
            background: #faf8f4;
            border-radius: 16px;
            overflow: hidden;
        }
        .data-table th {
            background: #2d4b3c;
            color: #fff;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #e8e2d8;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f0ebe3;
        }
        .form-section {
            background: #faf8f4;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border: 1px solid #e8e2d8;
        }
        .form-section h3 {
            margin-top: 0;
        }
        .form-group {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
            margin: 0.8rem 0;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            flex: 1 1 200px;
            padding: 0.7rem 1rem;
            border: 1px solid #d5cdc0;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #fff;
            transition: 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #b4532d;
            outline: none;
            box-shadow: 0 0 0 3px rgba(180, 83, 45, 0.15);
        }
        .form-group textarea {
            min-height: 80px;
            resize: vertical;
        }
        .btn {
            background: #2d4b3c;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background: #1f362a;
            transform: scale(1.02);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #2d4b3c;
            color: #2d4b3c;
        }
        .btn-outline:hover {
            background: #2d4b3c;
            color: #fff;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #d5cdc0;
            cursor: pointer;
            transition: 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f5b342;
        }
        .site-footer {
            background: #1e2a2f;
            color: #d9d5cf;
            padding: 2.5rem 2rem 1.8rem;
            border-radius: 24px 24px 0 0;
            margin-top: 2.5rem;
        }
        .site-footer a {
            color: #d9d5cf;
        }
        .site-footer a:hover {
            color: #f5b342;
        }
        friend-link {
            display: block;
            margin: 1.2rem 0 0.8rem;
            font-weight: 500;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1rem 0.2rem 0;
            padding: 0.2rem 0;
        }
        .copyright {
            border-top: 1px solid #3a4a44;
            padding-top: 1.5rem;
            margin-top: 1.2rem;
            font-size: 0.85rem;
            text-align: center;
            color: #9eaaa4;
        }
        .badge {
            display: inline-block;
            background: #b4532d;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.15rem 0.7rem;
            border-radius: 40px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .highlight {
            background: #fcf3e7;
            padding: 0.1rem 0.3rem;
            border-radius: 6px;
            font-weight: 600;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #5e6b66;
            margin: 0.2rem 0 1rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        @media (max-width: 480px) {
            .form-section {
                padding: 1.2rem 1rem;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
        }
