*,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', system-ui, -apple-system, sans-serif;
            background: #f8f6f0;
            color: #1e2a2f;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #b45309;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #7b2d00;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
            border-radius: 20px 20px 0 0;
            overflow: hidden;
            padding: 1.5rem 2rem 2rem;
        }
        @media (max-width: 640px) {
            body {
                padding: 0 0.5rem;
            }
            .container {
                padding: 1rem 1rem 1.5rem;
                border-radius: 12px 12px 0 0;
            }
        }
        header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0 0.75rem;
            border-bottom: 2px solid #e6ddd0;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #3d2b1a;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo span {
            background: #b45309;
            color: #fff;
            padding: 0 8px;
            border-radius: 6px;
            font-size: 1.2rem;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
            color: #b45309;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            color: #6b5a4a;
            margin-left: 6px;
            letter-spacing: 0.3px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #3d2b1a;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #ede8df;
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.25rem 0.5rem;
        }
        nav a {
            padding: 0.4rem 0.9rem;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #3d2b1a;
            background: transparent;
            transition: all 0.2s ease;
        }
        nav a:hover,
        nav a:focus-visible {
            background: #b45309;
            color: #fff;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 1rem 0 0.5rem;
                gap: 0.3rem;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 0.6rem 1rem;
                border-radius: 8px;
                background: #f5f0e8;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.6rem;
            font-size: 0.85rem;
            padding: 0.75rem 0 0.25rem;
            color: #6b5a4a;
            list-style: none;
            background: transparent;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #b45309;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6b5a4a;
        }
        .breadcrumb a:hover {
            color: #b45309;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #1e2a2f;
            margin: 1.2rem 0 0.6rem;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2d1f13;
            margin: 2.2rem 0 0.8rem;
            padding-bottom: 0.3rem;
            border-bottom: 2px solid #e6ddd0;
            line-height: 1.3;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: #3d2b1a;
            margin: 1.6rem 0 0.5rem;
            line-height: 1.35;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #4d3826;
            margin: 1.2rem 0 0.3rem;
        }
        p {
            margin-bottom: 1.1rem;
            font-size: 1rem;
        }
        .lead {
            font-size: 1.15rem;
            color: #2d1f13;
            font-weight: 400;
            background: #faf6f0;
            padding: 1.2rem 1.6rem;
            border-radius: 14px;
            border-left: 4px solid #b45309;
            margin: 1.2rem 0;
        }
        strong,
        b {
            color: #1e2a2f;
            font-weight: 700;
        }
        ul,
        ol {
            margin: 0.6rem 0 1.2rem 1.8rem;
        }
        li {
            margin-bottom: 0.3rem;
        }
        .emoji-bullet {
            list-style: none;
            padding-left: 0;
        }
        .emoji-bullet li::before {
            content: "🐘 ";
            font-size: 1.1rem;
        }
        .featured-image {
            margin: 1.8rem 0 2rem;
            border-radius: 14px;
            overflow: hidden;
            background: #ede8df;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.7rem 1.2rem;
            font-size: 0.9rem;
            color: #5a4a3a;
            background: #faf6f0;
            font-style: italic;
        }
        .search-block {
            background: #f5f0e8;
            padding: 1.4rem 1.8rem;
            border-radius: 18px;
            margin: 2rem 0 1.8rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
            justify-content: center;
        }
        .search-block label {
            font-weight: 600;
            color: #3d2b1a;
            font-size: 1.05rem;
        }
        .search-block input[type="text"] {
            flex: 1 1 240px;
            padding: 0.7rem 1.2rem;
            border: 2px solid #d6cbbc;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: border 0.2s;
        }
        .search-block input[type="text"]:focus {
            border-color: #b45309;
        }
        .search-block button {
            background: #b45309;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-block button:hover {
            background: #8e3f06;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.2rem 0;
        }
        @media (max-width: 700px) {
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        .card-form {
            background: #faf6f0;
            padding: 1.4rem 1.6rem 1.8rem;
            border-radius: 18px;
            border: 1px solid #e6ddd0;
        }
        .card-form h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .card-form label {
            display: block;
            font-weight: 500;
            margin: 0.7rem 0 0.2rem;
            font-size: 0.95rem;
        }
        .card-form input,
        .card-form textarea,
        .card-form select {
            width: 100%;
            padding: 0.6rem 1rem;
            border: 2px solid #d6cbbc;
            border-radius: 10px;
            font-size: 0.95rem;
            background: #fff;
            font-family: inherit;
            transition: border 0.2s;
        }
        .card-form input:focus,
        .card-form textarea:focus,
        .card-form select:focus {
            border-color: #b45309;
            outline: none;
        }
        .card-form textarea {
            min-height: 80px;
            resize: vertical;
        }
        .card-form .btn-submit {
            margin-top: 1rem;
            background: #3d2b1a;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .card-form .btn-submit:hover {
            background: #1e2a2f;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            margin: 0.3rem 0 0.5rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #d6cbbc;
            cursor: pointer;
            transition: color 0.15s;
            margin: 0;
            padding: 0 0.1rem;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #e6a817;
        }
        footer {
            margin-top: 2.5rem;
            padding-top: 1.8rem;
            border-top: 2px solid #e6ddd0;
        }
        friend-link {
            display: block;
            padding: 1.2rem 1.6rem;
            background: #f5f0e8;
            border-radius: 16px;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }
        friend-link::before {
            content: "🔗 🤝 Friend Links";
            display: block;
            font-weight: 700;
            font-size: 1.1rem;
            color: #3d2b1a;
            margin-bottom: 0.6rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
            padding: 0.2rem 0.6rem;
            background: #fff;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid #d6cbbc;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #b45309;
            color: #fff;
            border-color: #b45309;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding: 1.2rem 0 0.5rem;
            font-size: 0.85rem;
            color: #6b5a4a;
            border-top: 1px solid #e6ddd0;
            margin-top: 0.8rem;
        }
        .copyright strong {
            color: #3d2b1a;
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .my-logo {
                font-size: 1.5rem;
                flex-wrap: wrap;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            .lead {
                padding: 1rem 1.2rem;
                font-size: 1rem;
            }
            .search-block {
                padding: 1rem 1.2rem;
            }
            .card-form {
                padding: 1rem 1.2rem;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #b45309;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.25s;
            opacity: 0.7;
            border: none;
            cursor: pointer;
            z-index: 99;
        }
        .scroll-top:hover {
            opacity: 1;
            transform: translateY(-4px);
            background: #8e3f06;
        }
        @media (max-width: 600px) {
            .scroll-top {
                bottom: 1.2rem;
                right: 1.2rem;
                width: 42px;
                height: 42px;
                font-size: 1.1rem;
            }
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.4rem 0 2rem;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }
        .data-table th {
            background: #3d2b1a;
            color: #fff;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #ede8df;
            background: #fafaf8;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f5f0e8;
        }
        .schema-hidden {
            display: none;
        }
