        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.8;
            color: #1e1e2a;
            background: #faf9f6;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #d43f2a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #a02b1a;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.8rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #0f1b2d;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.6rem;
            border-bottom: 4px solid #d43f2a;
            padding-bottom: 0.5rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            border-left: 6px solid #d43f2a;
            padding-left: 1rem;
            margin-top: 2.8rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #1f3a5f;
        }
        h4 {
            font-size: 1.2rem;
            color: #2a4a6e;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #2c2c3a;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .section-card {
            background: #ffffff;
            border-radius: 1.2rem;
            padding: 2rem 2.2rem;
            margin-bottom: 2rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #edeae3;
            transition: box-shadow 0.25s;
        }
        .section-card:hover {
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
        }
        .badge {
            display: inline-block;
            background: #d43f2a;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .highlight-box {
            background: #f1efe8;
            padding: 1.5rem 2rem;
            border-radius: 1rem;
            border-left: 8px solid #d43f2a;
            margin: 1.8rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 0.3rem;
        }
        .text-small {
            font-size: 0.9rem;
            color: #5a5a6a;
        }
        .text-muted {
            color: #6b6b7b;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.5rem;
        }
        @media (max-width:768px) {
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .section-card {
                padding: 1.2rem 1rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .container {
                padding: 0 0.8rem;
            }
        }
        .site-header {
            background: linear-gradient(135deg, #0b1a2e, #1a2f4a);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }
        .my-logo i {
            color: #f7b731;
            font-size: 2.2rem;
        }
        .my-logo span {
            color: #f7b731;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #f0e6d3;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            opacity: 0.7;
            display: block;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #e8e4dd;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .nav-menu a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 0.4rem;
            font-size: 0.85rem;
        }
        @media (max-width:768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 1rem;
                gap: 0.3rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.7rem 1rem;
                border-radius: 8px;
                background: rgba(255, 255, 255, 0.05);
            }
            .nav-menu a:hover {
                background: rgba(255, 255, 255, 0.15);
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            padding: 0.8rem 0 0.2rem;
            font-size: 0.85rem;
            color: #7a7a8a;
        }
        .breadcrumb a {
            color: #d43f2a;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .sep {
            color: #b0b0b8;
            font-weight: 300;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            max-width: 600px;
            margin: 1.2rem 0 0.8rem;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 2px solid #ddd8d0;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
            background: #fff;
            min-width: 180px;
        }
        .search-form input:focus {
            border-color: #d43f2a;
        }
        .search-form button {
            background: #d43f2a;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #a02b1a;
        }
        .review-form,
        .comment-form,
        .score-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin: 1.5rem 0;
            padding: 1.5rem 2rem;
            background: #f7f5f0;
            border-radius: 1rem;
            border: 1px solid #e6e0d6;
        }
        .review-form label,
        .comment-form label,
        .score-form label {
            font-weight: 600;
            font-size: 0.95rem;
            color: #1f2e44;
        }
        .review-form input,
        .review-form textarea,
        .comment-form input,
        .comment-form textarea,
        .score-form input,
        .score-form select {
            padding: 0.7rem 1rem;
            border: 2px solid #ddd8d0;
            border-radius: 8px;
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
            background: #fff;
            width: 100%;
        }
        .review-form input:focus,
        .review-form textarea:focus,
        .comment-form input:focus,
        .comment-form textarea:focus,
        .score-form input:focus,
        .score-form select:focus {
            border-color: #d43f2a;
        }
        .review-form textarea,
        .comment-form textarea {
            min-height: 110px;
            resize: vertical;
        }
        .review-form button,
        .comment-form button,
        .score-form button {
            align-self: flex-start;
            background: #0f1b2d;
            color: #fff;
            border: none;
            padding: 0.7rem 2.2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .review-form button:hover,
        .comment-form button:hover,
        .score-form button:hover {
            background: #1f3a5f;
        }
        .star-rating {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            color: #f7b731;
            cursor: pointer;
        }
        .star-rating i {
            transition: transform 0.15s;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .site-footer {
            background: #0b1a2e;
            color: #ccc;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .site-footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .site-footer a {
            color: #e8a87c;
        }
        .site-footer a:hover {
            color: #f7c9a0;
        }
        .site-footer .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 1.8rem;
            border-top: 1px solid #2a3f5a;
            font-size: 0.85rem;
            color: #9aaaba;
        }
        friend-link {
            display: block;
            background: #13273f;
            padding: 1.2rem 1.8rem;
            border-radius: 1rem;
            margin: 1rem 0;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1rem 0.3rem 0;
            color: #e8a87c;
        }
        friend-link a:hover {
            color: #f7c9a0;
        }
        @media (max-width:768px) {
            .site-footer .container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .site-footer .copyright {
                text-align: center;
            }
        }
        .hero-img-wrap {
            border-radius: 1.2rem;
            overflow: hidden;
            margin: 1.2rem 0 2rem;
            position: relative;
            background: #eae7df;
            aspect-ratio: 16/9;
            max-height: 480px;
        }
        .hero-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hero-img-wrap .img-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: #fff;
            padding: 1.2rem 1.8rem;
            font-size: 0.95rem;
            font-style: italic;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
            background: #fff;
            border-radius: 0.8rem;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        }
        .data-table th {
            background: #0f1b2d;
            color: #fff;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #edeae3;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f8f6f1;
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .tag-list .tag {
            background: #f0ede6;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #2c2c3a;
        }
        .update-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #e8f0f8;
            color: #1f3a5f;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            margin: 0.5rem 0 1rem;
        }
        .divider {
            height: 2px;
            background: linear-gradient(to right, #d43f2a, transparent);
            margin: 2rem 0;
        }
        .pro-tip {
            background: #fef9e7;
            border: 1px solid #f7e5b5;
            border-radius: 0.8rem;
            padding: 1.2rem 1.8rem;
            margin: 1.2rem 0;
        }
        .pro-tip i {
            color: #f7b731;
            margin-right: 0.6rem;
        }
        @media (max-width:480px) {
            .search-form button {
                padding: 0.7rem 1.2rem;
                font-size: 0.9rem;
            }
            .review-form,
            .comment-form,
            .score-form {
                padding: 1rem;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
        }
