* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #1a3c5e;
            --primary-light: #2a5a7e;
            --secondary: #e8b84b;
            --secondary-light: #f0d080;
            --accent: #c0392b;
            --bg: #faf8f0;
            --bg-card: #ffffff;
            --text: #2c3e50;
            --text-light: #6c7a89;
            --border: #dcd0b0;
            --radius: 12px;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --max-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            padding: 0 1rem;
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1rem;
        }
        header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: #fff;
            padding: 0.8rem 0;
            border-radius: 0 0 var(--radius) var(--radius);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, var(--secondary), #fff3b0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            -webkit-text-fill-color: var(--secondary);
            font-size: 2rem;
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        nav {
            display: flex;
            gap: 0.4rem;
            flex-wrap: wrap;
        }
        nav a {
            color: #f0e8d8;
            text-decoration: none;
            font-weight: 500;
            padding: 0.4rem 0.9rem;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: all 0.25s;
            white-space: nowrap;
        }
        nav a:hover,
        nav a:focus {
            background: rgba(255, 255, 255, 0.18);
            color: #fff;
            transform: translateY(-1px);
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: #fff;
            font-size: 1.5rem;
            padding: 0.3rem 0.7rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: var(--bg-card);
            padding: 0.6rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            margin: 1rem 0 0.5rem;
            box-shadow: var(--shadow);
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
        }
        .breadcrumb a {
            color: var(--primary-light);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: var(--text-light);
        }
        .breadcrumb .current {
            color: var(--text);
            font-weight: 600;
        }
        main {
            padding: 1.5rem 0 3rem;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
            margin: 1rem 0 0.8rem;
            letter-spacing: -0.5px;
        }
        h1 i {
            color: var(--secondary);
            margin-right: 0.4rem;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid var(--secondary);
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-light);
            margin: 2rem 0 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text);
            margin: 1.2rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 400;
            color: var(--text-light);
            line-height: 1.8;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(232, 184, 75, 0.25) 0%, rgba(232, 184, 75, 0.05) 100%);
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 0.3rem;
        }
        .card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.8rem 2rem;
            box-shadow: var(--shadow);
            margin: 1.8rem 0;
            border: 1px solid var(--border);
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .stat-box {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.5rem;
            text-align: center;
            box-shadow: var(--shadow);
            border-left: 5px solid var(--secondary);
            transition: transform 0.2s;
        }
        .stat-box:hover {
            transform: translateY(-4px);
        }
        .stat-box .number {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--primary);
        }
        .stat-box .label {
            font-size: 0.95rem;
            color: var(--text-light);
        }
        .btn {
            display: inline-block;
            padding: 0.6rem 1.6rem;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.25s;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }
        .btn-primary {
            background: var(--primary);
            color: #fff;
        }
        .btn-primary:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(26, 60, 94, 0.3);
        }
        .btn-secondary {
            background: var(--secondary);
            color: var(--primary);
        }
        .btn-secondary:hover {
            background: var(--secondary-light);
            transform: translateY(-2px);
        }
        .featured-img {
            width: 100%;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin: 1.5rem 0;
            max-height: 500px;
            object-fit: cover;
        }
        figure {
            margin: 1.8rem 0;
        }
        figcaption {
            font-size: 0.9rem;
            color: var(--text-light);
            text-align: center;
            margin-top: 0.5rem;
            font-style: italic;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            max-width: 550px;
            margin: 1.2rem 0;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 2px solid var(--border);
            border-radius: 30px;
            font-size: 1rem;
            outline: none;
            transition: 0.2s;
            min-width: 180px;
        }
        .search-form input:focus {
            border-color: var(--primary-light);
            box-shadow: 0 0 0 4px rgba(42, 90, 126, 0.1);
        }
        .search-form button {
            padding: 0.7rem 1.6rem;
            border-radius: 30px;
            border: none;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-form button:hover {
            background: var(--primary-light);
        }
        .comment-box,
        .rating-box {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 1.8rem 2rem;
            box-shadow: var(--shadow);
            margin: 1.8rem 0;
            border: 1px solid var(--border);
        }
        .comment-box textarea,
        .rating-box select,
        .rating-box input[type="text"] {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid var(--border);
            border-radius: 10px;
            font-size: 1rem;
            font-family: var(--font);
            resize: vertical;
            transition: 0.2s;
        }
        .comment-box textarea:focus,
        .rating-box select:focus,
        .rating-box input:focus {
            border-color: var(--primary-light);
            box-shadow: 0 0 0 4px rgba(42, 90, 126, 0.08);
            outline: none;
        }
        .comment-box textarea {
            min-height: 120px;
        }
        .form-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            align-items: center;
            margin: 0.8rem 0;
        }
        .form-row label {
            font-weight: 600;
            min-width: 100px;
        }
        .form-row select,
        .form-row input {
            flex: 1;
            min-width: 150px;
        }
        .star-rating i {
            color: var(--secondary);
            font-size: 1.6rem;
            cursor: pointer;
            transition: 0.15s;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        footer {
            background: var(--primary);
            color: #e0d8c8;
            padding: 2.5rem 0 1.2rem;
            border-radius: var(--radius) var(--radius) 0 0;
            margin-top: 3rem;
        }
        footer .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        footer h4 {
            color: var(--secondary);
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        footer a {
            color: #d0c8b8;
            text-decoration: none;
            display: block;
            padding: 0.2rem 0;
            font-size: 0.95rem;
            transition: 0.2s;
        }
        footer a:hover {
            color: var(--secondary);
            padding-left: 4px;
        }
        footer .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #b0a898;
            margin-top: 1.5rem;
        }
        friend-link {
            display: block;
            margin-top: 0.5rem;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
        }
        @media (max-width: 900px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-wrapper {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(0, 0, 0, 0.2);
                border-radius: 12px;
                padding: 0.6rem;
                margin-top: 0.4rem;
            }
            nav a {
                padding: 0.6rem 1rem;
                border-radius: 8px;
            }
            .hamburger {
                display: block;
            }
            #nav-toggle:checked~.nav-wrapper nav {
                display: flex;
            }
            .breadcrumb {
                font-size: 0.78rem;
                padding: 0.4rem 1rem;
            }
            .card {
                padding: 1.2rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .stat-box .number {
                font-size: 1.8rem;
            }
            .lead {
                font-size: 1.1rem;
            }
            .search-form input {
                min-width: 140px;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.6rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.5rem;
            }
            .btn {
                padding: 0.5rem 1.2rem;
                font-size: 0.85rem;
            }
            .comment-box,
            .rating-box {
                padding: 1rem;
            }
            .form-row {
                flex-direction: column;
                align-items: stretch;
            }
            .form-row label {
                min-width: auto;
            }
            footer .container {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .gap-0 {
            gap: 0.3rem;
        }
        .tag {
            background: var(--secondary);
            color: var(--primary);
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
        }
        .last-updated {
            font-size: 0.9rem;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin: 0.5rem 0 1.5rem;
        }
        .last-updated i {
            color: var(--secondary);
        }
        blockquote {
            border-left: 5px solid var(--secondary);
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            background: rgba(232, 184, 75, 0.08);
            border-radius: 0 12px 12px 0;
            font-style: italic;
        }
        blockquote cite {
            display: block;
            margin-top: 0.6rem;
            font-weight: 600;
            color: var(--primary);
            font-style: normal;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-card);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        th {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: rgba(232, 184, 75, 0.05);
        }
        .sitemap-list {
            columns: 2 220px;
            column-gap: 2rem;
            list-style: none;
            padding: 0;
        }
        .sitemap-list li {
            break-inside: avoid;
            padding: 0.3rem 0;
        }
        .sitemap-list a {
            color: var(--primary-light);
            text-decoration: none;
        }
        .sitemap-list a:hover {
            text-decoration: underline;
        }
        @media (max-width: 600px) {
            .sitemap-list {
                columns: 1;
            }
        }
