* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #f8f6f2;
            color: #1e2a3a;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #c44536;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #a13226;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            background: #fff;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
            border-radius: 24px;
            padding: 20px 24px 32px;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0 12px;
            border-bottom: 2px solid #eae6df;
            position: relative;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #c44536, #e07a5f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            font-size: 1.6rem;
            -webkit-text-fill-color: #c44536;
            color: #c44536;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1e2a3a;
            cursor: pointer;
            padding: 4px 8px;
        }
        .nav-menu {
            display: flex;
            gap: 20px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s;
        }
        .nav-menu a:hover {
            border-bottom-color: #c44536;
            text-decoration: none;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 12px;
            font-size: 0.85rem;
            padding: 12px 0 8px;
            color: #5e6a7a;
        }
        .breadcrumb a {
            color: #5e6a7a;
        }
        .breadcrumb a:hover {
            color: #c44536;
        }
        .breadcrumb span {
            color: #1e2a3a;
            font-weight: 500;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 24px 0 16px;
            color: #1e2a3a;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 40px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #eae6df;
            color: #1e2a3a;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #2c3d55;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #3a4e68;
        }
        p {
            margin: 0 0 18px;
            font-size: 1.05rem;
            color: #1e2a3a;
        }
        .last-updated {
            display: inline-block;
            font-size: 0.85rem;
            color: #7a879a;
            background: #f0ede8;
            padding: 4px 14px;
            border-radius: 30px;
            margin-bottom: 20px;
        }
        .feature-img {
            margin: 24px 0 28px;
            border-radius: 16px;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        }
        .search-box {
            background: #f4f1ec;
            border-radius: 60px;
            padding: 8px 8px 8px 20px;
            display: flex;
            max-width: 480px;
            margin: 20px 0 28px;
            border: 1px solid #ddd8d0;
            transition: box-shadow 0.25s;
        }
        .search-box:focus-within {
            box-shadow: 0 0 0 3px rgba(196, 69, 54, 0.25);
            border-color: #c44536;
        }
        .search-box input {
            flex: 1;
            border: none;
            background: transparent;
            font-size: 1rem;
            padding: 8px 0;
            outline: none;
            font-family: inherit;
        }
        .search-box button {
            background: #c44536;
            border: none;
            color: #fff;
            font-size: 1rem;
            padding: 10px 24px;
            border-radius: 40px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: #a13226;
        }
        .rating-area {
            background: #faf8f5;
            border-radius: 20px;
            padding: 24px 28px;
            margin: 32px 0 24px;
            border: 1px solid #eae6df;
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #e0b84a;
            cursor: pointer;
            margin: 8px 0 12px;
        }
        .rating-stars i {
            transition: transform 0.15s, color 0.15s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
            color: #d4a43a;
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 400px;
        }
        .rating-form input,
        .rating-form textarea,
        .comment-form input,
        .comment-form textarea {
            padding: 12px 16px;
            border: 1px solid #ddd8d0;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fff;
            transition: border-color 0.2s;
        }
        .rating-form input:focus,
        .rating-form textarea:focus,
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #c44536;
            outline: none;
            box-shadow: 0 0 0 3px rgba(196, 69, 54, 0.12);
        }
        .rating-form button,
        .comment-form button {
            background: #c44536;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #a13226;
        }
        .comment-area {
            margin: 32px 0 24px;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 500px;
            background: #faf8f5;
            padding: 24px 28px;
            border-radius: 20px;
            border: 1px solid #eae6df;
        }
        friend-link {
            display: block;
            background: #f4f1ec;
            border-radius: 20px;
            padding: 24px 28px;
            margin: 40px 0 20px;
            font-style: normal;
        }
        friend-link h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            padding: 0;
        }
        friend-link li a {
            font-weight: 500;
        }
        footer {
            border-top: 2px solid #eae6df;
            padding: 24px 0 12px;
            margin-top: 32px;
            text-align: center;
            font-size: 0.9rem;
            color: #5e6a7a;
        }
        footer .copyright {
            margin-top: 8px;
            font-size: 0.82rem;
            color: #7a879a;
        }
        @media (max-width: 768px) {
            .container {
                padding: 12px 16px 24px;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 6px;
                padding: 16px 0 8px;
                border-top: 1px solid #eae6df;
                margin-top: 12px;
            }
            #nav-toggle:checked~.nav-menu {
                display: flex;
            }
            header {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-box {
                max-width: 100%;
                flex-wrap: wrap;
                border-radius: 30px;
                padding: 6px 6px 6px 16px;
            }
            .search-box button {
                padding: 8px 16px;
                font-size: 0.9rem;
            }
            .rating-area,
            .comment-form,
            friend-link {
                padding: 18px 16px;
            }
            .breadcrumb {
                font-size: 0.78rem;
                gap: 4px 10px;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 8px 10px 20px;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
        }
        .highlight {
            background: linear-gradient(120deg, #fce8e4 0%, #fce8e4 40%, transparent 80%);
            padding: 0 4px;
            font-weight: 600;
        }
        .inline-icon {
            margin-right: 6px;
            color: #c44536;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 20px 0;
        }
        @media (max-width: 600px) {
            .grid-2 {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }
        .blockquote-custom {
            border-left: 5px solid #c44536;
            background: #faf8f5;
            padding: 16px 24px;
            margin: 24px 0;
            border-radius: 0 16px 16px 0;
            font-style: italic;
            color: #2c3d55;
        }
        .blockquote-custom cite {
            display: block;
            margin-top: 8px;
            font-style: normal;
            font-weight: 600;
            color: #c44536;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .stat-card {
            background: #f4f1ec;
            border-radius: 16px;
            padding: 20px 12px;
            text-align: center;
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #c44536;
            display: block;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #5e6a7a;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #faf8f5;
            border-radius: 12px;
            overflow: hidden;
        }
        th {
            background: #eae6df;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 10px 16px;
            border-bottom: 1px solid #e0dbd3;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .btn-outline {
            display: inline-block;
            border: 2px solid #c44536;
            color: #c44536;
            padding: 8px 24px;
            border-radius: 40px;
            font-weight: 600;
            transition: all 0.2s;
        }
        .btn-outline:hover {
            background: #c44536;
            color: #fff;
            text-decoration: none;
        }
        .tag {
            display: inline-block;
            background: #eae6df;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 500;
            color: #3a4e68;
        }
        .fa-solid,
        .fa-regular {
            margin-right: 4px;
        }
