* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #fafaf6;
            color: #1e1e1e;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #b22222;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #8b0000;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #1a1a2e, #16213e);
            color: #f0e6d0;
            padding: 18px 0;
            border-bottom: 4px solid #b22222;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: 2px;
            color: #f0e6d0;
            text-transform: uppercase;
            font-family: 'Arial Black', Impact, sans-serif;
            transition: 0.3s;
        }
        .my-logo:hover {
            color: #ffd700;
            text-decoration: none;
            transform: scale(1.02);
        }
        .my-logo span {
            color: #ffd700;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #f0e6d0;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 4px;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #ddd6c8;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: 0.25s;
            border: 1px solid transparent;
        }
        nav a:hover {
            color: #ffd700;
            background: rgba(255, 215, 0, 0.08);
            border-color: rgba(255, 215, 0, 0.3);
            text-decoration: none;
        }
        .breadcrumb {
            background: #f5f0e8;
            padding: 12px 0;
            font-size: 0.85rem;
            color: #555;
            border-bottom: 1px solid #e0d8cc;
        }
        .breadcrumb a {
            color: #8b4513;
        }
        .breadcrumb a:hover {
            color: #b22222;
        }
        .breadcrumb i {
            margin: 0 6px;
            font-size: 0.7rem;
            color: #aaa;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1a1a2e;
            line-height: 1.2;
            margin-bottom: 12px;
            border-left: 6px solid #b22222;
            padding-left: 20px;
        }
        h1 i {
            color: #b22222;
            margin-right: 12px;
        }
        .subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 30px;
            padding-left: 26px;
            font-style: italic;
        }
        .last-updated {
            display: inline-block;
            background: #f0ebe0;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #6b5b4a;
            margin-bottom: 30px;
            font-weight: 500;
        }
        .last-updated i {
            margin-right: 6px;
            color: #b22222;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-top: 50px;
            margin-bottom: 18px;
            padding-bottom: 8px;
            border-bottom: 3px solid #e0d8cc;
        }
        h2 i {
            color: #b22222;
            margin-right: 10px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c2c44;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h3 i {
            color: #8b6914;
            margin-right: 8px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #3e3e5c;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
            color: #2c2c2c;
        }
        .highlight {
            background: #fff7e6;
            border-left: 4px solid #ffd700;
            padding: 16px 22px;
            border-radius: 0 8px 8px 0;
            margin: 24px 0;
        }
        .highlight strong {
            color: #b22222;
        }
        .stat-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-item {
            background: #f5f0e8;
            padding: 20px 16px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #e0d8cc;
            transition: 0.3s;
        }
        .stat-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        .stat-item .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #b22222;
            display: block;
        }
        .stat-item .label {
            font-size: 0.9rem;
            color: #6b5b4a;
            font-weight: 500;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f5f0e8;
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #555;
            font-style: italic;
        }
        .search-section {
            background: #f5f0e8;
            padding: 40px 30px;
            border-radius: 16px;
            margin: 50px 0 30px;
            border: 1px solid #e0d8cc;
        }
        .search-section h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            max-width: 600px;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #d0c8b8;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: 0.3s;
        }
        .search-form input:focus {
            border-color: #b22222;
            box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.15);
        }
        .search-form button {
            padding: 14px 32px;
            background: #b22222;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }
        .search-form button:hover {
            background: #8b0000;
            transform: scale(1.02);
        }
        .comment-section,
        .rating-section {
            background: #fafaf6;
            padding: 36px 30px;
            border-radius: 16px;
            margin: 30px 0;
            border: 1px solid #e0d8cc;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #d0c8b8;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            background: #fff;
            outline: none;
            transition: 0.3s;
            margin-bottom: 14px;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #b22222;
            box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.1);
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form .form-row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 180px;
        }
        .comment-form button,
        .rating-form button {
            padding: 14px 36px;
            background: #b22222;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #8b0000;
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #d0c8b8;
            cursor: pointer;
            margin: 12px 0 18px;
            flex-wrap: wrap;
        }
        .rating-stars i {
            transition: 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #ffd700;
        }
        .rating-stars i.fa-solid {
            color: #ffd700;
        }
        friend-link {
            display: block;
            background: #f5f0e8;
            padding: 30px 30px;
            border-radius: 16px;
            margin-top: 40px;
            border: 1px solid #e0d8cc;
        }
        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;
            margin-top: 12px;
        }
        friend-link li a {
            color: #6b5b4a;
            font-weight: 500;
        }
        friend-link li a:hover {
            color: #b22222;
        }
        footer {
            background: #1a1a2e;
            color: #c8c0b0;
            padding: 30px 0 24px;
            text-align: center;
            border-top: 4px solid #b22222;
            margin-top: 20px;
        }
        footer .copyright {
            font-size: 0.85rem;
            opacity: 0.8;
        }
        footer .copyright a {
            color: #ffd700;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 4px;
                padding-top: 16px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 12px;
            }
            nav.active {
                display: flex;
            }
            nav a {
                padding: 10px 16px;
                border-radius: 8px;
                width: 100%;
                text-align: left;
            }
            h1 {
                font-size: 2rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .stat-box {
                grid-template-columns: 1fr 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
            .container {
                padding: 0 14px;
            }
            main {
                padding: 24px 0 40px;
            }
            .featured-image img {
                max-height: 260px;
            }
            friend-link ul {
                flex-direction: column;
                gap: 8px;
            }
        }
        @media (max-width: 480px) {
            .stat-box {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.6rem;
            }
        }
        .schema-hidden {
            display: none;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #b22222;
            color: #b22222;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 600;
            transition: 0.3s;
            cursor: pointer;
            display: inline-block;
        }
        .btn-outline:hover {
            background: #b22222;
            color: #fff;
            text-decoration: none;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        th {
            background: #1a1a2e;
            color: #f0e6d0;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 12px 18px;
            border-bottom: 1px solid #eee8dc;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #faf5ee;
        }
        .tag {
            display: inline-block;
            background: #e8e0d0;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #4a3a2a;
            font-weight: 500;
        }
        .tag-red {
            background: #b22222;
            color: #fff;
        }
