        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #faf9f6;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #78350f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.2;
            color: #1e1e2a;
            margin-bottom: 0.75rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            color: #2d2d3f;
            border-bottom: 3px solid #e2c275;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
            color: #3d3d52;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 1.2rem;
            margin-bottom: 0.4rem;
            color: #4a4a62;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .lead {
            font-size: 1.15rem;
            color: #2d2d3f;
            font-weight: 400;
        }
        strong {
            color: #b45309;
            font-weight: 700;
        }
        em {
            font-style: italic;
            color: #6b4f1f;
        }
        .site-header {
            background: linear-gradient(135deg, #1e1e2a 0%, #2d2d3f 100%);
            color: #faf9f6;
            padding: 1.2rem 0;
            border-radius: 0 0 24px 24px;
            margin-bottom: 2rem;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
            position: relative;
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.8rem 1.5rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: 2px;
            color: #e2c275;
            text-transform: uppercase;
            transition: opacity 0.2s;
            font-family: 'Georgia', serif;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
            color: #f5d98f;
        }
        .my-logo small {
            font-size: 0.75rem;
            font-weight: 300;
            letter-spacing: 1px;
            color: #b0a8a0;
            display: block;
            text-transform: none;
            font-family: system-ui, sans-serif;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #e2c275;
            color: #e2c275;
            font-size: 1.4rem;
            padding: 0.4rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .nav-toggle:hover {
            background: #e2c275;
            color: #1e1e2a;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1.2rem;
            align-items: center;
            list-style: none;
        }
        .nav-menu li a {
            color: #f0ebe3;
            font-weight: 500;
            padding: 0.3rem 0.1rem;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .nav-menu li a:hover {
            border-bottom-color: #e2c275;
            color: #e2c275;
            text-decoration: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            font-size: 0.9rem;
            color: #a09890;
            padding: 0.6rem 0 0.2rem;
            margin-bottom: 1.2rem;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #c0b0a0;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #b45309;
        }
        .breadcrumb a:hover {
            color: #78350f;
        }
        .breadcrumb .current {
            color: #2d2d3f;
            font-weight: 500;
        }
        .hero-img {
            margin: 1.8rem 0 2.2rem;
            border-radius: 18px;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
            background: #f0ede8;
        }
        .hero-img figcaption {
            font-size: 0.9rem;
            color: #6a5f50;
            text-align: center;
            padding: 0.6rem 0 0;
            font-style: italic;
        }
        .link-group {
            background: #f5f1ea;
            padding: 1.2rem 1.6rem;
            border-radius: 16px;
            margin: 1.6rem 0;
            border-left: 4px solid #e2c275;
        }
        .link-group ul {
            list-style: none;
            padding: 0;
            margin: 0.4rem 0 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.5rem;
        }
        .link-group li a {
            font-weight: 500;
        }
        .search-block {
            background: #f5f1ea;
            padding: 1.6rem;
            border-radius: 18px;
            margin: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .search-block label {
            font-weight: 600;
            color: #2d2d3f;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-block input[type="search"] {
            flex: 1 1 220px;
            padding: 0.7rem 1rem;
            border: 2px solid #dcd5cc;
            border-radius: 40px;
            font-size: 0.95rem;
            background: #fff;
            transition: 0.2s;
            min-width: 150px;
        }
        .search-block input[type="search"]:focus {
            border-color: #b45309;
            outline: none;
            box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.15);
        }
        .search-block button {
            background: #b45309;
            color: #fff;
            border: none;
            padding: 0.7rem 1.6rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-block button:hover {
            background: #78350f;
            transform: scale(1.02);
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        @media (max-width:700px) {
            .interact-grid {
                grid-template-columns: 1fr;
            }
        }
        .card {
            background: #fff;
            border-radius: 20px;
            padding: 1.8rem 1.6rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #ece6de;
        }
        .card h3 {
            margin-top: 0;
            border-bottom: 2px solid #e2c275;
            padding-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .card textarea,
        .card input[type="text"],
        .card input[type="number"] {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #dcd5cc;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: 0.2s;
            margin-bottom: 0.8rem;
            background: #faf9f6;
        }
        .card textarea:focus,
        .card input:focus {
            border-color: #b45309;
            outline: none;
            box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.10);
        }
        .card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .card .btn {
            background: #1e1e2a;
            color: #faf9f6;
            border: none;
            padding: 0.65rem 1.6rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .card .btn:hover {
            background: #b45309;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #e2c275;
            margin-bottom: 0.6rem;
            cursor: default;
        }
        .rating-stars i {
            cursor: pointer;
            transition: 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #b45309;
            transform: scale(1.1);
        }
        .score-value {
            font-weight: 700;
            font-size: 1.2rem;
            color: #1e1e2a;
        }
        .site-footer {
            background: #1e1e2a;
            color: #d0c8c0;
            padding: 2.5rem 0 1.8rem;
            border-radius: 24px 24px 0 0;
            margin-top: 3.5rem;
        }
        .site-footer a {
            color: #e2c275;
        }
        .site-footer a:hover {
            color: #f5d98f;
            text-decoration: underline;
        }
        friend-link {
            display: block;
            padding: 0.8rem 0;
            font-size: 0.95rem;
            border-top: 1px solid #3d3d52;
            margin-top: 1.2rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1.2rem 0.3rem 0;
        }
        .copyright {
            font-size: 0.85rem;
            color: #9a9088;
            padding-top: 1rem;
            border-top: 1px solid #3d3d52;
            margin-top: 1rem;
            text-align: center;
        }
        @media (max-width:700px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 0.8rem 0 0.2rem;
                gap: 0.3rem 0;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                display: block;
                padding: 0.4rem 0;
                font-size: 1rem;
                border-bottom: 1px solid #3d3d52;
                width: 100%;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .search-block {
                flex-direction: column;
                align-items: stretch;
            }
            .search-block button {
                justify-content: center;
            }
        }
        @media (min-width:701px) {
            .nav-toggle {
                display: none !important;
            }
            .nav-menu {
                display: flex !important;
            }
        }
        .tag {
            display: inline-block;
            background: #e2c275;
            color: #1e1e2a;
            padding: 0.15rem 0.8rem;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 0.4rem;
        }
        .updated-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #e9e3da;
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #2d2d3f;
            font-weight: 500;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.4rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        th,
        td {
            padding: 0.6rem 1rem;
            text-align: left;
            border-bottom: 1px solid #ece6de;
        }
        th {
            background: #1e1e2a;
            color: #faf9f6;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        blockquote {
            border-left: 4px solid #e2c275;
            padding: 0.8rem 1.2rem;
            margin: 1.2rem 0;
            background: #f5f1ea;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #3d3d52;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        @media (max-width:600px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
        }
        .article-section {
            background: #fff;
            padding: 1.8rem 2rem;
            border-radius: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
            margin-bottom: 2rem;
        }
        @media (max-width:550px) {
            .article-section {
                padding: 1.2rem 1rem;
            }
        }
