        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f8f5f0;
            color: #2d2a24;
            line-height: 1.7;
            font-size: 16px;
            padding: 0 16px;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }
        header {
            background: linear-gradient(145deg, #2b1e0f 0%, #3d2b16 100%);
            padding: 16px 0;
            border-bottom: 4px solid #b8860b;
            margin: 0 -16px 24px -16px;
            position: relative;
        }
        header .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f7d875, #b8860b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #f7d875;
            margin-right: 6px;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        nav a {
            color: #f0e6d3;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        nav a:hover {
            background: #b8860b;
            color: #1f1408;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #b8860b;
            color: #f7d875;
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #b8860b33;
        }
        #nav-toggle {
            display: none;
        }
        #nav-toggle:checked~.nav-links {
            display: flex;
            flex-direction: column;
            width: 100%;
            margin-top: 12px;
            background: #2b1e0f;
            padding: 16px;
            border-radius: 12px;
            gap: 6px;
        }
        #nav-toggle:checked~.nav-links a {
            padding: 10px 16px;
            border-bottom: 1px solid #4a3722;
        }
        .breadcrumb {
            background: #ede6dc;
            padding: 10px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
            margin: 0 0 24px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            list-style: none;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
        }
        .breadcrumb li {
            display: inline;
            color: #5e4d36;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #b8860b;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7a5f3e;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .search-bar {
            background: #fff;
            padding: 20px 24px;
            border-radius: 20px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
            margin-bottom: 32px;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .search-bar input {
            flex: 1 1 240px;
            padding: 14px 20px;
            border: 2px solid #ddd6cb;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            background: #faf8f5;
        }
        .search-bar input:focus {
            border-color: #b8860b;
        }
        .search-bar button {
            background: #b8860b;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-bar button:hover {
            background: #9e7509;
            transform: translateY(-2px);
        }
        main {
            padding: 8px 0 40px 0;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #2b1e0f;
            line-height: 1.2;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }
        h1 i {
            color: #b8860b;
            margin-right: 10px;
        }
        .last-updated {
            display: inline-block;
            background: #ede6dc;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #5e4d36;
            margin-bottom: 24px;
        }
        .last-updated i {
            margin-right: 6px;
            color: #b8860b;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #2b1e0f;
            margin-top: 48px;
            margin-bottom: 16px;
            border-left: 6px solid #b8860b;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #3d2b16;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #4a3722;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 16px;
            font-size: 1.05rem;
        }
        .highlight {
            background: #f7eedb;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .char-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 24px;
            margin: 24px 0 32px 0;
        }
        .char-card {
            background: #fff;
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #eee7de;
        }
        .char-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
        }
        .char-card img {
            width: 100%;
            height: 180px;
            object-fit: contain;
            background: #f8f5f0;
            border-radius: 12px;
            margin-bottom: 12px;
            padding: 8px;
        }
        .char-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
        }
        .char-card .stats {
            font-size: 0.9rem;
            color: #6b5b48;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin: 8px 0;
        }
        .char-card .stats span {
            background: #f0ebe4;
            padding: 2px 12px;
            border-radius: 20px;
        }
        .char-card .btn-small {
            display: inline-block;
            background: #b8860b;
            color: #fff;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            transition: background 0.2s;
        }
        .char-card .btn-small:hover {
            background: #9e7509;
            text-decoration: none;
        }
        .featured-img-wrap {
            margin: 32px 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            background: #2b1e0f;
        }
        .featured-img-wrap img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-img-wrap .img-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: #f0e6d3;
            padding: 30px 20px 16px 20px;
            font-size: 0.95rem;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0 32px 0;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .stats-table th {
            background: #2b1e0f;
            color: #f7d875;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        .stats-table td {
            padding: 12px 18px;
            border-bottom: 1px solid #f0ebe4;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        .stats-table tr:hover td {
            background: #faf6f0;
        }
        .score-area,
        .comment-area {
            background: #fff;
            padding: 28px 30px;
            border-radius: 20px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
            margin: 24px 0 32px 0;
            border: 1px solid #eee7de;
        }
        .score-area h3,
        .comment-area h3 {
            margin-top: 0;
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #ddd6cb;
            cursor: pointer;
            margin: 12px 0 16px 0;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.2s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f7d875;
            transform: scale(1.1);
        }
        .score-area form,
        .comment-area form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .score-area input,
        .comment-area input,
        .comment-area textarea {
            padding: 12px 18px;
            border: 2px solid #ddd6cb;
            border-radius: 12px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            background: #faf8f5;
            font-family: inherit;
        }
        .score-area input:focus,
        .comment-area input:focus,
        .comment-area textarea:focus {
            border-color: #b8860b;
        }
        .comment-area textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn-submit {
            background: #b8860b;
            color: #fff;
            border: none;
            padding: 14px 28px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
            align-self: flex-start;
        }
        .btn-submit:hover {
            background: #9e7509;
            transform: translateY(-2px);
        }
        .interview-block {
            background: #ede6dc;
            padding: 28px 30px;
            border-radius: 20px;
            margin: 32px 0;
            border-left: 6px solid #b8860b;
            font-style: italic;
        }
        .interview-block .author {
            font-style: normal;
            font-weight: 700;
            margin-top: 12px;
            color: #2b1e0f;
        }
        friend-link {
            display: block;
            background: #2b1e0f;
            color: #f0e6d3;
            padding: 28px 24px;
            border-radius: 20px;
            margin: 32px 0 16px 0;
        }
        friend-link h3 {
            color: #f7d875;
            margin-top: 0;
            font-size: 1.3rem;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            margin-top: 12px;
        }
        friend-link a {
            color: #f0e6d3;
            background: #4a3722;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: background 0.2s, color 0.2s;
            display: inline-block;
        }
        friend-link a:hover {
            background: #b8860b;
            color: #1f1408;
            text-decoration: none;
        }
        footer {
            background: #1f1408;
            color: #b8a894;
            padding: 28px 0;
            margin: 0 -16px 0 -16px;
            text-align: center;
            font-size: 0.9rem;
            border-top: 4px solid #b8860b;
        }
        footer .container {
            padding: 0 16px;
        }
        footer a {
            color: #f7d875;
        }
        footer a:hover {
            color: #fff;
        }
        footer .copyright {
            margin-top: 12px;
            font-size: 0.85rem;
            color: #8a7a66;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: inline-block;
            }
            .nav-links {
                display: none;
                width: 100%;
            }
            .nav-links a {
                width: 100%;
                text-align: left;
            }
            header .container {
                align-items: center;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .char-grid {
                grid-template-columns: 1fr;
            }
            .search-bar {
                flex-direction: column;
            }
            .search-bar button {
                width: 100%;
                justify-content: center;
            }
            .stats-table {
                font-size: 0.85rem;
            }
            .stats-table th,
            .stats-table td {
                padding: 8px 10px;
            }
            .score-area,
            .comment-area {
                padding: 18px 16px;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 8px 12px;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .featured-img-wrap .img-caption {
                font-size: 0.8rem;
                padding: 16px 12px 10px 12px;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 0 8px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .char-card {
                padding: 14px;
            }
            .char-card img {
                height: 140px;
            }
        }
        @media (min-width: 769px) {
            .nav-links {
                display: flex !important;
                flex-direction: row;
                gap: 4px;
            }
            #nav-toggle {
                display: none;
            }
            .hamburger {
                display: none !important;
            }
        }
        .text-center {
            text-align: center;
        }
        .mt-16 {
            margin-top: 16px;
        }
        .mb-16 {
            margin-bottom: 16px;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .gap-8 {
            gap: 8px;
        }
        .badge {
            display: inline-block;
            background: #b8860b;
            color: #fff;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(12px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
