        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #fafaf7;
            color: #1e2a2f;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #1a6b4a;
            text-decoration: none;
            transition: color 0.25s, border-color 0.25s;
            border-bottom: 1px solid transparent;
        }
        a:hover,
        a:focus-visible {
            color: #b8860b;
            border-bottom-color: #b8860b;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #0f1f1a;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
            border-bottom: 4px solid #d4a017;
            display: inline-block;
            padding-bottom: 0.3rem;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 5px solid #1a6b4a;
            padding-left: 0.8rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #1e4a3a;
        }
        h4 {
            font-size: 1.15rem;
            color: #2d5a4a;
        }
        p {
            margin-bottom: 1.2rem;
            word-spacing: 0.04em;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 8px;
            background: #1a6b4a;
            color: #fff;
            padding: 0.6rem 1.4rem;
            border-radius: 0 0 6px 6px;
            z-index: 10000;
            font-weight: 600;
        }
        .skip-link:focus {
            top: 0;
        }
        .site-header {
            background: linear-gradient(145deg, #0f2a22 0%, #1a4a3a 100%);
            color: #f5f0e6;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 3px 18px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #f5e6c8;
            border: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo i {
            color: #d4a017;
            font-size: 1.9rem;
        }
        .my-logo:hover {
            color: #ffd966;
            border: none;
        }
        .my-logo small {
            font-size: 0.65rem;
            font-weight: 400;
            color: #b8c9c0;
            display: block;
            letter-spacing: 0.04em;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #e8f0ea;
            padding: 0.45rem 0.9rem;
            border-radius: 30px;
            font-size: 0.92rem;
            font-weight: 500;
            border: 1px solid transparent;
            transition: all 0.25s;
            border-bottom: none;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: rgba(212, 160, 23, 0.25);
            border-color: #d4a017;
            color: #ffd966;
            border-bottom: none;
        }
        .main-nav a.active {
            background: #d4a017;
            color: #0f1f1a;
            font-weight: 600;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #d4a017;
            color: #d4a017;
            font-size: 1.5rem;
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(212, 160, 23, 0.2);
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: #0f2a22;
                padding: 1rem 0.5rem;
                border-radius: 0 0 12px 12px;
                margin-top: 0.4rem;
                gap: 0.3rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1.2rem;
                border-radius: 6px;
                text-align: center;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .container {
                padding: 0 0.8rem;
            }
        }
        .breadcrumb {
            padding: 0.8rem 0 0.2rem;
            font-size: 0.85rem;
            color: #5a6f66;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            align-items: center;
        }
        .breadcrumb a {
            color: #1a6b4a;
            border: none;
        }
        .breadcrumb a:hover {
            color: #b8860b;
            border: none;
        }
        .breadcrumb .sep {
            color: #a0b0a8;
        }
        .breadcrumb .current {
            color: #2d4a3a;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #e9f0e6 0%, #d4e0d4 100%);
            border-radius: 20px;
            padding: 2.2rem 2rem;
            margin: 1.2rem 0 2.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            border: 1px solid #c5d6c8;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }
        .hero-text {
            flex: 2 1 300px;
        }
        .hero-img-wrap {
            flex: 1 1 240px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
        }
        .hero-img-wrap img {
            width: 100%;
            height: auto;
            aspect-ratio: 4/3;
            object-fit: cover;
        }
        .hero .tagline {
            font-size: 1.1rem;
            color: #2d5a4a;
            font-weight: 500;
            margin-bottom: 0.8rem;
        }
        .hero .tagline i {
            color: #d4a017;
            margin-right: 0.4rem;
        }
        .hero p {
            font-size: 1.05rem;
        }
        .update-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #1a6b4a;
            color: #f5f0e6;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 500;
            margin-top: 0.6rem;
        }
        .search-section {
            background: #eef4f0;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            margin: 2rem 0;
            border: 1px solid #d0ddd4;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .search-form label {
            font-weight: 600;
            color: #1a3a2e;
            font-size: 0.95rem;
        }
        .search-form input[type="text"] {
            flex: 2 1 220px;
            padding: 0.7rem 1.2rem;
            border: 2px solid #c5d6c8;
            border-radius: 40px;
            font-size: 1rem;
            background: #fffdf8;
            transition: border 0.25s;
            outline: none;
        }
        .search-form input[type="text"]:focus {
            border-color: #1a6b4a;
            box-shadow: 0 0 0 3px rgba(26, 107, 74, 0.15);
        }
        .search-form button {
            background: #1a6b4a;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #b8860b;
            transform: translateY(-2px);
        }
        .content-section {
            background: #fffdf8;
            border-radius: 18px;
            padding: 2.2rem 2rem;
            margin: 2rem 0;
            border: 1px solid #e2eade;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
        }
        .content-section p,
        .content-section li {
            font-size: 1.02rem;
            color: #1f2e28;
        }
        .highlight-box {
            background: #f2f7f2;
            border-left: 6px solid #d4a017;
            padding: 1.2rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1.2rem;
            margin: 1.8rem 0;
        }
        .stat-card {
            background: #f5faf5;
            border-radius: 14px;
            padding: 1.2rem 1rem;
            text-align: center;
            border: 1px solid #dce8de;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        .stat-card .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #1a6b4a;
            line-height: 1.2;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #4a6a5a;
            font-weight: 500;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.8rem 0;
            border-radius: 12px;
            border: 1px solid #dce8de;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fffdf8;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e2eade;
        }
        th {
            background: #1a4a3a;
            color: #f5f0e6;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        tr:nth-child(even) {
            background: #f6faf6;
        }
        tr:hover td {
            background: #edf5ec;
        }
        .rating-section,
        .comment-section {
            background: #f5f9f5;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            border: 1px solid #d0ddd4;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.3rem;
            font-size: 2rem;
            margin: 0.6rem 0 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #cfd8d0;
            cursor: pointer;
            transition: color 0.2s, transform 0.1s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #d4a017;
            transform: scale(1.05);
        }
        .rating-section form,
        .comment-section form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            max-width: 600px;
        }
        .rating-section input[type="text"],
        .rating-section input[type="email"],
        .comment-section input[type="text"],
        .comment-section input[type="email"],
        .comment-section textarea {
            padding: 0.7rem 1.2rem;
            border: 2px solid #d0ddd4;
            border-radius: 10px;
            font-size: 1rem;
            background: #fffdf8;
            outline: none;
            transition: border 0.25s;
        }
        .rating-section input:focus,
        .comment-section input:focus,
        .comment-section textarea:focus {
            border-color: #1a6b4a;
            box-shadow: 0 0 0 3px rgba(26, 107, 74, 0.1);
        }
        .comment-section textarea {
            min-height: 110px;
            resize: vertical;
        }
        .btn-primary {
            background: #1a6b4a;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            align-self: flex-start;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-primary:hover {
            background: #b8860b;
            transform: translateY(-2px);
        }
        friend-link {
            display: block;
            background: #f0f5f0;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            margin: 2.5rem 0 1.5rem;
            border: 1px solid #d0ddd4;
        }
        friend-link h3 {
            margin-top: 0;
            color: #0f2a22;
            font-size: 1.2rem;
            border-bottom: 2px solid #d4a017;
            display: inline-block;
            padding-bottom: 0.3rem;
        }
        friend-link ul {
            list-style: none;
            padding: 0.8rem 0 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.6rem;
        }
        friend-link li {
            margin: 0;
        }
        friend-link a {
            color: #1a6b4a;
            font-weight: 500;
            border-bottom: 1px dotted #b8c9c0;
        }
        friend-link a:hover {
            color: #b8860b;
            border-bottom-color: #b8860b;
        }
        .site-footer {
            background: #0f2a22;
            color: #d0ddd4;
            padding: 2rem 0 1.2rem;
            margin-top: 3rem;
            border-top: 4px solid #d4a017;
        }
        .site-footer .copyright {
            font-size: 0.85rem;
            text-align: center;
            opacity: 0.9;
            border-top: 1px solid #2a4a3a;
            padding-top: 1.2rem;
            margin-top: 1.2rem;
        }
        .site-footer a {
            color: #c8e0d0;
            border-bottom: 1px dotted #4a7a5a;
        }
        .site-footer a:hover {
            color: #ffd966;
            border-bottom-color: #ffd966;
        }
        .back-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #1a6b4a;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            border: 2px solid #d4a017;
            transition: all 0.3s;
            z-index: 500;
            opacity: 0.85;
        }
        .back-top:hover {
            background: #b8860b;
            transform: translateY(-4px);
            opacity: 1;
        }
        @media (max-width: 480px) {
            .hero {
                padding: 1.2rem 1rem;
            }
            .content-section {
                padding: 1.2rem 1rem;
            }
            .rating-section,
            .comment-section,
            .search-section {
                padding: 1.2rem 1rem;
            }
            .stat-card .number {
                font-size: 1.6rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
        }
        @media (min-width: 769px) {
            .main-nav {
                display: flex !important;
            }
        }
        :focus-visible {
            outline: 3px solid #d4a017;
            outline-offset: 2px;
        }
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
            html {
                scroll-behavior: auto;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        .no-bullet {
            list-style: none;
            padding-left: 0;
        }
        .text-gold {
            color: #b8860b;
        }
        .fw-600 {
            font-weight: 600;
        }
