        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f5f3f0;
            color: #2c2c2c;
            line-height: 1.7;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #1a6b8a;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #0d3b4f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: #1e2b32;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
            font-weight: 600;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #3b8c9e;
            padding-left: 1rem;
            margin-top: 0.8rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #d4cdc4;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #2a4b5a;
        }
        h4 {
            font-size: 1.15rem;
            color: #3d5f6e;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .container {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            padding: 1.5rem 2rem 2rem;
            margin: 1.2rem 0 2rem;
        }
        @media (max-width: 640px) {
            body {
                padding: 0 0.5rem;
            }
            .container {
                padding: 1rem 1rem 1.5rem;
            }
            h1 {
                font-size: 1.7rem;
                padding-left: 0.6rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            p {
                font-size: 0.98rem;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0 0.6rem;
            border-bottom: 2px solid #e2dbd2;
            margin-bottom: 0.4rem;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            background: linear-gradient(145deg, #2c5f6e, #1a3b44);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #3b8c9e;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-menu {
            display: flex;
            gap: 0.2rem;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-menu li a {
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.92rem;
            color: #2c4a57;
            transition: background 0.2s, color 0.2s;
            display: block;
        }
        .nav-menu li a:hover {
            background: #e1eae9;
            color: #0f2e3a;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.6rem;
            color: #2c4a57;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 8px;
        }
        .hamburger:hover {
            background: #e8e2da;
        }
        #nav-toggle {
            display: none;
        }
        @media (max-width: 800px) {
            .hamburger {
                display: inline-block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #ffffff;
                border-radius: 16px;
                padding: 0.8rem 0.4rem;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                margin-top: 0.6rem;
                border: 1px solid #e6dfd6;
            }
            .nav-menu li a {
                padding: 0.7rem 1.2rem;
                border-radius: 12px;
            }
            #nav-toggle:checked+.hamburger+.nav-menu {
                display: flex;
            }
            .nav-wrapper {
                flex-wrap: wrap;
            }
        }
        @media (max-width: 640px) {
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.6rem 0 0.2rem;
            font-size: 0.88rem;
            color: #6b6b6b;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #a0988a;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #3b7a8a;
        }
        .breadcrumb a:hover {
            color: #1b4a5a;
        }
        .breadcrumb li:last-child {
            color: #4f4f4f;
            font-weight: 500;
        }
        .search-form {
            display: flex;
            gap: 0.4rem;
            margin: 1.4rem 0 1.8rem;
            max-width: 580px;
            background: #f0ece6;
            padding: 0.3rem;
            border-radius: 50px;
            border: 1px solid #ddd5cb;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: none;
            background: transparent;
            font-size: 1rem;
            border-radius: 50px;
            outline: none;
            color: #1e2b32;
        }
        .search-form input::placeholder {
            color: #8a8078;
        }
        .search-form button {
            background: #2c5f6e;
            border: none;
            color: #fff;
            padding: 0.7rem 1.6rem;
            border-radius: 50px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            font-weight: 500;
        }
        .search-form button:hover {
            background: #1a3b44;
        }
        @media (max-width: 480px) {
            .search-form {
                flex-direction: column;
                border-radius: 18px;
                background: transparent;
                border: none;
                gap: 0.6rem;
            }
            .search-form input {
                background: #f0ece6;
                border-radius: 30px;
                border: 1px solid #ddd5cb;
            }
            .search-form button {
                width: 100%;
                border-radius: 30px;
            }
        }
        .hero-img-wrap {
            margin: 1.6rem 0 2rem;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            background: #eae5de;
        }
        .hero-img-wrap img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            padding: 0.8rem 0 0.2rem;
            list-style: none;
        }
        .link-list-inline li a {
            background: #edf1f0;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.92rem;
            color: #1e4a5a;
            font-weight: 500;
            display: inline-block;
            border: 1px solid #d4d9d6;
            transition: background 0.2s, transform 0.1s;
        }
        .link-list-inline li a:hover {
            background: #d4e0dd;
            transform: translateY(-1px);
            text-decoration: none;
        }
        .comment-section,
        .rating-section {
            background: #f8f6f2;
            border-radius: 18px;
            padding: 1.6rem 1.8rem;
            margin: 2rem 0 1.4rem;
            border: 1px solid #e6dfd6;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form select,
        .rating-form input {
            padding: 0.7rem 1rem;
            border: 1px solid #d4cdc4;
            border-radius: 12px;
            font-size: 0.98rem;
            background: #fff;
            font-family: inherit;
            outline: none;
            transition: border 0.2s;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form select:focus,
        .rating-form input:focus {
            border-color: #3b8c9e;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn-submit {
            background: #2c5f6e;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
        }
        .btn-submit:hover {
            background: #1a3b44;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #d4c9b8;
            cursor: pointer;
        }
        .rating-stars .star {
            transition: color 0.15s;
        }
        .rating-stars .star.active,
        .rating-stars .star:hover {
            color: #f5b342;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0 0.6rem;
            font-size: 0.95rem;
            color: #3d3d3d;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1rem 0.2rem 0;
            padding: 0.2rem 0.8rem;
            background: #edebe7;
            border-radius: 20px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #1e4a5a;
            border: 1px solid #d9d2c9;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #d9d2c9;
            text-decoration: none;
        }
        .site-footer {
            border-top: 2px solid #e2dbd2;
            padding: 1.6rem 0 1.2rem;
            margin-top: 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 0.8rem;
            font-size: 0.9rem;
            color: #5a5a5a;
        }
        .site-footer .copyright {
            font-weight: 400;
        }
        .site-footer a {
            color: #2c5f6e;
        }
        @media (max-width: 600px) {
            .site-footer {
                flex-direction: column;
                text-align: center;
            }
        }
        .last-updated {
            font-size: 0.85rem;
            color: #7a726a;
            margin: 0.2rem 0 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .badge {
            background: #e1eae9;
            padding: 0.1rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #1e4a5a;
        }
        .emoji-lg {
            font-size: 1.3rem;
        }
        .highlight {
            background: #fcf3e0;
            padding: 0.1rem 0.3rem;
            border-radius: 6px;
            font-weight: 600;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.6rem;
            margin: 1.2rem 0;
        }
        @media (max-width: 640px) {
            .grid-2 {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
        .card {
            background: #f9f7f4;
            border-radius: 16px;
            padding: 1.4rem;
            border: 1px solid #ece5dc;
            transition: box-shadow 0.2s;
        }
        .card:hover {
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.7rem 0.8rem;
            text-align: left;
            border-bottom: 1px solid #e0d8cf;
        }
        th {
            background: #edf1f0;
            font-weight: 600;
            color: #1e3a44;
        }
        tr:hover td {
            background: #f5f2ec;
        }
        @media (max-width: 480px) {
            .container {
                padding: 0.8rem;
            }
            .comment-section,
            .rating-section {
                padding: 1rem;
            }
            .btn-submit {
                width: 100%;
                text-align: center;
            }
        }
