* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8f7f4;
            color: #2e2b28;
            line-height: 1.7;
            font-size: 16px;
            padding: 0 16px;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #8b6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            padding: 0 24px 40px;
            border-radius: 0 0 24px 24px;
            box-shadow: 0 2px 40px rgba(0, 0, 0, 0.04);
        }
        header {
            padding: 16px 0 8px;
            border-bottom: 2px solid #e8e3dc;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #b8860b, #d4a017, #8b6508);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            text-decoration: none !important;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none !important;
        }
        .my-logo small {
            font-size: 14px;
            font-weight: 400;
            -webkit-text-fill-color: #6b5b4e;
            display: block;
            letter-spacing: 0.3px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        nav#main-nav {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        nav#main-nav a {
            font-weight: 600;
            color: #3d352e;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.2s ease;
        }
        nav#main-nav a:hover {
            border-bottom-color: #b8860b;
            color: #b8860b;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            color: #3d352e;
            cursor: pointer;
            padding: 4px 8px;
            transition: color 0.2s;
        }
        .hamburger:hover {
            color: #b8860b;
        }
        .breadcrumb {
            padding: 16px 0 8px;
            font-size: 13px;
            color: #7a6e62;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #c4b5a5;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7a6e62;
        }
        .breadcrumb a:hover {
            color: #b8860b;
        }
        .breadcrumb .current {
            color: #2e2b28;
            font-weight: 600;
        }
        .hero {
            padding: 32px 0 24px;
            text-align: center;
        }
        .hero h1 {
            font-size: clamp(32px, 6vw, 52px);
            font-weight: 900;
            line-height: 1.15;
            color: #1f1b17;
            margin-bottom: 16px;
        }
        .hero h1 span {
            background: linear-gradient(135deg, #b8860b, #e6b422);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 18px;
            max-width: 760px;
            margin: 0 auto 20px;
            color: #5d5247;
        }
        .last-updated {
            display: inline-block;
            background: #f0ebe4;
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 13px;
            color: #6b5b4e;
            font-weight: 500;
        }
        .last-updated i {
            margin-right: 6px;
        }
        section {
            padding: 32px 0 16px;
        }
        h2 {
            font-size: clamp(26px, 4vw, 36px);
            font-weight: 800;
            color: #1f1b17;
            margin: 40px 0 16px;
            padding-bottom: 10px;
            border-bottom: 4px solid #e8e3dc;
            position: relative;
        }
        h2::after {
            content: "";
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 80px;
            height: 4px;
            background: #b8860b;
            border-radius: 4px;
        }
        h3 {
            font-size: clamp(20px, 3vw, 26px);
            font-weight: 700;
            color: #2e2b28;
            margin: 32px 0 12px;
        }
        h4 {
            font-size: 18px;
            font-weight: 700;
            color: #3d352e;
            margin: 24px 0 10px;
        }
        p {
            margin-bottom: 18px;
            color: #3d352e;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 28px;
            margin: 24px 0 32px;
        }
        .character-card {
            background: #faf8f5;
            border-radius: 16px;
            padding: 24px 20px 20px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid #ede8e2;
            transition: transform 0.25s ease, box-shadow 0.3s ease;
        }
        .character-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
            border-color: #d4c5b5;
        }
        .character-card .icon {
            font-size: 40px;
            color: #b8860b;
            margin-bottom: 8px;
        }
        .character-card h4 {
            margin-top: 0;
            margin-bottom: 6px;
        }
        .character-card .sub {
            font-size: 13px;
            color: #8a7b6e;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
            display: block;
        }
        .character-card p {
            font-size: 14px;
            color: #5d5247;
            margin-bottom: 12px;
        }
        .stat-bar {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            font-size: 13px;
            font-weight: 600;
            color: #5d5247;
            margin-top: 8px;
        }
        .stat-bar span {
            background: #ede8e2;
            padding: 2px 12px;
            border-radius: 20px;
        }
        .img-wrapper {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
        }
        .img-wrapper img {
            width: 100%;
            border-radius: 16px;
        }
        .img-wrapper figcaption {
            font-size: 13px;
            color: #7a6e62;
            padding: 10px 4px 4px;
            text-align: center;
            font-style: italic;
        }
        .btn {
            display: inline-block;
            background: #b8860b;
            color: #fff !important;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 14px;
            border: none;
            cursor: pointer;
            transition: background 0.25s ease, transform 0.15s ease;
            text-decoration: none !important;
        }
        .btn:hover {
            background: #9a7209;
            transform: scale(1.02);
            text-decoration: none !important;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #b8860b;
            color: #b8860b !important;
        }
        .btn-outline:hover {
            background: #b8860b;
            color: #fff !important;
        }
        .form-card {
            background: #faf8f5;
            border: 1px solid #ede8e2;
            border-radius: 16px;
            padding: 28px 24px;
            margin: 24px 0 32px;
            max-width: 640px;
        }
        .form-card label {
            font-weight: 600;
            display: block;
            margin: 14px 0 4px;
            color: #2e2b28;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 10px 14px;
            border: 1px solid #d4c5b5;
            border-radius: 10px;
            font-size: 15px;
            background: #fff;
            transition: border 0.2s ease;
            font-family: inherit;
        }
        .form-card input:focus,
        .form-card textarea:focus,
        .form-card select:focus {
            outline: none;
            border-color: #b8860b;
            box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
        }
        .form-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .form-card .btn {
            margin-top: 16px;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 28px;
            cursor: pointer;
            color: #d4c5b5;
            transition: color 0.15s ease;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #e6b422;
        }
        footer {
            border-top: 2px solid #e8e3dc;
            padding: 32px 0 20px;
            margin-top: 40px;
        }
        footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 24px;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            font-size: 14px;
            padding: 12px 0;
        }
        friend-link a {
            color: #6b5b4e;
            font-weight: 500;
            padding: 2px 0;
        }
        friend-link a:hover {
            color: #b8860b;
        }
        .copyright {
            font-size: 13px;
            color: #8a7b6e;
            padding: 16px 0 4px;
            text-align: center;
            border-top: 1px solid #ede8e2;
            margin-top: 16px;
            width: 100%;
        }
        .copyright strong {
            color: #5d5247;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 0 14px 32px;
            }
            nav#main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fff;
                padding: 16px 0 8px;
                gap: 8px;
                border-top: 1px solid #ede8e2;
                margin-top: 12px;
            }
            nav#main-nav.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            header {
                flex-wrap: wrap;
            }
            .nav-wrapper {
                width: auto;
            }
            .character-grid {
                grid-template-columns: 1fr;
            }
            .form-card {
                padding: 20px 16px;
            }
            .hero h1 {
                font-size: 28px;
            }
            footer .footer-inner {
                flex-direction: column;
            }
        }
        @media (min-width: 769px) {
            nav#main-nav {
                display: flex !important;
            }
            .hamburger {
                display: none !important;
            }
        }
        .highlight {
            background: #fdf6e9;
            border-left: 4px solid #b8860b;
            padding: 16px 20px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .highlight strong {
            color: #1f1b17;
        }
        .inline-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
        }
        .inline-list li::before {
            content: "⚔️ ";
            font-size: 12px;
        }
        .tag {
            display: inline-block;
            background: #ede8e2;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 600;
            color: #5d5247;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0 28px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
            min-width: 540px;
        }
        th {
            background: #1f1b17;
            color: #fff;
            padding: 12px 16px;
            text-align: left;
            font-weight: 700;
        }
        td {
            padding: 10px 16px;
            border-bottom: 1px solid #ede8e2;
        }
        tr:nth-child(even) td {
            background: #faf8f5;
        }
        .emoji-lg {
            font-size: 28px;
            margin-right: 6px;
        }
