        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #faf9f7;
            color: #1e1e1e;
            line-height: 1.7;
            font-size: 1.05rem;
            padding: 0 1rem;
        }
        a {
            color: #b22222;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #8b0000;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        hr {
            border: none;
            border-top: 2px solid #e0dcd5;
            margin: 2.5rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .site-header {
            background: linear-gradient(145deg, #ffffff 0%, #f5f2ed 100%);
            border-bottom: 4px solid #b22222;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem 1.5rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #1e1e1e;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            color: #b22222;
            font-size: 2rem;
        }
        .my-logo span {
            background: linear-gradient(135deg, #b22222, #d43f3f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo:hover {
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.85rem;
            font-weight: 400;
            color: #666;
            -webkit-text-fill-color: #666;
            background: none;
            margin-left: 0.2rem;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1rem;
            color: #2c2c2c;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .main-nav a:hover,
        .main-nav a:focus {
            border-bottom-color: #b22222;
            color: #b22222;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #b22222;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(178, 34, 34, 0.08);
        }
        .breadcrumb {
            background: #f0ece6;
            padding: 0.7rem 1.2rem;
            border-radius: 30px;
            font-size: 0.9rem;
            margin: 1.2rem 0 1.8rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            align-items: center;
        }
        .breadcrumb i {
            color: #b22222;
            margin: 0 0.2rem;
        }
        .breadcrumb a {
            color: #555;
        }
        .breadcrumb a:hover {
            color: #b22222;
        }
        .breadcrumb .current {
            color: #1e1e1e;
            font-weight: 600;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0.8rem 0 1.2rem;
            color: #1a1a1a;
        }
        h1 i {
            color: #b22222;
            margin-right: 0.4rem;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 2.5rem 0 1rem;
            border-left: 5px solid #b22222;
            padding-left: 1rem;
            color: #1e1e1e;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 1.8rem 0 0.8rem;
            color: #2c2c2c;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.2rem 0 0.5rem;
            color: #3a3a3a;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .lead {
            font-size: 1.2rem;
            color: #3d3d3d;
            font-weight: 400;
            line-height: 1.8;
        }
        .highlight {
            background: #fff3cd;
            padding: 0.1rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .dropcap::first-letter {
            font-size: 3.6rem;
            font-weight: 800;
            float: left;
            line-height: 1;
            margin-right: 0.5rem;
            color: #b22222;
        }
        .section-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 2rem 2.2rem;
            margin: 2rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #ebe7e0;
        }
        .section-card h2:first-child {
            margin-top: 0;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .three-col {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.8rem;
        }
        .stat-box {
            background: #f8f5f0;
            border-radius: 14px;
            padding: 1.5rem;
            text-align: center;
            border: 1px solid #e4ddd4;
        }
        .stat-box .number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #b22222;
            display: block;
            line-height: 1.2;
        }
        .stat-box .label {
            font-size: 0.95rem;
            color: #555;
            font-weight: 500;
        }
        .quote-block {
            background: #f0ece6;
            border-left: 6px solid #b22222;
            padding: 1.5rem 2rem;
            border-radius: 0 16px 16px 0;
            margin: 1.8rem 0;
            font-style: italic;
            font-size: 1.1rem;
            color: #2c2c2c;
        }
        .quote-block cite {
            display: block;
            margin-top: 0.6rem;
            font-style: normal;
            font-weight: 600;
            color: #555;
            font-size: 0.95rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f5f2ed;
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #555;
            text-align: center;
            border-top: 1px solid #e0dcd5;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #2c2c2c;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #ddd6cc;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.2s, box-shadow 0.2s;
            background: #fff;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #b22222;
            box-shadow: 0 0 0 4px rgba(178, 34, 34, 0.1);
            outline: none;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
            background: #b22222;
            color: #fff;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(178, 34, 34, 0.3);
            background: #8b0000;
        }
        .btn-secondary {
            background: #2c2c2c;
        }
        .btn-secondary:hover {
            background: #1a1a1a;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 0.2rem;
            font-size: 2rem;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #ddd6cc;
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating label i {
            font-size: 2rem;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
            transform: scale(1.05);
        }
        .comment-item {
            background: #f8f5f0;
            border-radius: 14px;
            padding: 1.2rem 1.5rem;
            margin-bottom: 1rem;
            border-left: 4px solid #b22222;
        }
        .comment-item .meta {
            font-size: 0.85rem;
            color: #777;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 0.3rem;
        }
        .comment-item .meta strong {
            color: #2c2c2c;
        }
        friend-link {
            display: block;
            background: #f5f2ed;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            margin: 2rem 0 0.5rem;
            border: 1px solid #e0dcd5;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.6rem 0.3rem 0;
            padding: 0.3rem 1rem;
            background: #fff;
            border-radius: 30px;
            border: 1px solid #ddd6cc;
            font-size: 0.95rem;
            transition: background 0.2s, border-color 0.2s;
        }
        friend-link a:hover {
            background: #b22222;
            color: #fff;
            border-color: #b22222;
            text-decoration: none;
        }
        .site-footer {
            background: #1e1e1e;
            color: #ccc;
            padding: 2.5rem 0 1.5rem;
            border-radius: 30px 30px 0 0;
            margin-top: 3rem;
        }
        .site-footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.5rem;
        }
        .site-footer .copyright {
            font-size: 0.9rem;
            color: #999;
            width: 100%;
            text-align: center;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
        }
        .site-footer a {
            color: #ddd;
        }
        .site-footer a:hover {
            color: #fff;
        }
        @media (max-width: 1024px) {
            .two-col,
            .three-col {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem 0 0.5rem;
                gap: 0.6rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                font-size: 1.1rem;
                padding: 0.3rem 0;
            }
            .two-col,
            .three-col {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .section-card {
                padding: 1.2rem 1.2rem;
            }
            .stat-box .number {
                font-size: 2rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .star-rating label i {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 0.5rem 0.8rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.5rem;
            }
            .quote-block {
                padding: 1rem 1.2rem;
                font-size: 1rem;
            }
            .site-footer .container {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.6rem;
                font-size: 1rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
            .header-inner {
                gap: 0.4rem;
            }
            .stat-box {
                padding: 1rem;
            }
        }
        .tag {
            display: inline-block;
            background: #e8e2d9;
            border-radius: 30px;
            padding: 0.15rem 0.8rem;
            font-size: 0.8rem;
            font-weight: 600;
            color: #555;
            margin: 0.2rem 0.2rem 0.2rem 0;
        }
        .tag:hover {
            background: #b22222;
            color: #fff;
            text-decoration: none;
        }
        .updated-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #e8f0e8;
            color: #2d6e2d;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .table-wrap {
            overflow-x: auto;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #ebe7e0;
        }
        th {
            background: #f5f2ed;
            font-weight: 700;
            color: #1e1e1e;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .inline-list {
            display: inline;
            list-style: none;
            padding: 0;
        }
        .inline-list li {
            display: inline;
        }
        .inline-list li::after {
            content: " · ";
            color: #bbb;
        }
        .inline-list li:last-child::after {
            content: "";
        }
