        *,
        *::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: #fbf7f0;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #c9520a;
            text-decoration: underline;
            text-underline-offset: 2px;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #a03f00;
            text-decoration-thickness: 2px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #1e1e2a;
            font-weight: 700;
        }
        h1 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 1.7rem;
            margin-top: 2.4rem;
            margin-bottom: 0.75rem;
            border-bottom: 3px solid #ff9933;
            padding-bottom: 0.35rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 1.8rem;
            margin-bottom: 0.5rem;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.4rem;
            margin-bottom: 0.3rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1rem;
        }
        ul,
        ol {
            margin: 0.5rem 0 1.2rem 1.6rem;
        }
        li {
            margin-bottom: 0.3rem;
        }
        blockquote {
            border-left: 5px solid #ff9933;
            padding: 0.8rem 1.2rem;
            margin: 1.2rem 0;
            background: #fff6eb;
            border-radius: 0 8px 8px 0;
            font-style: italic;
        }
        hr {
            border: none;
            border-top: 2px dashed #e0d5c5;
            margin: 2.5rem 0;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        :root {
            --saffron: #ff9933;
            --saffron-dark: #e67e1a;
            --green: #138808;
            --green-dark: #0e6b06;
            --blue: #1a5276;
            --cream: #fbf7f0;
            --warm-white: #fffaf5;
            --charcoal: #1e1e2a;
            --gold: #d4a017;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            --radius: 12px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #fff;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #ff9933, #ffcc00);
            -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:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: rgba(255, 255, 255, 0.6);
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 0.05em;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.2rem;
            margin: 0;
            padding: 0;
        }
        .nav-list li a {
            color: #f0e6d8;
            text-decoration: none;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.2s, color 0.2s;
        }
        .nav-list li a:hover,
        .nav-list li a:focus {
            background: rgba(255, 153, 51, 0.2);
            color: #ffcc80;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background: #fff;
            padding: 0.5rem 0;
            border-bottom: 1px solid #e8e0d6;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            margin: 0;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #b0a898;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #c9520a;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #5a4a3a;
            font-weight: 500;
        }
        .main-content {
            background: var(--warm-white);
            padding: 2rem 0 3rem;
        }
        .article-body {
            background: #fff;
            border-radius: var(--radius);
            padding: 2rem 1.8rem;
            box-shadow: var(--shadow);
        }
        .hero-figure {
            margin: 0 0 1.8rem;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
        }
        .hero-figure img {
            width: 100%;
            height: auto;
            max-height: 480px;
            object-fit: cover;
        }
        .hero-figure figcaption {
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #5a4a3a;
            background: #f5efe8;
            font-style: italic;
        }
        .search-section {
            background: #f0ebe4;
            padding: 1.5rem 1.8rem;
            border-radius: var(--radius);
            margin: 2rem 0;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            align-items: center;
        }
        .search-form input[type="text"] {
            flex: 1 1 240px;
            padding: 0.7rem 1rem;
            border: 2px solid #dcd0c4;
            border-radius: 8px;
            font-size: 0.95rem;
            background: #fff;
            transition: border-color 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: var(--saffron);
            outline: none;
        }
        .search-form button {
            background: var(--saffron);
            color: #1e1e2a;
            border: none;
            padding: 0.7rem 1.6rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: var(--saffron-dark);
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .feedback-card {
            background: #f9f5ef;
            border-radius: var(--radius);
            padding: 1.5rem 1.8rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.15rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .feedback-card textarea,
        .feedback-card input,
        .feedback-card select {
            padding: 0.6rem 0.9rem;
            border: 2px solid #dcd0c4;
            border-radius: 8px;
            font-size: 0.9rem;
            background: #fff;
            font-family: inherit;
            transition: border-color 0.2s;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus,
        .feedback-card select:focus {
            border-color: var(--saffron);
            outline: none;
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card button {
            background: var(--green);
            color: #fff;
            border: none;
            padding: 0.65rem 1.4rem;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            align-self: flex-start;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .feedback-card button:hover {
            background: var(--green-dark);
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.6rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
        }
        .inline-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 0.6rem;
            margin: 1.2rem 0;
            padding: 0;
            list-style: none;
        }
        .inline-links-grid li a {
            display: block;
            padding: 0.5rem 0.8rem;
            background: #f5efe8;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            color: #1e1e2a;
            transition: background 0.2s, transform 0.1s;
            border-left: 3px solid var(--saffron);
        }
        .inline-links-grid li a:hover {
            background: #e8dfd4;
            transform: translateX(4px);
            text-decoration: none;
        }
        .site-footer {
            background: #1a1a2e;
            color: #c8c0b6;
            padding: 2.5rem 0 1.8rem;
            font-size: 0.9rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
        }
        .footer-inner a {
            color: #ffb366;
        }
        .footer-inner a:hover {
            color: #ffcc80;
        }
        .friend-link {
            display: block;
            margin-top: 0.3rem;
            padding: 0.3rem 0;
        }
        .friend-link a {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 6px;
            margin: 0.2rem 0.2rem 0.2rem 0;
            color: #e0d5c5;
            text-decoration: none;
            font-size: 0.85rem;
            transition: background 0.2s;
        }
        .friend-link a:hover {
            background: rgba(255, 153, 51, 0.15);
            text-decoration: none;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 1.2rem;
            margin-top: 1.5rem;
            text-align: center;
            font-size: 0.82rem;
            color: #9a9086;
        }
        .copyright a {
            color: #ffb366;
        }
        @media (max-width: 820px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .article-body {
                padding: 1.2rem 1rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                background: #1a1a2e;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                padding: 0.6rem 1rem;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
                gap: 0.1rem;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                display: block;
                padding: 0.6rem 0.8rem;
                border-radius: 4px;
            }
            .hamburger {
                display: block;
            }
            .header-inner {
                position: relative;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="text"] {
                width: 100%;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .inline-links-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .inline-links-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            .hero-figure figcaption {
                font-size: 0.75rem;
            }
            .feedback-card {
                padding: 1rem 1.2rem;
            }
        }
        .tag {
            display: inline-block;
            background: #ff9933;
            color: #1e1e2a;
            padding: 0.15rem 0.7rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.02em;
        }
        .highlight-box {
            background: #f0f7ee;
            border-left: 4px solid var(--green);
            padding: 1rem 1.4rem;
            border-radius: 0 10px 10px 0;
            margin: 1.2rem 0;
        }
        .highlight-box.gold {
            background: #fdf8ee;
            border-left-color: var(--gold);
        }
        .last-updated {
            font-size: 0.85rem;
            color: #7a6a5a;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #e8e0d6;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .stat-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            background: #1a5276;
            color: #fff;
            padding: 0.2rem 0.7rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 0;
            background: #ff9933;
            color: #1e1e2a;
            padding: 0.5rem 1rem;
            font-weight: 700;
            z-index: 9999;
            transition: top 0.2s;
        }
        .skip-link:focus {
            top: 0;
        }
