        *,
        *::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, sans-serif;
            background: #f5f3ef;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0 1rem;
            max-width: 1300px;
            margin: 0 auto;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #78350f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            line-height: 1.25;
            color: #2d2a24;
            font-weight: 700;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #b45309;
            padding-left: 1.2rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #e2dcd3;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #3f3a33;
        }
        h4 {
            font-size: 1.1rem;
            color: #5a5248;
        }
        p {
            margin-bottom: 1.2rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.4rem 2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            background: #ffffff;
            border-radius: 24px;
            padding: 1.8rem 2rem 2.5rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
            margin: 1.5rem 0 2.5rem;
        }
        .badge {
            display: inline-block;
            background: #b45309;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.25rem 0.9rem;
            border-radius: 40px;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        hr {
            border: none;
            border-top: 1px solid #e2dcd3;
            margin: 2.2rem 0;
        }
        .small-text {
            font-size: 0.9rem;
            color: #6b645c;
        }
        .last-updated {
            display: inline-block;
            background: #ede9e3;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #3f3a33;
            font-weight: 500;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fcfaf8;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e8e2da;
        }
        th {
            background: #e2dcd3;
            font-weight: 600;
            color: #2d2a24;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0 0.5rem;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            color: #2d2a24;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #b45309, #78350f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #b45309;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none !important;
        }
        .nav-bar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.2rem 1.2rem;
        }
        .nav-bar a {
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            color: #3f3a33;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .nav-bar a:hover {
            border-bottom-color: #b45309;
            color: #b45309;
            text-decoration: none;
        }
        .nav-bar .active {
            border-bottom-color: #b45309;
            color: #b45309;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            cursor: pointer;
            color: #2d2a24;
            padding: 0.2rem 0.4rem;
        }
        .hamburger:focus-visible {
            outline: 2px solid #b45309;
            outline-offset: 2px;
            border-radius: 4px;
        }
        .nav-mobile {
            display: none;
            width: 100%;
            flex-direction: column;
            background: #fcfaf8;
            border-radius: 16px;
            padding: 1rem 1.2rem;
            margin-top: 0.6rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        }
        .nav-mobile a {
            padding: 0.6rem 0;
            border-bottom: 1px solid #ede9e3;
            font-weight: 500;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .nav-mobile.show {
            display: flex;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            font-size: 0.85rem;
            color: #6b645c;
            padding: 0.4rem 0 0.2rem;
            list-style: none;
            margin: 0;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "/";
            color: #b9b0a6;
            margin-right: 0.4rem;
        }
        .breadcrumb a {
            color: #6b645c;
        }
        .breadcrumb a:hover {
            color: #b45309;
        }
        .form-card {
            background: #fcfaf8;
            border: 1px solid #e2dcd3;
            border-radius: 16px;
            padding: 1.5rem 1.8rem;
            margin: 1.8rem 0;
        }
        .form-card label {
            font-weight: 600;
            display: block;
            margin-bottom: 0.25rem;
            color: #2d2a24;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 1px solid #d4ccc2;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background: #fff;
            transition: border-color 0.2s;
            margin-bottom: 1rem;
        }
        .form-card input:focus,
        .form-card textarea:focus,
        .form-card select:focus {
            outline: none;
            border-color: #b45309;
            box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.12);
        }
        .form-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            background: #b45309;
            color: #fff;
            font-weight: 600;
            padding: 0.7rem 2rem;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
        }
        .btn:hover {
            background: #78350f;
            transform: scale(0.98);
        }
        .btn-secondary {
            background: #e2dcd3;
            color: #2d2a24;
        }
        .btn-secondary:hover {
            background: #d4ccc2;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 1.8rem;
            margin: 0.4rem 0 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #d4ccc2;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f59e0b;
        }
        .comment-item {
            border-bottom: 1px solid #ede9e3;
            padding: 1rem 0;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: 600;
            color: #2d2a24;
        }
        .comment-date {
            font-size: 0.8rem;
            color: #8a7f73;
            margin-left: 0.6rem;
        }
        .comment-text {
            margin-top: 0.3rem;
            color: #3f3a33;
        }
        friend-link {
            display: block;
            padding: 1.5rem 0 0.5rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1rem 0.3rem 0;
            font-weight: 500;
        }
        .site-footer {
            border-top: 2px solid #e2dcd3;
            padding: 1.8rem 0 2.2rem;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: #6b645c;
            text-align: center;
        }
        .site-footer .copyright {
            margin-top: 0.8rem;
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            .container {
                padding: 1.2rem 1rem 1.8rem;
                border-radius: 18px;
            }
            h1 {
                font-size: 1.7rem;
                padding-left: 0.8rem;
                border-left-width: 4px;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .site-header {
                flex-wrap: wrap;
            }
            .nav-bar {
                display: none;
            }
            .hamburger {
                display: inline-block;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .form-card {
                padding: 1rem 1.2rem;
            }
            .star-rating {
                font-size: 1.5rem;
            }
            table {
                font-size: 0.85rem;
            }
            th,
            td {
                padding: 0.5rem 0.6rem;
            }
        }
        @media (min-width: 769px) {
            .nav-mobile {
                display: none !important;
            }
        }
        @media (max-width: 400px) {
            h1 {
                font-size: 1.4rem;
            }
            .container {
                padding: 0.8rem 0.8rem 1.2rem;
            }
        }
        .flex-between {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .highlight-box {
            background: #f0ebe4;
            border-left: 4px solid #b45309;
            padding: 1rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.4rem 0;
        }
        .quote {
            font-style: italic;
            color: #3f3a33;
            padding: 0.8rem 1.6rem;
            border-left: 3px solid #b45309;
            background: #fcfaf8;
            border-radius: 0 12px 12px 0;
            margin: 1.4rem 0;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
        }
        @media (max-width: 680px) {
            .grid-2 {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }
        .inline-list {
            list-style: none;
            margin: 0.4rem 0 1.2rem;
            padding: 0;
        }
        .inline-list li {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
        }
        .inline-list li::after {
            content: "•";
            color: #b45309;
            margin-left: 0.6rem;
        }
        .inline-list li:last-child::after {
            content: "";
        }
