        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #f8f6f1;
            color: #2d2a24;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a3b06;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            color: #1f1b16;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
            border-left: 6px solid #d97706;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.8rem 0 0.8rem;
            color: #3d352c;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.5rem;
            color: #5c4f40;
        }
        p {
            margin-bottom: 1.2rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.2rem 1.6rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 24px;
            padding: 1.5rem 2rem 2rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 0.8rem 0 1.2rem;
            border-bottom: 2px solid #e6dfd3;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #1f1b16;
            background: linear-gradient(135deg, #d97706, #b45309);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        .nav-toggle {
            display: none;
            font-size: 1.6rem;
            background: none;
            border: none;
            color: #2d2a24;
            cursor: pointer;
            padding: 0.4rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f0e8dc;
        }
        nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #3d352c;
            transition: background 0.2s, color 0.2s;
        }
        nav a:hover {
            background: #d97706;
            color: #fff;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.8rem 0 0.2rem;
            font-size: 0.9rem;
            color: #7a6f5e;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.6rem;
            color: #b9aa96;
        }
        .breadcrumb a {
            color: #7a6f5e;
        }
        .breadcrumb a:hover {
            color: #b45309;
        }
        .search-form {
            display: flex;
            max-width: 480px;
            margin: 1.2rem 0 1.8rem;
            border-radius: 60px;
            overflow: hidden;
            border: 2px solid #e6dfd3;
            background: #fff;
            transition: border-color 0.3s;
        }
        .search-form:focus-within {
            border-color: #d97706;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border: none;
            outline: none;
            font-size: 1rem;
            background: transparent;
            font-family: inherit;
        }
        .search-form button {
            background: #d97706;
            color: #fff;
            border: none;
            padding: 0 1.4rem;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-form button:hover {
            background: #b45309;
        }
        .featured-img-wrap {
            margin: 1.8rem 0 2.2rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .featured-img-wrap img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
        }
        .rating-area,
        .comment-area {
            background: #faf7f2;
            border-radius: 16px;
            padding: 1.5rem 1.8rem;
            margin: 2rem 0 1.5rem;
            border: 1px solid #e6dfd3;
        }
        .rating-area h3,
        .comment-area h3 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #e6dfd3;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.2s;
            color: #d1c7b7;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f59e0b;
        }
        .rating-form button,
        .comment-area button {
            background: #d97706;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            margin-top: 0.8rem;
        }
        .rating-form button:hover,
        .comment-area button:hover {
            background: #b45309;
            transform: scale(1.02);
        }
        .comment-area textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e6dfd3;
            border-radius: 12px;
            font-family: inherit;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            transition: border-color 0.3s;
        }
        .comment-area textarea:focus {
            border-color: #d97706;
            outline: none;
        }
        .comment-area input[type="text"] {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #e6dfd3;
            border-radius: 12px;
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
            transition: border-color 0.3s;
        }
        .comment-area input[type="text"]:focus {
            border-color: #d97706;
            outline: none;
        }
        footer {
            margin-top: 3rem;
            padding-top: 1.8rem;
            border-top: 2px solid #e6dfd3;
            font-size: 0.9rem;
            color: #5c4f40;
        }
        friend-link {
            display: block;
            margin: 1rem 0 1.4rem;
            padding: 1rem 1.2rem;
            background: #faf7f2;
            border-radius: 12px;
            border: 1px solid #e6dfd3;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1.2rem 0.3rem 0;
        }
        .copyright {
            text-align: center;
            padding: 1rem 0 0.4rem;
            font-size: 0.85rem;
            color: #7a6f5e;
            border-top: 1px solid #e6dfd3;
            margin-top: 1rem;
        }
        .last-update {
            text-align: right;
            font-size: 0.85rem;
            color: #7a6f5e;
            margin-top: 0.2rem;
        }
        @media (max-width: 768px) {
            .container {
                padding: 1rem 1rem 1.5rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.3rem;
                padding-top: 1rem;
            }
            nav.active {
                display: flex;
            }
            nav a {
                padding: 0.6rem 1rem;
                width: 100%;
                border-radius: 8px;
            }
            header {
                align-items: center;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .featured-img-wrap img {
                max-height: 240px;
            }
            .rating-area,
            .comment-area {
                padding: 1rem 1.2rem;
            }
            .star-rating {
                font-size: 1.5rem;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none;
            }
            nav {
                display: flex !important;
            }
        }
        .highlight {
            background: #fef3c7;
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #d97706;
            color: #fff;
            padding: 0.15rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        .block-quote {
            background: #faf7f2;
            border-left: 6px solid #d97706;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            font-style: italic;
        }
        .block-quote strong {
            font-style: normal;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 1.5rem 0;
        }
        @media (max-width: 640px) {
            .two-col {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
        .emoji-big {
            font-size: 1.6rem;
            line-height: 1;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .data-table th {
            background: #1f1b16;
            color: #fff;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #e6dfd3;
            background: #fcfaf7;
        }
        .data-table tr:hover td {
            background: #f5efe6;
        }
        h2[id],
        h3[id] {
            scroll-margin-top: 2rem;
        }
