* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            color: #1e1e2f;
            background: #f8f6f2;
            padding: 0 20px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
            border-radius: 24px;
            padding: 24px 32px 16px;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a2e0a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #1e1e2f;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.6rem;
            border-left: 6px solid #fbbf24;
            padding-left: 20px;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #f0e6d3;
            padding-bottom: 6px;
        }
        h3 {
            font-size: 1.35rem;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            color: #2d2d3f;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.4rem 1.8rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        strong {
            color: #1e1e2f;
        }
        .my-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: 800;
            color: #7a2e0a;
            letter-spacing: -0.5px;
            text-decoration: none;
            padding: 6px 0;
        }
        .my-logo i {
            color: #fbbf24;
            font-size: 2.2rem;
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        }
        .my-logo:hover {
            text-decoration: none;
            color: #b45309;
        }
        .my-logo span {
            background: linear-gradient(135deg, #7a2e0a, #b45309);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .header-top {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 8px 0 12px;
            border-bottom: 1px solid #eee5d8;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-bar a {
            padding: 8px 16px;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #2d2d3f;
            background: transparent;
            transition: background 0.2s, color 0.2s;
        }
        .nav-bar a:hover {
            background: #fbbf24;
            color: #1e1e2f;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.6rem;
            color: #7a2e0a;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
        }
        .hamburger:hover {
            background: #f0e6d3;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            width: 100%;
            background: #fdfaf5;
            border-radius: 16px;
            padding: 12px 8px;
            margin-top: 8px;
            border: 1px solid #eee5d8;
        }
        .nav-mobile a {
            padding: 10px 16px;
            border-radius: 12px;
            font-weight: 500;
            color: #2d2d3f;
        }
        .nav-mobile a:hover {
            background: #fbbf24;
            text-decoration: none;
        }
        .nav-mobile.show {
            display: flex;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.85rem;
            padding: 12px 0 8px;
            color: #7a7a8a;
            list-style: none;
        }
        .breadcrumb li {
            display: inline;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: #c4b8a8;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7a7a8a;
        }
        .breadcrumb a:hover {
            color: #b45309;
        }
        .hero-img-wrap {
            margin: 20px 0 24px;
            border-radius: 20px;
            overflow: hidden;
            background: #f0e6d3;
            position: relative;
        }
        .hero-img-wrap img {
            display: block;
            width: 100%;
            max-height: 420px;
            object-fit: cover;
        }
        .hero-img-wrap .img-credit {
            position: absolute;
            bottom: 8px;
            right: 12px;
            background: rgba(0, 0, 0, 0.55);
            color: #fff;
            padding: 2px 12px;
            border-radius: 40px;
            font-size: 0.75rem;
        }
        .linked-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
            gap: 8px 16px;
            background: #fdfaf5;
            border-radius: 16px;
            padding: 16px 20px;
            margin: 1.4rem 0;
            border: 1px solid #f0e6d3;
        }
        .linked-list a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 0;
            font-size: 0.92rem;
        }
        .linked-list a i {
            color: #fbbf24;
            font-size: 0.8rem;
        }
        .form-card {
            background: #fdfaf5;
            border-radius: 20px;
            padding: 24px 28px;
            margin: 1.8rem 0;
            border: 1px solid #eee5d8;
        }
        .form-card label {
            font-weight: 600;
            display: block;
            margin-bottom: 4px;
            color: #1e1e2f;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #ddd6cb;
            border-radius: 12px;
            font-size: 1rem;
            background: #ffffff;
            transition: border 0.2s;
            font-family: inherit;
        }
        .form-card input:focus,
        .form-card textarea:focus {
            outline: none;
            border-color: #fbbf24;
            box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
        }
        .form-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .form-card .btn {
            background: #fbbf24;
            border: none;
            color: #1e1e2f;
            font-weight: 700;
            padding: 12px 32px;
            border-radius: 40px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.2s, transform 0.1s;
            display: inline-block;
        }
        .form-card .btn:hover {
            background: #f59e0b;
            transform: scale(1.02);
        }
        .form-card .btn:active {
            transform: scale(0.97);
        }
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px 20px;
        }
        .form-grid .full {
            grid-column: 1 / -1;
        }
        @media (max-width:600px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
            .form-grid .full {
                grid-column: 1;
            }
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ddd6cb;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #fbbf24;
        }
        .comment-item {
            padding: 16px 0;
            border-bottom: 1px solid #f0e6d3;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-item .meta {
            font-size: 0.85rem;
            color: #7a7a8a;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .comment-item .meta strong {
            color: #1e1e2f;
        }
        friend-link {
            display: block;
            padding: 20px 0 12px;
            border-top: 2px solid #f0e6d3;
            margin-top: 28px;
        }
        friend-link .fl-title {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: #1e1e2f;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            padding: 4px 0;
            font-size: 0.95rem;
        }
        .footer {
            padding: 20px 0 12px;
            font-size: 0.85rem;
            color: #7a7a8a;
            border-top: 1px solid #eee5d8;
            margin-top: 16px;
            text-align: center;
        }
        .footer .copyright {
            font-size: 0.82rem;
        }
        .last-updated {
            display: inline-block;
            background: #f0e6d3;
            padding: 2px 16px 2px 12px;
            border-radius: 40px;
            font-size: 0.78rem;
            color: #5a4a3a;
            margin-bottom: 10px;
        }
        .styled-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            border-radius: 12px;
            overflow: hidden;
            font-size: 0.95rem;
        }
        .styled-table th {
            background: #7a2e0a;
            color: #fff;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        .styled-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #f0e6d3;
            background: #fdfaf5;
        }
        .styled-table tr:last-child td {
            border-bottom: none;
        }
        blockquote {
            border-left: 4px solid #fbbf24;
            background: #fdfaf5;
            padding: 16px 24px;
            margin: 1.4rem 0;
            border-radius: 0 16px 16px 0;
            font-style: italic;
            color: #3d3d4f;
        }
        @media (max-width: 800px) {
            .container {
                padding: 16px 16px 12px;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.8rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.4rem;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .nav-bar a.nav-hide-mobile {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.6rem;
            }
        }
        @media (min-width: 801px) {
            .nav-mobile {
                display: none !important;
            }
            .hamburger {
                display: none !important;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 12px 10px 8px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .form-card {
                padding: 16px 14px;
            }
            .linked-list {
                grid-template-columns: 1fr;
            }
        }
        .anchor-offset {
            scroll-margin-top: 20px;
        }
        .author-badge {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #fdfaf5;
            padding: 12px 20px;
            border-radius: 40px;
            margin: 16px 0 8px;
            font-size: 0.9rem;
            border: 1px solid #f0e6d3;
        }
        .author-badge i {
            font-size: 1.6rem;
            color: #b45309;
        }
