        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f8f7f4;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #c44536;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8a2a1a;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
            color: #2d2a24;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #c44536;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #e0d6cc;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.4rem;
        }
        h4 {
            font-size: 1.15rem;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #2d2a24 0%, #1f1c18 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #f5e6d3;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            color: #f9b83a;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            color: #f9b83a;
            text-decoration: none;
        }
        .my-logo span {
            background: #c44536;
            padding: 0.1rem 0.5rem;
            border-radius: 4px;
            font-size: 0.7rem;
            letter-spacing: 1px;
            color: #fff;
            margin-left: 0.3rem;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
        }
        .main-nav a {
            color: #e8e0d6;
            padding: 0.5rem 0.9rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
            text-decoration: none;
        }
        .main-nav a:hover {
            background: #3d3730;
            color: #f9b83a;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #c44536;
            color: #fff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5e6d3;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #3d3730;
        }
        .breadcrumb {
            background: #edeae4;
            padding: 0.5rem 0;
            font-size: 0.85rem;
            color: #555;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem;
        }
        .breadcrumb a {
            color: #7a5a4a;
        }
        .breadcrumb i {
            font-size: 0.65rem;
            color: #999;
        }
        .hero {
            background: linear-gradient(145deg, #f5efe8 0%, #e8dfd4 100%);
            padding: 3rem 0 2.5rem;
            border-bottom: 1px solid #d9cfc2;
        }
        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: center;
        }
        .hero-text h1 {
            font-size: 2.8rem;
            margin-top: 0;
            border-bottom: none;
            padding-bottom: 0;
            color: #1f1c18;
        }
        .hero-text h1 i {
            color: #c44536;
        }
        .hero-text .tagline {
            font-size: 1.15rem;
            color: #5a4d3e;
            margin: 0.8rem 0 1.2rem;
            font-weight: 300;
        }
        .hero-stats {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 1.2rem;
        }
        .hero-stats .stat {
            background: #fff;
            border-radius: 12px;
            padding: 0.8rem 1.4rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            text-align: center;
            flex: 1 0 auto;
        }
        .hero-stats .stat .num {
            font-size: 1.6rem;
            font-weight: 800;
            color: #c44536;
            display: block;
        }
        .hero-stats .stat .label {
            font-size: 0.8rem;
            color: #6a5d4e;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .hero-img {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            background: #fff;
            padding: 0.5rem;
        }
        .hero-img img {
            border-radius: 12px;
            width: 100%;
            height: auto;
        }
        .content-area {
            padding: 2.5rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.5rem;
        }
        .main-content {
            background: #fff;
            border-radius: 16px;
            padding: 2rem 2.2rem;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #edeae4;
        }
        .sidebar-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 2px solid #edeae4;
            padding-bottom: 0.5rem;
            margin-bottom: 0.8rem;
        }
        .sidebar-card ul {
            list-style: none;
            padding-left: 0;
        }
        .sidebar-card ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #f0ece6;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #3d3730;
            font-weight: 500;
        }
        .sidebar-card ul li a i {
            color: #c44536;
            width: 1.2rem;
        }
        .sidebar-card ul li a:hover {
            color: #c44536;
        }
        .search-box {
            display: flex;
            width: 100%;
            border: 2px solid #e0d6cc;
            border-radius: 8px;
            overflow: hidden;
            transition: border-color 0.2s;
            background: #fff;
        }
        .search-box:focus-within {
            border-color: #c44536;
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 0.7rem 1rem;
            font-size: 0.95rem;
            outline: none;
            background: transparent;
            color: #1e1e1e;
        }
        .search-box input::placeholder {
            color: #aaa;
        }
        .search-box button {
            background: #c44536;
            color: #fff;
            border: none;
            padding: 0.7rem 1.2rem;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.2s;
        }
        .search-box button:hover {
            background: #8a2a1a;
        }
        .comment-section,
        .rating-section {
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 2px solid #edeae4;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 1rem;
        }
        .comment-form input,
        .comment-form textarea,
        .rating-form select {
            padding: 0.7rem 1rem;
            border: 2px solid #e0d6cc;
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: inherit;
            background: #fff;
            transition: border-color 0.2s;
        }
        .comment-form input:focus,
        .comment-form textarea:focus,
        .rating-form select:focus {
            border-color: #c44536;
            outline: none;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #c44536;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            align-self: flex-start;
        }
        .btn:hover {
            background: #8a2a1a;
            transform: translateY(-1px);
        }
        .btn i {
            font-size: 0.9rem;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .data-table th {
            background: #2d2a24;
            color: #f5e6d3;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #edeae4;
        }
        .data-table tr:nth-child(even) {
            background: #f9f6f2;
        }
        .data-table tr:hover {
            background: #f0ebe4;
        }
        .site-footer {
            background: #2d2a24;
            color: #cfc6ba;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .site-footer h4 {
            color: #f5e6d3;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #cfc6ba;
        }
        .site-footer a:hover {
            color: #f9b83a;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 0.5rem;
        }
        .friend-link a {
            background: #3d3730;
            padding: 0.3rem 0.9rem;
            border-radius: 20px;
            font-size: 0.85rem;
            transition: background 0.2s, color 0.2s;
        }
        .friend-link a:hover {
            background: #c44536;
            color: #fff;
            text-decoration: none;
        }
        .footer-bottom {
            border-top: 1px solid #3d3730;
            padding-top: 1.2rem;
            margin-top: 1.8rem;
            text-align: center;
            font-size: 0.85rem;
            color: #9a8e7e;
        }
        @media (max-width: 900px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-text h1 {
                font-size: 2.2rem;
            }
            .hero-stats {
                justify-content: center;
            }
            .content-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 700px) {
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1f1c18;
                padding: 1rem 0;
                border-radius: 0 0 12px 12px;
                gap: 0.2rem;
                margin-top: 0.8rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1.2rem;
                border-radius: 0;
                width: 100%;
                text-align: left;
                border-left: 3px solid transparent;
            }
            .main-nav a:hover {
                border-left-color: #f9b83a;
                background: #2d2a24;
            }
            .hamburger {
                display: block;
            }
            .header-inner {
                align-items: center;
            }
            .hero-text h1 {
                font-size: 1.8rem;
            }
            .main-content {
                padding: 1.2rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.4rem 0.6rem;
            }
            .breadcrumb .container {
                font-size: 0.75rem;
            }
        }
        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 1.5rem;
            }
            .hero-stats .stat {
                padding: 0.5rem 0.8rem;
            }
            .hero-stats .stat .num {
                font-size: 1.2rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo span {
                font-size: 0.6rem;
            }
        }
        .highlight-box {
            background: #f9f6f2;
            border-left: 4px solid #c44536;
            padding: 1.2rem 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .emoji-big {
            font-size: 1.8rem;
            display: inline-block;
            margin-right: 0.3rem;
        }
        .tip-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 1.2rem 0;
        }
        .tip-card {
            background: #f9f6f2;
            border-radius: 12px;
            padding: 1.2rem;
            border: 1px solid #edeae4;
        }
        .tip-card h4 {
            margin-top: 0;
            color: #c44536;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #888;
            text-align: right;
            margin-top: 0.5rem;
            font-style: italic;
        }
        .star-rating {
            display: flex;
            gap: 0.2rem;
            font-size: 1.4rem;
            color: #f9b83a;
        }
