*,
        *::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: #f9f5f0;
            color: #1e1a17;
            line-height: 1.75;
            padding: 0 1rem;
        }
        a {
            color: #b03a2e;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #7a241c;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            background: #fffcf9;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
            border-radius: 24px;
            padding: 1.5rem 2rem 2rem;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 0 0.8rem;
            border-bottom: 2px solid #f0e6dd;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: #1e1a17;
            background: linear-gradient(135deg, #b03a2e, #d45c4a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: opacity 0.2s;
        }
        .my-logo:hover {
            opacity: 0.8;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #666;
            color: #666;
            display: block;
            letter-spacing: 0.2px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1e1a17;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f0e6dd;
        }
        .main-nav {
            display: flex;
            gap: 0.4rem 1.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            background: #f0e6dd;
            text-decoration: none;
        }
        .breadcrumb {
            width: 100%;
            margin-top: 0.6rem;
            font-size: 0.85rem;
            color: #777;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #b03a2e;
        }
        .breadcrumb span {
            color: #999;
        }
        .hero {
            padding: 2.5rem 0 1.5rem;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            color: #1e1a17;
            margin-bottom: 0.75rem;
        }
        .hero h1 i {
            color: #b03a2e;
            margin: 0 0.2rem;
        }
        .hero p {
            font-size: 1.2rem;
            color: #555;
            max-width: 720px;
            margin: 0 auto 1.2rem;
        }
        .hero .last-updated {
            font-size: 0.9rem;
            color: #999;
            display: inline-block;
            background: #f5efe9;
            padding: 0.3rem 1rem;
            border-radius: 40px;
        }
        .search-section {
            margin: 1.5rem 0 2rem;
            background: #f5efe9;
            border-radius: 60px;
            padding: 0.3rem 0.3rem 0.3rem 1.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.5rem;
            max-width: 580px;
            margin-left: auto;
            margin-right: auto;
        }
        .search-section i {
            color: #b03a2e;
            font-size: 1.1rem;
        }
        .search-section input {
            flex: 1;
            min-width: 140px;
            border: none;
            background: transparent;
            font-size: 1rem;
            padding: 0.7rem 0;
            outline: none;
            font-family: inherit;
            color: #1e1a17;
        }
        .search-section input::placeholder {
            color: #aaa;
        }
        .search-section button {
            background: #b03a2e;
            border: none;
            color: #fff;
            font-weight: 600;
            padding: 0.6rem 1.8rem;
            border-radius: 40px;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-family: inherit;
        }
        .search-section button:hover {
            background: #7a241c;
            transform: scale(0.97);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin-top: 1.5rem;
        }
        .main-content h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 2.5rem 0 1rem;
            color: #1e1a17;
            border-left: 5px solid #b03a2e;
            padding-left: 1rem;
        }
        .main-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 2rem 0 0.8rem;
            color: #2c2420;
        }
        .main-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.5rem 0 0.5rem;
            color: #3d322c;
        }
        .main-content p {
            margin-bottom: 1.2rem;
            color: #2c2420;
        }
        .main-content ul,
        .main-content ol {
            margin: 0.8rem 0 1.5rem 1.8rem;
            color: #2c2420;
        }
        .main-content li {
            margin-bottom: 0.4rem;
        }
        .main-content .highlight-box {
            background: #f5efe9;
            border-radius: 16px;
            padding: 1.5rem 2rem;
            margin: 1.8rem 0;
            border-left: 4px solid #b03a2e;
        }
        .main-content .highlight-box i {
            color: #b03a2e;
            margin-right: 0.5rem;
        }
        .feature-img-wrap {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        .feature-img-wrap img {
            width: 100%;
            height: auto;
            display: block;
        }
        .feature-img-wrap figcaption {
            background: #f5efe9;
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
            color: #666;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
            margin: 1.2rem 0;
        }
        .link-list-inline a {
            background: #f0e6dd;
            padding: 0.25rem 1rem;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
        }
        .link-list-inline a:hover {
            background: #b03a2e;
            color: #fff;
            text-decoration: none;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        .table-wrap table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        .table-wrap th,
        .table-wrap td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e8ded6;
        }
        .table-wrap th {
            background: #f5efe9;
            font-weight: 600;
            color: #1e1a17;
        }
        .table-wrap tr:hover td {
            background: #fcf8f4;
        }
        .sidebar {
            position: sticky;
            top: 1.5rem;
            align-self: start;
        }
        .sidebar-card {
            background: #f5efe9;
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: #1e1a17;
            border-bottom: 2px solid #e0d4ca;
            padding-bottom: 0.5rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            margin-bottom: 0.5rem;
        }
        .sidebar-card ul li a {
            font-weight: 500;
        }
        .sidebar-card ul li a i {
            width: 1.2rem;
            color: #b03a2e;
        }
        .rating-review-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .rating-box,
        .review-box {
            background: #f5efe9;
            border-radius: 16px;
            padding: 1.5rem 2rem;
        }
        .rating-box h3,
        .review-box h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: #1e1a17;
        }
        .star-group {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin: 0.5rem 0 1rem;
        }
        .star-group i.active {
            color: #f5b342;
        }
        .star-group i:hover {
            color: #f5b342;
            transform: scale(1.1);
        }
        .rating-box form,
        .review-box form {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }
        .rating-box form input,
        .review-box form input,
        .review-box form textarea {
            padding: 0.7rem 1rem;
            border: 2px solid #e0d4ca;
            border-radius: 10px;
            font-family: inherit;
            font-size: 0.95rem;
            background: #fff;
            transition: border 0.2s;
        }
        .rating-box form input:focus,
        .review-box form input:focus,
        .review-box form textarea:focus {
            border-color: #b03a2e;
            outline: none;
        }
        .review-box form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .rating-box form button,
        .review-box form button {
            background: #b03a2e;
            color: #fff;
            border: none;
            padding: 0.7rem 1.4rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-family: inherit;
            align-self: flex-start;
        }
        .rating-box form button:hover,
        .review-box form button:hover {
            background: #7a241c;
            transform: scale(0.97);
        }
        .comments-section {
            margin: 2.5rem 0;
            padding: 2rem;
            background: #fcf8f4;
            border-radius: 16px;
            border: 1px solid #f0e6dd;
        }
        .comments-section h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
            color: #1e1a17;
        }
        .comment-list {
            margin-bottom: 1.5rem;
        }
        .comment-item {
            padding: 1rem 0;
            border-bottom: 1px solid #f0e6dd;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-item .author {
            font-weight: 600;
            color: #1e1a17;
        }
        .comment-item .date {
            font-size: 0.8rem;
            color: #999;
            margin-left: 0.8rem;
        }
        .comment-item .text {
            margin-top: 0.3rem;
            color: #3d322c;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
            margin-top: 1rem;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 0.7rem 1rem;
            border: 2px solid #e0d4ca;
            border-radius: 10px;
            font-family: inherit;
            font-size: 0.95rem;
            background: #fff;
            transition: border 0.2s;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #b03a2e;
            outline: none;
        }
        .comment-form textarea {
            min-height: 80px;
            resize: vertical;
        }
        .comment-form button {
            background: #b03a2e;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-family: inherit;
            align-self: flex-start;
        }
        .comment-form button:hover {
            background: #7a241c;
            transform: scale(0.97);
        }
        .site-footer {
            margin-top: 3rem;
            padding: 2rem 0 1.5rem;
            border-top: 2px solid #f0e6dd;
            font-size: 0.9rem;
            color: #777;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-friends {
            flex: 1 1 300px;
        }
        .footer-friends h4 {
            font-size: 1rem;
            font-weight: 600;
            color: #1e1a17;
            margin-bottom: 0.6rem;
        }
        .footer-friends ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1rem;
        }
        .footer-friends ul li a {
            font-weight: 500;
            font-size: 0.9rem;
        }
        .footer-copy {
            flex: 1 1 240px;
            text-align: right;
        }
        .footer-copy p {
            margin-bottom: 0.3rem;
        }
        .footer-copy a {
            font-weight: 500;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .sidebar .sidebar-card {
                margin-bottom: 0;
            }
            .rating-review-wrap {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .container {
                padding: 1rem 1.2rem;
            }
        }
        @media (max-width: 640px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 0.8rem 0 0.4rem;
                gap: 0.3rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 0.5rem 0.8rem;
                border-radius: 8px;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .search-section {
                border-radius: 30px;
                padding: 0.3rem 0.3rem 0.3rem 1rem;
            }
            .search-section button {
                padding: 0.5rem 1.2rem;
                font-size: 0.85rem;
            }
            .footer-inner {
                flex-direction: column;
                text-align: center;
            }
            .footer-copy {
                text-align: center;
            }
            .container {
                padding: 0.8rem 1rem;
            }
            .feature-img-wrap {
                margin: 1.2rem 0;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.4rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .main-content h2 {
                font-size: 1.5rem;
            }
            .main-content h3 {
                font-size: 1.2rem;
            }
            .main-content h4 {
                font-size: 1.05rem;
            }
        }
        .text-muted {
            color: #999;
            font-size: 0.9rem;
        }
        .mt-1 {
            margin-top: 0.5rem;
        }
        .mb-1 {
            margin-bottom: 0.5rem;
        }
        .fw-600 {
            font-weight: 600;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
