        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #f8f5f0;
            color: #2d2a24;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #1e6b4e;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #b8860b;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #1a3c2e;
            margin: 2rem 0 1rem 0;
            line-height: 1.2;
            letter-spacing: -0.02em;
            border-bottom: 4px solid #e6d5b8;
            padding-bottom: 0.6rem;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1e4a36;
            margin: 2.4rem 0 1rem 0;
            line-height: 1.3;
            padding-left: 0.5rem;
            border-left: 5px solid #b8860b;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2d5a44;
            margin: 1.8rem 0 0.8rem 0;
            line-height: 1.4;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #3d6b54;
            margin: 1.2rem 0 0.5rem 0;
            line-height: 1.5;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 400;
            color: #3d3a33;
            background: #ede7dd;
            padding: 1.2rem 1.8rem;
            border-radius: 12px;
            border-left: 6px solid #b8860b;
        }
        strong {
            color: #1a3c2e;
            font-weight: 700;
        }
        em {
            font-style: italic;
            color: #6b5a3e;
        }
        .site-header {
            background: linear-gradient(145deg, #1a3c2e 0%, #2d5a44 100%);
            color: #fff;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #f5e6c8;
            letter-spacing: -0.03em;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            transition: transform 0.2s ease;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo:hover {
            transform: scale(1.02);
            color: #ffd78a;
            text-decoration: none;
        }
        .my-logo i {
            font-size: 1.6rem;
            color: #e6c9a0;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
        }
        .main-nav a {
            color: #e8ddd0;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover {
            background: rgba(255, 215, 138, 0.2);
            color: #ffd78a;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #b8860b;
            color: #1a3c2e;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #f5e6c8;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background: #ede7dd;
            padding: 0.6rem 1.2rem;
            border-radius: 40px;
            display: inline-flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
            font-size: 0.9rem;
            margin: 1rem 0 0.5rem 0;
        }
        .breadcrumb a {
            color: #1e6b4e;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb span {
            color: #6b5a3e;
        }
        .breadcrumb .separator {
            color: #b8860b;
            font-weight: 300;
        }
        .hero-image {
            border-radius: 20px;
            overflow: hidden;
            margin: 1.5rem 0 2rem 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            background: #d4c9b8;
            position: relative;
        }
        .hero-image img {
            width: 100%;
            min-height: 280px;
            object-fit: cover;
        }
        .hero-image .img-credit {
            position: absolute;
            bottom: 0;
            right: 0;
            background: rgba(26, 60, 46, 0.8);
            color: #e8ddd0;
            font-size: 0.75rem;
            padding: 0.3rem 1rem;
            border-top-left-radius: 12px;
        }
        .characters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .character-card {
            background: #fffcf7;
            border-radius: 16px;
            padding: 1.2rem 1.2rem 1.6rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            transition: transform 0.2s, box-shadow 0.3s;
            border: 1px solid #e8ddd0;
        }
        .character-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
            border-color: #b8860b;
        }
        .character-card .card-icon {
            font-size: 2.8rem;
            margin-bottom: 0.4rem;
            color: #b8860b;
        }
        .character-card h3 {
            margin-top: 0.2rem;
            font-size: 1.3rem;
        }
        .character-card .badge {
            display: inline-block;
            background: #1e6b4e;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            letter-spacing: 0.03em;
            margin-top: 0.4rem;
        }
        .search-section {
            background: linear-gradient(135deg, #e6d5b8 0%, #f5e6c8 100%);
            border-radius: 20px;
            padding: 2rem 2rem 2.5rem;
            margin: 2.5rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }
        .search-section h2 {
            border-left-color: #1a3c2e;
            margin-top: 0;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 1rem;
        }
        .search-form input[type="text"] {
            flex: 1 1 260px;
            padding: 0.9rem 1.4rem;
            border: 2px solid #d4c9b8;
            border-radius: 50px;
            font-size: 1rem;
            background: #fffcf7;
            transition: border-color 0.3s, box-shadow 0.3s;
            outline: none;
        }
        .search-form input[type="text"]:focus {
            border-color: #b8860b;
            box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.15);
        }
        .search-form button {
            padding: 0.9rem 2.2rem;
            background: #1a3c2e;
            color: #f5e6c8;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .search-form button:hover {
            background: #b8860b;
            color: #1a3c2e;
            transform: scale(1.02);
        }
        .feedback-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .feedback-card {
            background: #fffcf7;
            border-radius: 20px;
            padding: 1.8rem 2rem 2.2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #e8ddd0;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .feedback-card textarea,
        .feedback-card input[type="text"],
        .feedback-card input[type="number"] {
            padding: 0.8rem 1.2rem;
            border: 2px solid #d4c9b8;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #f8f5f0;
            transition: border-color 0.3s;
            outline: none;
            font-family: inherit;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #b8860b;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #d4c9b8;
            cursor: pointer;
        }
        .feedback-card .rating-stars i {
            transition: color 0.2s, transform 0.2s;
        }
        .feedback-card .rating-stars i:hover,
        .feedback-card .rating-stars i.active {
            color: #b8860b;
            transform: scale(1.1);
        }
        .feedback-card button {
            padding: 0.8rem 2rem;
            background: #1e6b4e;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #b8860b;
            color: #1a3c2e;
            transform: scale(1.02);
        }
        .related-links {
            background: #ede7dd;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            margin: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.6rem;
        }
        .related-links a {
            font-weight: 500;
            color: #1e6b4e;
            padding: 0.2rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s;
        }
        .related-links a:hover {
            border-bottom-color: #b8860b;
            text-decoration: none;
        }
        .char-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8rem 0;
            background: #fffcf7;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        .char-table th {
            background: #1a3c2e;
            color: #f5e6c8;
            font-weight: 600;
            padding: 0.9rem 1rem;
            text-align: left;
            font-size: 0.95rem;
        }
        .char-table td {
            padding: 0.8rem 1rem;
            border-bottom: 1px solid #ede7dd;
            font-size: 0.95rem;
        }
        .char-table tr:last-child td {
            border-bottom: none;
        }
        .char-table tr:hover td {
            background: #f8f2e8;
        }
        .site-footer {
            background: #1a3c2e;
            color: #d4c9b8;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 6px solid #b8860b;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .site-footer h4 {
            color: #f5e6c8;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #c4b49a;
        }
        .site-footer a:hover {
            color: #ffd78a;
        }
        .footer-bottom {
            grid-column: 1 / -1;
            border-top: 1px solid #2d5a44;
            padding-top: 1.5rem;
            margin-top: 1rem;
            text-align: center;
            font-size: 0.9rem;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.8rem;
            margin-top: 0.4rem;
        }
        friend-link a {
            font-size: 0.95rem;
        }
        .copyright {
            font-size: 0.85rem;
            color: #a89880;
            margin-top: 0.8rem;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .feedback-row {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a3c2e;
                border-radius: 16px;
                padding: 0.8rem 0.4rem;
                margin-top: 0.6rem;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1.2rem;
                border-radius: 12px;
                width: 100%;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 0.9rem;
            }
            .search-section {
                padding: 1.4rem 1.2rem;
            }
            .feedback-card {
                padding: 1.4rem 1.2rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .char-table {
                font-size: 0.85rem;
            }
            .char-table th,
            .char-table td {
                padding: 0.6rem 0.7rem;
            }
            .hero-image img {
                min-height: 180px;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 0.4rem 0.9rem;
            }
            .related-links {
                flex-direction: column;
                gap: 0.4rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .search-form input[type="text"] {
                flex: 1 1 100%;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .characters-grid {
                grid-template-columns: 1fr;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .tag {
            display: inline-block;
            background: #e6d5b8;
            color: #1a3c2e;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.2rem 0.9rem;
            border-radius: 30px;
            letter-spacing: 0.02em;
        }
        .divider {
            width: 60px;
            height: 4px;
            background: #b8860b;
            border-radius: 4px;
            margin: 1.2rem 0 1.8rem 0;
        }
        .last-updated {
            display: inline-block;
            background: #1e6b4e;
            color: #f5e6c8;
            padding: 0.3rem 1.4rem;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.02em;
            margin-bottom: 1rem;
        }
        .last-updated i {
            margin-right: 0.4rem;
        }
