        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            background: #f4f1eb;
            color: #2c2c2c;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #6b4c1e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
            color: #1e1e1e;
        }
        h1 {
            font-size: 2.6rem;
            border-bottom: 4px solid #b8860b;
            padding-bottom: 0.4rem;
        }
        h2 {
            font-size: 2rem;
            border-left: 6px solid #b8860b;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #3a3a3a;
        }
        h4 {
            font-size: 1.2rem;
            color: #555;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
            border-radius: 20px;
            padding: 1.5rem 2rem 2rem;
        }
        .highlight {
            background: #fdf5e6;
            padding: 0.2rem 0.5rem;
            border-radius: 6px;
            font-weight: 600;
        }
        .badge {
            display: inline-block;
            background: #b8860b;
            color: #fff;
            font-size: 0.75rem;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 0.3rem;
        }
        hr {
            border: 0;
            height: 2px;
            background: linear-gradient(to right, #b8860b, transparent);
            margin: 2.5rem 0;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0 0.8rem;
            border-bottom: 2px solid #e6dcc8;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #b8860b, #6b4c1e);
            -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: #b8860b;
            font-size: 2rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .main-nav li a {
            display: block;
            padding: 0.5rem 1rem;
            font-weight: 500;
            color: #2c2c2c;
            border-radius: 30px;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav li a:hover {
            background: #b8860b;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #2c2c2c;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0e7d6;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.8rem 0 0.2rem;
            margin: 0 0 1.2rem 0;
            font-size: 0.9rem;
            color: #777;
            gap: 0.3rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 0.5rem;
            color: #bbb;
        }
        .breadcrumb a {
            color: #777;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb .active {
            color: #2c2c2c;
            font-weight: 600;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.8rem 0 1.2rem;
            max-width: 600px;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border: 2px solid #ddd;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
        }
        .search-form input:focus {
            border-color: #b8860b;
        }
        .search-form button {
            padding: 0.7rem 1.8rem;
            background: #b8860b;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #6b4c1e;
            transform: scale(1.02);
        }
        .char-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.8rem;
            margin: 2rem 0;
        }
        .char-card {
            background: #faf8f4;
            border-radius: 16px;
            padding: 1.5rem 1.2rem 1.2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
            transition: transform 0.25s, box-shadow 0.3s;
            border: 1px solid #ede6d8;
        }
        .char-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
        }
        .char-card h3 {
            margin-top: 0.2rem;
            font-size: 1.4rem;
        }
        .char-card h3 i {
            color: #b8860b;
            margin-right: 0.4rem;
        }
        .char-card .subtitle {
            color: #888;
            font-size: 0.9rem;
            margin-bottom: 0.6rem;
        }
        .hero-img {
            margin: 2rem 0 1.2rem;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            background: #e6dcc8;
        }
        .hero-img img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .hero-img figcaption {
            padding: 0.8rem 1.2rem;
            font-style: italic;
            color: #555;
            background: #f9f5ed;
            font-size: 0.9rem;
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0 1.5rem;
            background: #f9f5ed;
            padding: 2rem;
            border-radius: 20px;
        }
        .feedback-section form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .feedback-section form label {
            font-weight: 600;
            font-size: 0.95rem;
        }
        .feedback-section form input,
        .feedback-section form textarea,
        .feedback-section form select {
            padding: 0.7rem 1rem;
            border: 2px solid #ddd;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            outline: none;
            transition: border 0.2s;
        }
        .feedback-section form input:focus,
        .feedback-section form textarea:focus,
        .feedback-section form select:focus {
            border-color: #b8860b;
        }
        .feedback-section form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-section form button {
            padding: 0.7rem 1.8rem;
            background: #b8860b;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            align-self: flex-start;
        }
        .feedback-section form button:hover {
            background: #6b4c1e;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #ddd;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            transition: color 0.2s;
            color: #ddd;
        }
        .rating-stars input:checked~label,
        .rating-stars label:hover,
        .rating-stars label:hover~label {
            color: #f5b342;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8rem 0;
            font-size: 0.95rem;
        }
        .data-table th {
            background: #b8860b;
            color: #fff;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #eee;
        }
        .data-table tr:hover td {
            background: #fdf5e6;
        }
        blockquote {
            background: #f9f5ed;
            border-left: 6px solid #b8860b;
            padding: 1.2rem 1.8rem;
            margin: 1.8rem 0;
            border-radius: 0 16px 16px 0;
            font-style: italic;
            color: #444;
        }
        blockquote cite {
            display: block;
            margin-top: 0.6rem;
            font-weight: 600;
            color: #2c2c2c;
            font-style: normal;
        }
        .site-footer {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #e6dcc8;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        friend-link {
            display: block;
            background: #f9f5ed;
            padding: 1.2rem 1.8rem;
            border-radius: 16px;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1rem 0.2rem 0;
        }
        .copyright {
            text-align: center;
            padding: 1.2rem 0 0.5rem;
            font-size: 0.85rem;
            color: #888;
            border-top: 1px solid #ede6d8;
            margin-top: 1.5rem;
        }
        .copyright strong {
            color: #555;
        }
        .last-updated {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: #888;
            font-size: 0.9rem;
            margin: 0.8rem 0 1.2rem;
            padding: 0.4rem 1rem;
            background: #f9f5ed;
            border-radius: 30px;
            width: fit-content;
        }
        .stats-box {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            justify-content: space-around;
            background: #1e1e1e;
            color: #f4f1eb;
            padding: 1.8rem;
            border-radius: 20px;
            margin: 2rem 0;
        }
        .stats-box .stat {
            text-align: center;
            flex: 1 1 120px;
        }
        .stats-box .stat .num {
            font-size: 2.4rem;
            font-weight: 800;
            color: #f5b342;
        }
        .stats-box .stat .label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.8;
        }
        @media (max-width: 820px) {
            .container {
                padding: 1rem 1.2rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .feedback-section {
                grid-template-columns: 1fr;
            }
            .stats-box {
                flex-direction: column;
                align-items: center;
            }
        }
        @media (max-width: 680px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fff;
                padding: 0.8rem 0 1.2rem;
                border-top: 2px solid #e6dcc8;
                margin-top: 0.8rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav li a {
                padding: 0.6rem 1rem;
                border-radius: 12px;
            }
            .nav-wrapper {
                flex-wrap: wrap;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .char-grid {
                grid-template-columns: 1fr;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .container {
                padding: 0.8rem 0.8rem;
            }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
            align-items: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .text-muted {
            color: #888;
        }
        .text-gold {
            color: #b8860b;
        }
