        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0b0e14;
            color: #e2e6ed;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
        }
        ul,
        ol {
            padding-left: 24px;
            margin: 12px 0;
        }
        li {
            margin-bottom: 6px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.3;
            color: #f5e7c8;
            margin-top: 28px;
            margin-bottom: 12px;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #f0c040;
            padding-bottom: 16px;
            margin-top: 12px;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 6px solid #f0c040;
            padding-left: 18px;
            margin-top: 40px;
        }
        h3 {
            font-size: 1.4rem;
            color: #ecd69b;
            margin-top: 32px;
        }
        h4 {
            font-size: 1.15rem;
            color: #d4bc8a;
            margin-top: 24px;
        }
        p {
            margin: 16px 0;
            text-align: justify;
        }
        strong {
            color: #f5d78e;
            font-weight: 700;
        }
        em {
            color: #c9b07a;
            font-style: italic;
        }
        hr {
            border: none;
            border-top: 2px solid #2a303a;
            margin: 40px 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #121821;
            border-radius: 20px;
            padding: 20px 28px 40px;
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
        }
        @media (max-width: 640px) {
            .container {
                padding: 12px 14px 30px;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            body {
                padding: 0 8px;
            }
        }
        .header-top {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0 16px;
            border-bottom: 1px solid #2a303a;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f0c040, #d49a20);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 12px rgba(240, 192, 64, 0.25);
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
            -webkit-text-fill-color: transparent;
        }
        .my-logo a::before {
            content: "⚔️ ";
            -webkit-text-fill-color: initial;
            color: #f0c040;
        }
        .my-logo a::after {
            content: " 🛡️";
            -webkit-text-fill-color: initial;
            color: #f0c040;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px 18px;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 30px;
            background: transparent;
            transition: background 0.2s ease, color 0.2s ease;
            font-weight: 500;
        }
        .nav-list li a:hover {
            background: #2a303a;
            color: #f0c040;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #f0c040;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1e2530;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: inline-block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a212b;
                padding: 12px 16px;
                border-radius: 16px;
                margin-top: 12px;
                gap: 4px;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                display: block;
                padding: 10px 12px;
                border-bottom: 1px solid #2a303a;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .nav-wrap {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 12px 0 6px;
            margin: 0;
            font-size: 0.85rem;
            color: #9aa3b0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 10px;
            color: #f0c040;
        }
        .breadcrumb a {
            color: #b8c2d0;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb .active {
            color: #f0c040;
            font-weight: 600;
        }
        .search-section {
            background: #1a212b;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 24px 0 32px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            border: 1px solid #2a303a;
        }
        .search-section label {
            font-weight: 600;
            font-size: 1.1rem;
            color: #f0c040;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form {
            display: flex;
            flex: 1;
            flex-wrap: wrap;
            gap: 8px;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border-radius: 40px;
            border: none;
            background: #0b0e14;
            color: #e2e6ed;
            font-size: 1rem;
            outline: 2px solid transparent;
            transition: outline 0.2s ease;
        }
        .search-form input[type="text"]:focus {
            outline: 2px solid #f0c040;
        }
        .search-form button {
            padding: 12px 28px;
            border-radius: 40px;
            border: none;
            background: #f0c040;
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.1s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 40px 0;
        }
        @media (max-width: 700px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-box,
        .score-box {
            background: #1a212b;
            border-radius: 16px;
            padding: 22px 24px 28px;
            border: 1px solid #2a303a;
        }
        .comment-box h3,
        .score-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3rem;
            color: #f0c040;
        }
        .comment-form textarea {
            width: 100%;
            padding: 12px 16px;
            border-radius: 12px;
            border: none;
            background: #0b0e14;
            color: #e2e6ed;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 90px;
            outline: 2px solid transparent;
            transition: outline 0.2s ease;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            outline: 2px solid #f0c040;
        }
        .comment-form input[type="text"] {
            width: 100%;
            padding: 10px 16px;
            border-radius: 40px;
            border: none;
            background: #0b0e14;
            color: #e2e6ed;
            margin: 8px 0 12px;
            outline: 2px solid transparent;
            transition: outline 0.2s ease;
        }
        .comment-form input[type="text"]:focus {
            outline: 2px solid #f0c040;
        }
        .comment-form button,
        .score-form button {
            padding: 10px 28px;
            border-radius: 40px;
            border: none;
            background: #f0c040;
            color: #0b0e14;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s ease;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: #ffd966;
        }
        .score-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .score-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #f0c040;
            cursor: pointer;
        }
        .score-stars i {
            transition: transform 0.15s ease, color 0.2s ease;
        }
        .score-stars i:hover {
            transform: scale(1.25);
            color: #ffd966;
        }
        .score-form input[type="hidden"] {
            display: none;
        }
        friend-link {
            display: block;
            background: #1a212b;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 32px 0 16px;
            border: 1px solid #2a303a;
        }
        friend-link::before {
            content: "🌐 Friend Links";
            display: block;
            font-size: 1.2rem;
            font-weight: 700;
            color: #f0c040;
            margin-bottom: 12px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            padding: 6px 14px;
            background: #0b0e14;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: background 0.2s ease, color 0.2s ease;
        }
        friend-link a:hover {
            background: #f0c040;
            color: #0b0e14;
            text-decoration: none;
        }
        .footer {
            border-top: 2px solid #2a303a;
            padding: 28px 0 16px;
            margin-top: 32px;
            text-align: center;
            font-size: 0.9rem;
            color: #9aa3b0;
        }
        .footer .copyright {
            font-weight: 500;
            color: #c9d0da;
        }
        .footer .copyright i {
            color: #f0c040;
        }
        .featured-image {
            margin: 28px 0 20px;
            border-radius: 16px;
            overflow: hidden;
            background: #1a212b;
            padding: 8px;
            border: 1px solid #2a303a;
        }
        .featured-image figcaption {
            text-align: center;
            padding: 10px 8px 4px;
            font-style: italic;
            color: #b8c2d0;
            font-size: 0.9rem;
        }
        .tag {
            display: inline-block;
            background: #2a303a;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #f0c040;
            margin: 2px 4px 2px 0;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #9aa3b0;
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 6px 0 18px;
            padding: 8px 14px;
            background: #1a212b;
            border-radius: 40px;
            width: fit-content;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: #1a212b;
            border-radius: 14px;
            padding: 18px 16px;
            text-align: center;
            border: 1px solid #2a303a;
            transition: transform 0.2s ease, border-color 0.2s ease;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            border-color: #f0c040;
        }
        .stat-card i {
            font-size: 2rem;
            color: #f0c040;
            margin-bottom: 8px;
        }
        .stat-card .num {
            font-size: 1.6rem;
            font-weight: 800;
            color: #f5e7c8;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #b8c2d0;
        }
        blockquote {
            border-left: 5px solid #f0c040;
            background: #1a212b;
            padding: 16px 24px;
            margin: 24px 0;
            border-radius: 0 16px 16px 0;
            font-style: italic;
            color: #d4d9e0;
        }
        blockquote cite {
            display: block;
            margin-top: 10px;
            font-weight: 600;
            color: #f0c040;
            font-style: normal;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a212b;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #2a303a;
        }
        th {
            background: #0b0e14;
            color: #f0c040;
            font-weight: 700;
        }
        tr:hover td {
            background: #232b36;
        }
        ::selection {
            background: #f0c040;
            color: #0b0e14;
        }
