        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.8;
            color: #1e1e1e;
            background: #fef9f0;
            padding: 0;
            margin: 0;
            background-image: radial-gradient(circle at 10% 20%, rgba(255, 200, 100, 0.05) 0%, transparent 50%);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
        }
        a {
            color: #b5451c;
            text-decoration: underline;
            transition: color 0.2s, background 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #7a2d0e;
            background: rgba(212, 172, 13, 0.12);
            border-radius: 4px;
        }
        ul,
        ol {
            padding-left: 1.6rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            font-weight: 700;
            color: #1f2e1a;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
            letter-spacing: -0.01em;
        }
        h1 {
            font-size: 2.6rem;
            color: #a6341a;
            border-left: 8px solid #d4ac0d;
            padding-left: 1.2rem;
            margin-top: 0.4rem;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 3px solid #e8d5b0;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #2d4a22;
        }
        h4 {
            font-size: 1.2rem;
            color: #4a3a1a;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .section-bg {
            background: #fffcf5;
            border-radius: 28px;
            padding: 2rem 1.8rem;
            margin: 2.2rem 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
        }
        .site-header {
            background: linear-gradient(145deg, #1f3b1a 0%, #2b5a1f 100%);
            padding: 0.6rem 0;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 4px solid #d4ac0d;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fbe9c3;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 0.2rem 0.6rem;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.06);
            transition: background 0.25s, transform 0.2s;
        }
        .my-logo:hover {
            background: rgba(255, 215, 0, 0.18);
            transform: scale(1.02);
            color: #ffd966;
        }
        .my-logo i {
            color: #f0c75e;
            font-size: 1.8rem;
        }
        .my-logo span {
            font-weight: 300;
            color: #c7e0b0;
            font-size: 1rem;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem 0.8rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #f5edd8;
            text-decoration: none;
            padding: 0.5rem 0.9rem;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: #d4ac0d;
            color: #1a2e15;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fbe9c3;
            font-size: 2rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 12px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background: #f5ede1;
            padding: 0.6rem 1.2rem;
            border-radius: 60px;
            display: inline-flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.5rem;
            font-size: 0.9rem;
            margin: 0.8rem 0 0.2rem;
            box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.04);
        }
        .breadcrumb a {
            color: #6d4c2a;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .sep {
            color: #ab8a5a;
            font-weight: 300;
        }
        .search-block {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin: 1.4rem 0 0.8rem;
            background: #f6efe5;
            padding: 1.2rem 1.6rem;
            border-radius: 60px;
            align-items: center;
            box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.04);
        }
        .search-block label {
            font-weight: 600;
            color: #2d4a22;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .search-block input {
            flex: 1;
            min-width: 160px;
            padding: 0.7rem 1.2rem;
            border: 2px solid #dccbb4;
            border-radius: 50px;
            font-size: 1rem;
            background: white;
            transition: border 0.2s, box-shadow 0.2s;
        }
        .search-block input:focus {
            border-color: #b5451c;
            box-shadow: 0 0 0 3px rgba(181, 69, 28, 0.15);
            outline: none;
        }
        .search-block button {
            background: #b5451c;
            color: white;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-block button:hover {
            background: #7a2d0e;
            transform: scale(0.98);
        }
        .featured-figure {
            margin: 2rem 0 1.6rem;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            background: #e8d5b0;
        }
        .featured-figure img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-figure figcaption {
            padding: 0.8rem 1.4rem;
            background: #faf3e8;
            font-style: italic;
            color: #4d3a22;
            font-size: 0.95rem;
            border-top: 2px solid #d4ac0d;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
            margin: 2.4rem 0;
        }
        @media (max-width: 700px) {
            .interaction-grid {
                grid-template-columns: 1fr;
                gap: 1.6rem;
            }
        }
        .card-form {
            background: #ffffffea;
            backdrop-filter: blur(2px);
            border-radius: 24px;
            padding: 1.8rem 1.6rem 2rem;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
            border: 1px solid #efdecb;
        }
        .card-form h3 {
            margin-top: 0;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .card-form label {
            font-weight: 600;
            display: block;
            margin-top: 1rem;
            margin-bottom: 0.3rem;
            color: #1f2e1a;
        }
        .card-form input,
        .card-form textarea,
        .card-form select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #dccbb4;
            border-radius: 16px;
            font-size: 1rem;
            background: white;
            transition: border 0.2s, box-shadow 0.2s;
            font-family: inherit;
        }
        .card-form input:focus,
        .card-form textarea:focus,
        .card-form select:focus {
            border-color: #b5451c;
            box-shadow: 0 0 0 3px rgba(181, 69, 28, 0.12);
            outline: none;
        }
        .card-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .card-form .btn-submit {
            background: #d4ac0d;
            color: #1a2e15;
            font-weight: 700;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 60px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            margin-top: 1.2rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .card-form .btn-submit:hover {
            background: #b8950a;
            transform: scale(0.97);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin: 0.4rem 0 0.2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #d4b896;
            cursor: pointer;
            transition: color 0.15s, transform 0.1s;
            margin: 0;
            padding: 0 2px;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
            transform: scale(1.05);
        }
        .site-footer {
            background: #1f2e1a;
            color: #e8ddc8;
            padding: 2.4rem 0 1.8rem;
            margin-top: 3.4rem;
            border-top: 6px solid #d4ac0d;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem 2.4rem;
        }
        @media (max-width: 700px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.6rem;
            }
        }
        .footer-grid h4 {
            color: #fbe9c3;
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 2px solid #3d5a32;
            padding-bottom: 0.4rem;
        }
        .footer-grid a {
            color: #c7e0b0;
            text-decoration: none;
        }
        .footer-grid a:hover {
            color: #f0c75e;
            text-decoration: underline;
        }
        friend-link {
            display: block;
            padding: 0.8rem 1.2rem;
            background: #2a3d24;
            border-radius: 20px;
            margin-top: 0.4rem;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin-right: 1.2rem;
            padding: 0.2rem 0;
        }
        .copyright {
            text-align: center;
            padding-top: 1.6rem;
            margin-top: 1.6rem;
            border-top: 1px solid #3d5a32;
            font-size: 0.9rem;
            color: #b7c9a8;
        }
        @media (max-width: 820px) {
            h1 {
                font-size: 2rem;
                padding-left: 0.8rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: #1f3b1a;
                padding: 0.8rem 0.6rem;
                border-radius: 24px;
                margin-top: 0.4rem;
                gap: 0.2rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1.2rem;
                border-radius: 30px;
                text-align: center;
            }
            .nav-toggle {
                display: block;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
            }
            .search-block {
                flex-direction: column;
                align-items: stretch;
                border-radius: 32px;
                padding: 1rem 1.2rem;
            }
            .search-block button {
                justify-content: center;
            }
            .section-bg {
                padding: 1.4rem 1rem;
                border-radius: 20px;
            }
            .card-form {
                padding: 1.4rem 1rem;
            }
        }
        @media (max-width: 480px) {
            html {
                font-size: 15px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo span {
                font-size: 0.8rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            .container {
                padding: 0 0.8rem;
            }
            .star-rating label {
                font-size: 1.7rem;
            }
        }
        .text-highlight {
            background: linear-gradient(to right, #fef3d5, #fce9b3);
            padding: 0.1rem 0.4rem;
            border-radius: 8px;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #d4ac0d;
            color: #1a2e15;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.15rem 0.7rem;
            border-radius: 40px;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        .emoji-lg {
            font-size: 1.8rem;
            vertical-align: middle;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.6rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fcf8f1;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e8dcc8;
        }
        th {
            background: #d4ac0d20;
            font-weight: 700;
            color: #2d4a22;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 1rem;
            background: #d4ac0d;
            color: #1a2e15;
            padding: 0.6rem 1.4rem;
            border-radius: 0 0 16px 16px;
            font-weight: 700;
            z-index: 200;
            transition: top 0.2s;
        }
        .skip-link:focus {
            top: 0;
        }
        .schema-hidden {
            display: none;
        }
