        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #faf9f6;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #d97706;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #b45309;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #1e1e2a;
        }
        h1 {
            font-size: 2.2rem;
            margin: 1.5rem 0 1rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.2rem 0 0.8rem;
            border-left: 5px solid #d97706;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.6rem 0 0.6rem;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.4rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }
        .text-center {
            text-align: center;
        }
        .text-muted {
            color: #6b7280;
            font-size: 0.9rem;
        }
        .fw-bold {
            font-weight: 700;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.25rem;
        }
        header {
            padding: 1.2rem 0 0.6rem;
            border-bottom: 2px solid #e5e7eb;
            margin-bottom: 1.2rem;
            position: relative;
        }
        .header-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #d97706;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #d97706, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #6b7280;
            color: #6b7280;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        nav a {
            padding: 0.4rem 0.9rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #374151;
            transition: background 0.2s, color 0.2s;
        }
        nav a:hover {
            background: #d97706;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #1e1e2a;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
        }
        .nav-overlay {
            display: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            font-size: 0.85rem;
            padding: 0.8rem 0 0.2rem;
            color: #6b7280;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #9ca3af;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #d97706;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #374151;
            font-weight: 500;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            max-width: 520px;
            margin: 1.6rem auto 1.2rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 2px solid #e5e7eb;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #d97706;
        }
        .search-form button {
            background: #d97706;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.7rem 1.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 1rem;
        }
        .search-form button:hover {
            background: #b45309;
        }
        .feature-image {
            margin: 1.8rem 0 2.2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .feature-image figcaption {
            font-size: 0.85rem;
            color: #6b7280;
            padding: 0.6rem 1rem 0.2rem;
            text-align: center;
            font-style: italic;
        }
        .content-article {
            background: #fff;
            border-radius: 20px;
            padding: 1.8rem 1.6rem;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
            margin-bottom: 2.5rem;
        }
        .content-article p {
            text-align: justify;
        }
        .highlight-box {
            background: #fffbeb;
            border-left: 5px solid #d97706;
            padding: 1.2rem 1.6rem;
            border-radius: 0 12px 12px 0;
            margin: 1.6rem 0;
        }
        .highlight-box strong {
            color: #92400e;
        }
        .inline-link {
            font-weight: 600;
            border-bottom: 1px dotted #d97706;
        }
        .comment-section,
        .rating-section {
            background: #fff;
            border-radius: 20px;
            padding: 1.8rem 1.6rem;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
            margin: 2rem 0;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form select,
        .rating-form input {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            margin-bottom: 0.8rem;
            transition: border 0.2s;
            outline: none;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form select:focus,
        .rating-form input:focus {
            border-color: #d97706;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            background: #d97706;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.7rem 2rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 1rem;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #b45309;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #fcd34d;
            margin-bottom: 0.8rem;
        }
        .rating-stars i {
            cursor: pointer;
            transition: transform 0.1s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        friend-link {
            display: block;
            padding: 1.2rem 0 0.6rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
            padding: 0.3rem 1rem;
            background: #f3f4f6;
            border-radius: 30px;
            font-size: 0.9rem;
            color: #374151;
            transition: background 0.2s, color 0.2s;
        }
        friend-link a:hover {
            background: #d97706;
            color: #fff;
            text-decoration: none;
        }
        footer {
            padding: 2rem 0 1.2rem;
            border-top: 2px solid #e5e7eb;
            margin-top: 2rem;
            text-align: center;
            font-size: 0.9rem;
            color: #6b7280;
        }
        footer .copyright {
            margin-top: 0.8rem;
            font-size: 0.85rem;
        }
        footer .copyright strong {
            color: #374151;
        }
        .last-updated {
            display: inline-block;
            background: #f3f4f6;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #6b7280;
            margin-bottom: 1.2rem;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
                padding-left: 0.7rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .content-article {
                padding: 1.2rem 0.8rem;
            }
            .comment-section,
            .rating-section {
                padding: 1.2rem 0.8rem;
            }
            .header-row {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: #fff;
                padding: 0.8rem 0;
                border-top: 1px solid #e5e7eb;
                margin-top: 0.4rem;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 0.6rem 1rem;
                border-radius: 8px;
            }
            .nav-overlay {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.3);
                z-index: 90;
            }
            .nav-overlay.active {
                display: block;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .feature-image {
                margin: 1.2rem 0 1.6rem;
            }
            .breadcrumb {
                font-size: 0.78rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (min-width: 769px) {
            nav {
                display: flex !important;
            }
            .hamburger {
                display: none !important;
            }
        }
        :target {
            scroll-margin-top: 80px;
        }
        .mt-2 {
            margin-top: 1.2rem;
        }
        .mb-2 {
            margin-bottom: 1.2rem;
        }
        .inline-icon {
            margin-right: 0.3rem;
        }
        .fa-regular,
        .fas,
        .far {
            font-size: 1.1em;
        }
