        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #f5f7fc;
            color: #1e2a3a;
            line-height: 1.7;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 40px;
            min-height: 100vh;
        }
        a {
            color: #b22234;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover, a:focus {
            color: #8b1a1a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }
        h1, h2, h3, h4, h5, h6 {
            line-height: 1.25;
            color: #0f1a2e;
            margin-top: 0;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            border-left: 5px solid #b22234;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.6rem 0 0.6rem;
            color: #1e3a5f;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.4rem;
            color: #2c4a6e;
        }
        p {
            margin-bottom: 1.2rem;
        }
        ul, ol {
            margin: 0.8rem 0 1.5rem 1.8rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        strong {
            font-weight: 700;
            color: #0f1a2e;
        }
        hr {
            border: none;
            border-top: 2px solid #e0e6ef;
            margin: 2.5rem 0;
        }
        header {
            background: linear-gradient(145deg, #ffffff, #f0f4fe);
            border-radius: 0 0 24px 24px;
            padding: 20px 24px 16px;
            margin: 0 -20px 30px;
            box-shadow: 0 6px 30px rgba(0,0,0,0.05);
            position: relative;
            border-bottom: 3px solid #b22234;
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1160px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #b22234, #e63946);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.03em;
            text-transform: uppercase;
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #b22234;
            font-size: 2rem;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 8px;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
        }
        .nav-list li a {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #1e2a3a;
            background: rgba(255,255,255,0.6);
            border: 1px solid transparent;
            transition: all 0.2s ease;
            text-decoration: none;
        }
        .nav-list li a:hover {
            background: #b22234;
            color: #fff;
            border-color: #b22234;
            text-decoration: none;
        }
        .nav-list li a.active {
            background: #b22234;
            color: #fff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1e2a3a;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(178,34,52,0.1);
        }
        .breadcrumb {
            font-size: 0.85rem;
            color: #5a6a7a;
            padding: 10px 0 4px;
            max-width: 1160px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #b22234;
        }
        .breadcrumb span {
            color: #7a8a9a;
        }
        main {
            background: #ffffff;
            border-radius: 24px;
            padding: 32px 32px 40px;
            box-shadow: 0 8px 40px rgba(0,0,0,0.04);
            margin-bottom: 30px;
        }
        .featured-image {
            margin: 1.5rem 0 2.5rem;
            border-radius: 16px;
            overflow: hidden;
            background: #eef2f8;
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 10px 16px;
            font-size: 0.85rem;
            color: #5a6a7a;
            background: #f8faff;
            border-top: 1px solid #e0e6ef;
        }
        .search-section {
            background: #f0f4fe;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 2rem 0;
            border: 1px solid #dce4f0;
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-section input[type="search"] {
            flex: 1 1 240px;
            padding: 14px 20px;
            border: 2px solid #d0d8e4;
            border-radius: 50px;
            font-size: 1rem;
            background: #fff;
            transition: border 0.25s;
            outline: none;
        }
        .search-section input[type="search"]:focus {
            border-color: #b22234;
        }
        .search-section button {
            padding: 14px 32px;
            background: #b22234;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .search-section button:hover {
            background: #8b1a1a;
            transform: scale(1.02);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 2.5rem 0 1.5rem;
        }
        .interaction-card {
            background: #f8faff;
            border-radius: 18px;
            padding: 24px 28px;
            border: 1px solid #e4eaf4;
        }
        .interaction-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.2rem;
        }
        .interaction-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .interaction-card input,
        .interaction-card textarea,
        .interaction-card select {
            padding: 12px 16px;
            border: 2px solid #d0d8e4;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #fff;
            transition: border 0.25s;
            outline: none;
            font-family: inherit;
        }
        .interaction-card input:focus,
        .interaction-card textarea:focus,
        .interaction-card select:focus {
            border-color: #b22234;
        }
        .interaction-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .interaction-card button {
            padding: 12px 24px;
            background: #b22234;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            align-self: flex-start;
        }
        .interaction-card button:hover {
            background: #8b1a1a;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #f4b942;
            cursor: pointer;
        }
        .rating-stars i {
            transition: transform 0.15s, color 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
            color: #e09d2a;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
            background: #fafcff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
        }
        .data-table th {
            background: #1e3a5f;
            color: #fff;
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #e6ecf4;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f0f6ff;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fef7f0, #fef0e6);
            border-left: 6px solid #b22234;
            padding: 20px 28px;
            border-radius: 0 16px 16px 0;
            margin: 1.8rem 0;
        }
        .highlight-box p {
            margin-bottom: 0.4rem;
        }
        .highlight-box .author {
            font-weight: 700;
            color: #b22234;
        }
        friend-link {
            display: block;
            padding: 18px 0 8px;
            border-top: 2px solid #e0e6ef;
            margin-top: 20px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 6px 14px;
            background: #f0f4fe;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #1e3a5f;
            transition: background 0.2s, color 0.2s;
        }
        friend-link a:hover {
            background: #b22234;
            color: #fff;
            text-decoration: none;
        }
        footer {
            background: #0f1a2e;
            color: #c8d4e4;
            border-radius: 24px 24px 0 0;
            padding: 32px 28px 24px;
            margin: 0 -20px -40px;
            font-size: 0.9rem;
        }
        footer .footer-inner {
            max-width: 1160px;
            margin: 0 auto;
        }
        footer a {
            color: #f4b942;
        }
        footer a:hover {
            color: #ffd966;
        }
        footer .copyright {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid #2a3a52;
            font-size: 0.85rem;
            color: #8a9ab0;
        }
        @media (max-width: 820px) {
            body { padding: 0 12px 30px; }
            header { margin: 0 -12px 20px; padding: 16px 16px 12px; }
            main { padding: 20px 18px 30px; }
            h1 { font-size: 1.8rem; }
            h2 { font-size: 1.4rem; }
            .interaction-grid { grid-template-columns: 1fr; }
            .nav-list { display: none; flex-direction: column; width: 100%; background: #fff; padding: 12px 0; border-radius: 16px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); position: absolute; top: 70px; left: 12px; right: 12px; z-index: 99; }
            .nav-list.show { display: flex; }
            .nav-list li { text-align: center; }
            .nav-list li a { display: block; padding: 12px 20px; border-radius: 0; background: transparent; border: none; }
            .hamburger { display: block; }
            .header-inner { position: relative; }
            .data-table { font-size: 0.85rem; }
            .data-table th, .data-table td { padding: 10px 12px; }
            .search-section form { flex-direction: column; }
            .search-section button { width: 100%; justify-content: center; }
            .featured-image img { max-height: 240px; }
            footer { margin: 0 -12px -30px; padding: 24px 16px 20px; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 1.5rem; }
            h2 { font-size: 1.2rem; }
            h3 { font-size: 1.1rem; }
            .my-logo { font-size: 1.4rem; }
            .nav-list { top: 62px; }
            .interaction-card { padding: 18px 16px; }
            .rating-stars { font-size: 1.4rem; }
        }
        .text-muted { color: #5a6a7a; font-size: 0.9rem; }
        .mt-2 { margin-top: 2rem; }
        .mb-1 { margin-bottom: 0.5rem; }
        .flex-center { display: flex; align-items: center; gap: 8px; }
        .last-updated {
            display: inline-block;
            background: #eef2f8;
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #3a4a5a;
            margin-bottom: 1.2rem;
        }
        .table-wrap {
            overflow-x: auto;
        }
        .emoji-big { font-size: 1.8rem; }
        .gallery-mini {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 12px;
            margin: 1.5rem 0;
        }
        .gallery-mini img {
            border-radius: 12px;
            height: 120px;
            object-fit: cover;
        }
