* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', system-ui, -apple-system, sans-serif;
            background: #f5f3ef;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
            border-radius: 24px;
            padding: 20px 28px 40px;
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0 14px;
            border-bottom: 2px solid #e8e3da;
            position: relative;
        }
        .my-logo {
            font-size: 2.1rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #c73a2b;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo span {
            color: #2d2d2d;
            font-weight: 300;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: #c73a2b;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px 18px;
            flex-wrap: wrap;
        }
        .nav-list a {
            text-decoration: none;
            color: #2d2d2d;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 2px;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-list a:hover {
            color: #c73a2b;
            border-bottom-color: #c73a2b;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #2d2d2d;
            cursor: pointer;
            padding: 4px 8px;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 14px 0 10px;
            font-size: 0.85rem;
            color: #6b6b6b;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 10px;
            color: #b0a99f;
        }
        .breadcrumb a {
            color: #8a7f73;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #c73a2b;
        }
        .breadcrumb .active {
            color: #2d2d2d;
            font-weight: 500;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 30px 0 16px;
            color: #1e1e1e;
        }
        h1 i {
            color: #c73a2b;
        }
        h2 {
            font-size: 2.0rem;
            font-weight: 700;
            margin: 48px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #f0eae2;
            color: #222;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #2d2d2d;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #3d3d3d;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #2c2c2c;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 400;
            color: #3d3d3d;
            border-left: 4px solid #c73a2b;
            padding-left: 20px;
            margin: 24px 0 28px;
        }
        .highlight {
            background: #fdf6ec;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #c73a2b;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 2px 12px;
            border-radius: 30px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .emoji-big {
            font-size: 1.6rem;
            vertical-align: middle;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 30px 0;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin: 28px 0;
        }
        .card {
            background: #faf8f5;
            border-radius: 16px;
            padding: 24px 22px;
            transition: 0.25s ease;
            border: 1px solid #ede8e1;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
            border-color: #d6cdc0;
        }
        .card i {
            font-size: 2rem;
            color: #c73a2b;
            margin-bottom: 12px;
        }
        .card h4 {
            margin-top: 0;
        }
        .feature-img {
            width: 100%;
            border-radius: 20px;
            margin: 32px 0 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            display: block;
            max-height: 520px;
            object-fit: cover;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 28px 0;
            font-size: 0.98rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .data-table th {
            background: #2d2d2d;
            color: #fff;
            font-weight: 600;
            padding: 14px 18px;
            text-align: left;
        }
        .data-table td {
            padding: 12px 18px;
            border-bottom: 1px solid #e8e3da;
            background: #fcfaf8;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f5f0ea;
        }
        .search-box {
            display: flex;
            max-width: 520px;
            margin: 20px 0 28px;
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid #e0d9d0;
            background: #fff;
            transition: 0.2s;
        }
        .search-box:focus-within {
            border-color: #c73a2b;
            box-shadow: 0 0 0 4px rgba(199, 58, 43, 0.1);
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 14px 22px;
            font-size: 1rem;
            background: transparent;
            outline: none;
            font-family: inherit;
        }
        .search-box button {
            background: #c73a2b;
            color: #fff;
            border: none;
            padding: 0 28px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-box button:hover {
            background: #a82f21;
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin: 40px 0 20px;
            padding: 28px 0;
            border-top: 2px solid #ede8e1;
        }
        .comment-area textarea {
            width: 100%;
            border: 2px solid #e0d9d0;
            border-radius: 14px;
            padding: 16px 18px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            transition: 0.2s;
            background: #fcfaf8;
        }
        .comment-area textarea:focus {
            border-color: #c73a2b;
            outline: none;
            box-shadow: 0 0 0 4px rgba(199, 58, 43, 0.08);
        }
        .btn {
            display: inline-block;
            background: #c73a2b;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.2s;
            font-family: inherit;
        }
        .btn:hover {
            background: #a82f21;
            transform: scale(1.02);
        }
        .btn-outline {
            background: transparent;
            color: #c73a2b;
            border: 2px solid #c73a2b;
        }
        .btn-outline:hover {
            background: #c73a2b;
            color: #fff;
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #d4ccc2;
            cursor: pointer;
            margin: 10px 0 16px;
        }
        .star-rating i {
            transition: 0.15s;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #f5b342;
        }
        footer {
            margin-top: 48px;
            padding: 32px 0 20px;
            border-top: 2px solid #ede8e1;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 28px;
        }
        .footer-grid h4 {
            font-size: 1.1rem;
            margin-bottom: 14px;
            color: #1e1e1e;
        }
        .footer-grid a {
            display: block;
            color: #5a5a5a;
            text-decoration: none;
            font-size: 0.95rem;
            padding: 3px 0;
            transition: 0.2s;
        }
        .footer-grid a:hover {
            color: #c73a2b;
            padding-left: 4px;
        }
        friend-link {
            display: block;
            padding: 20px 0 10px;
            font-size: 0.95rem;
        }
        friend-link a {
            color: #5a5a5a;
            text-decoration: none;
            margin-right: 20px;
            transition: 0.2s;
        }
        friend-link a:hover {
            color: #c73a2b;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding: 18px 0 4px;
            font-size: 0.9rem;
            color: #7a7a7a;
            border-top: 1px solid #ede8e1;
        }
        .copyright strong {
            color: #2d2d2d;
        }
        @media (max-width: 820px) {
            .container {
                padding: 14px 16px 30px;
            }
            h1 {
                font-size: 2.0rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .interact-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fff;
                padding: 14px 0 20px;
                border-top: 1px solid #ede8e1;
                margin-top: 10px;
            }
            .nav-list.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .nav-wrapper {
                flex-wrap: wrap;
                width: 100%;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 10px 12px;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 10px 12px 24px;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .lead {
                font-size: 1.05rem;
                padding-left: 14px;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .search-box input {
                padding: 10px 14px;
                font-size: 0.9rem;
            }
            .search-box button {
                padding: 0 16px;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f5f3ef;
        }
        ::-webkit-scrollbar-thumb {
            background: #c73a2b;
            border-radius: 10px;
        }
        html {
            scroll-behavior: smooth;
        }
        a {
            color: #c73a2b;
        }
        a:hover {
            text-decoration: underline;
        }
        .inline-link {
            color: #c73a2b;
            font-weight: 500;
            text-decoration: underline;
            text-underline-offset: 2px;
        }
