        *,
        *::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: #f8f6f1;
            color: #1e1e1e;
            line-height: 1.6;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #b37b4d;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #7a5637;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #2c2c2c;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #d4a373;
            display: inline-block;
            padding-bottom: 0.2rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #d4a373;
            padding-left: 0.8rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #3d3d3d;
        }
        h4 {
            font-size: 1.15rem;
            color: #555;
        }
        p {
            margin-bottom: 1rem;
        }
        strong {
            color: #b37b4d;
        }
        .container {
            background: #fff;
            border-radius: 24px;
            padding: 1.8rem 2rem;
            margin: 1.5rem 0;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
        }
        .badge {
            background: #d4a373;
            color: #fff;
            padding: 0.2rem 0.8rem;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            display: inline-block;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0 0.5rem 0;
            border-bottom: 2px solid #e8ddd0;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #2c2c2c;
            background: linear-gradient(135deg, #d4a373, #b37b4d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo small {
            font-size: 0.8rem;
            font-weight: 400;
            -webkit-text-fill-color: #666;
            color: #666;
            display: block;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: #2c2c2c;
            padding: 0.2rem 0.5rem;
        }
        nav#main-nav ul {
            display: flex;
            gap: 1.2rem;
            list-style: none;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
        }
        nav#main-nav ul li a {
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s, color 0.2s;
        }
        nav#main-nav ul li a:hover {
            background: #f0e8de;
            text-decoration: none;
        }
        .breadcrumb {
            font-size: 0.85rem;
            color: #777;
            padding: 0.5rem 0 0.2rem 0;
            width: 100%;
        }
        .breadcrumb a {
            color: #b37b4d;
        }
        .breadcrumb span {
            margin: 0 0.3rem;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.2rem 0 0.5rem 0;
            max-width: 500px;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid #ddd;
            border-radius: 40px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #d4a373;
        }
        .search-form button {
            background: #d4a373;
            border: none;
            color: #fff;
            padding: 0 1.4rem;
            border-radius: 40px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-form button:hover {
            background: #b37b4d;
        }
        .rating-area {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin: 1rem 0;
            padding: 1rem;
            background: #faf6f0;
            border-radius: 16px;
        }
        .rating-area .stars {
            display: flex;
            gap: 0.2rem;
            font-size: 1.6rem;
            color: #e0c090;
            cursor: pointer;
            direction: rtl;
        }
        .rating-area .stars i {
            transition: color 0.2s, transform 0.1s;
        }
        .rating-area .stars i:hover,
        .rating-area .stars i:hover~i {
            color: #d4a373;
            transform: scale(1.1);
        }
        .rating-area .stars i.active {
            color: #d4a373;
        }
        .rating-area button {
            background: #d4a373;
            border: none;
            color: #fff;
            padding: 0.5rem 1.6rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-area button:hover {
            background: #b37b4d;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #ddd;
            border-radius: 16px;
            font-size: 0.95rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border 0.2s;
        }
        .comment-form textarea:focus {
            border-color: #d4a373;
        }
        .comment-form .row {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            margin-top: 0.6rem;
        }
        .comment-form .row input {
            flex: 1;
            min-width: 160px;
            padding: 0.6rem 1rem;
            border: 2px solid #ddd;
            border-radius: 40px;
            outline: none;
            font-size: 0.9rem;
        }
        .comment-form .row input:focus {
            border-color: #d4a373;
        }
        .comment-form button {
            background: #d4a373;
            border: none;
            color: #fff;
            padding: 0.6rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-form button:hover {
            background: #b37b4d;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0 0.4rem 0;
            border-top: 2px solid #eee;
            margin-top: 1.2rem;
            font-weight: 500;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
        }
        footer {
            text-align: center;
            padding: 1.2rem 0 2rem 0;
            color: #888;
            font-size: 0.85rem;
            border-top: 1px solid #eee;
            margin-top: 1rem;
        }
        footer .copyright {
            margin-top: 0.4rem;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            .container {
                padding: 1.2rem 1rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            header {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav#main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
            }
            nav#main-nav.open {
                max-height: 600px;
            }
            nav#main-nav ul {
                flex-direction: column;
                gap: 0.2rem;
                padding: 0.8rem 0 0.4rem 0;
            }
            nav#main-nav ul li a {
                display: block;
                padding: 0.5rem 0.8rem;
                background: #f8f4ee;
                border-radius: 8px;
            }
            .search-form {
                max-width: 100%;
            }
            .rating-area {
                flex-direction: column;
                align-items: stretch;
            }
            .rating-area .stars {
                justify-content: center;
            }
            .my-logo {
                font-size: 1.6rem;
            }
        }
        @media (min-width: 769px) {
            .hamburger {
                display: none !important;
            }
            nav#main-nav {
                display: flex !important;
            }
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-muted {
            color: #888;
            font-size: 0.9rem;
        }
        .divider {
            border: none;
            height: 2px;
            background: linear-gradient(90deg, #e8ddd0, transparent);
            margin: 1.8rem 0;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        @media (max-width: 600px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
        }
        .table-wrap {
            overflow-x: auto;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            margin: 1rem 0;
        }
        table th {
            background: #f0e8de;
            padding: 0.6rem 0.8rem;
            text-align: left;
            font-weight: 600;
        }
        table td {
            padding: 0.5rem 0.8rem;
            border-bottom: 1px solid #eee;
        }
        table tr:hover td {
            background: #faf6f0;
        }
        .feature-icon {
            font-size: 1.8rem;
            color: #d4a373;
            margin-right: 0.5rem;
        }
        .card {
            background: #faf6f0;
            border-radius: 16px;
            padding: 1.2rem;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        }
        .emoji-big {
            font-size: 2rem;
        }
        .last-update {
            font-size: 0.85rem;
            color: #999;
            text-align: right;
            margin-top: 0.2rem;
            border-top: 1px dashed #eee;
            padding-top: 0.4rem;
        }
