        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #0d0d0d;
            color: #e8e4dc;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #f0c27f;
            text-decoration: none;
            transition: color 0.25s, border-color 0.25s;
        }
        a:hover,
        a:focus-visible {
            color: #ffddaa;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #4a3f35;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #6a5a48;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: #141210;
            border-bottom: 2px solid #2a2420;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem 1.5rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0c27f, #d4a373);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(240, 194, 127, 0.25);
            transition: transform 0.3s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.8rem;
            font-weight: 400;
            -webkit-text-fill-color: #a09080;
            background: none;
            color: #a09080;
            display: block;
            letter-spacing: 0.5px;
        }
        .my-logo:hover small {
            color: #c0b0a0;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f0c27f;
            color: #f0c27f;
            font-size: 1.5rem;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s, color 0.3s;
        }
        .nav-toggle:hover {
            background: #f0c27f20;
        }
        .nav-toggle .fa-times {
            display: none;
        }
        .nav-toggle.active .fa-bars {
            display: none;
        }
        .nav-toggle.active .fa-times {
            display: inline;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.25rem 1.2rem;
        }
        .main-nav a {
            color: #c8c0b8;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: color 0.25s, border-color 0.25s;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            color: #f0c27f;
            border-bottom-color: #f0c27f;
            text-decoration: none;
        }
        .main-nav a.active {
            color: #f0c27f;
            border-bottom-color: #f0c27f;
        }
        .breadcrumb {
            background: #1a1815;
            padding: 0.65rem 0;
            border-bottom: 1px solid #2a2420;
            font-size: 0.85rem;
            color: #908880;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #c0b0a0;
        }
        .breadcrumb a:hover {
            color: #f0c27f;
        }
        .breadcrumb .sep {
            color: #5a5048;
            margin: 0 0.2rem;
        }
        .breadcrumb .current {
            color: #e8e4dc;
            font-weight: 500;
        }
        main {
            padding: 2rem 0 3rem;
        }
        .hero {
            background: linear-gradient(145deg, #1a1815 0%, #0d0d0d 100%);
            border-radius: 18px;
            padding: 2.5rem 2rem;
            margin-bottom: 2.5rem;
            border: 1px solid #2a2420;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: "⚔️";
            position: absolute;
            top: -30px;
            right: -20px;
            font-size: 12rem;
            opacity: 0.04;
            transform: rotate(15deg);
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #f0c27f;
            line-height: 1.2;
            margin-bottom: 0.75rem;
            letter-spacing: -0.5px;
        }
        .hero .subtitle {
            font-size: 1.15rem;
            color: #b8b0a8;
            max-width: 720px;
            margin-bottom: 1.25rem;
        }
        .hero .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            color: #908880;
            font-size: 0.9rem;
        }
        .hero .meta-info i {
            color: #f0c27f;
            margin-right: 0.4rem;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        section {
            margin-bottom: 3rem;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f0c27f;
            border-left: 5px solid #d4a373;
            padding-left: 1rem;
            margin: 2.5rem 0 1.25rem;
            line-height: 1.3;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e0d4c8;
            margin: 1.75rem 0 0.9rem;
            line-height: 1.35;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #d4c4b4;
            margin: 1.25rem 0 0.6rem;
            line-height: 1.4;
        }
        p {
            margin-bottom: 1rem;
            color: #d8d0c8;
        }
        .content-card {
            background: #151310;
            border-radius: 14px;
            padding: 1.8rem 2rem;
            border: 1px solid #2a2420;
            margin-bottom: 1.8rem;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .content-card:hover {
            border-color: #4a3f35;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
        }
        .content-card p:last-child {
            margin-bottom: 0;
        }
        .highlight {
            background: #1e1a16;
            padding: 1.2rem 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #f0c27f;
            margin: 1.2rem 0;
        }
        .highlight strong {
            color: #f0c27f;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 0.3rem;
        }
        .btn {
            display: inline-block;
            background: #f0c27f;
            color: #0d0d0d;
            font-weight: 600;
            padding: 0.6rem 1.5rem;
            border-radius: 8px;
            transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }
        .btn:hover {
            background: #ffddaa;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(240, 194, 127, 0.3);
            text-decoration: none;
            color: #0d0d0d;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f0c27f;
            color: #f0c27f;
        }
        .btn-outline:hover {
            background: #f0c27f20;
        }
        .featured-image {
            border-radius: 14px;
            overflow: hidden;
            margin: 1.8rem 0;
            border: 1px solid #2a2420;
            background: #1a1815;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #a09890;
            font-style: italic;
            background: #141210;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 0.8rem 1.2rem;
            margin: 1.2rem 0;
            padding: 0;
            list-style: none;
        }
        .link-grid li a {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            background: #1a1815;
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid #2a2420;
            transition: background 0.3s, border-color 0.3s, transform 0.2s;
            font-weight: 500;
        }
        .link-grid li a:hover {
            background: #24201c;
            border-color: #f0c27f;
            transform: translateX(4px);
            text-decoration: none;
        }
        .link-grid li a i {
            color: #f0c27f;
            font-size: 1.1rem;
            width: 1.4rem;
            text-align: center;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            font-size: 0.95rem;
            background: #151310;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #2a2420;
        }
        .data-table th {
            background: #1e1a16;
            color: #f0c27f;
            font-weight: 600;
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 2px solid #2a2420;
        }
        .data-table td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #1e1a16;
            color: #d0c8c0;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #1c1916;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            color: #d0c8c0;
            font-weight: 500;
            margin-bottom: 0.35rem;
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            background: #1a1815;
            border: 1px solid #2a2420;
            border-radius: 8px;
            color: #e8e4dc;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f0c27f;
            box-shadow: 0 0 0 3px rgba(240, 194, 127, 0.15);
        }
        .form-group textarea {
            min-height: 110px;
            resize: vertical;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        @media (max-width: 600px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.25rem;
            margin: 0.5rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #3a3530;
            font-size: 1.8rem;
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0c27f;
            transform: scale(1.05);
        }
        .star-rating label i {
            pointer-events: none;
        }
        .comment-item {
            background: #151310;
            border-radius: 10px;
            padding: 1.2rem 1.5rem;
            border: 1px solid #2a2420;
            margin-bottom: 1rem;
        }
        .comment-item .comment-author {
            font-weight: 600;
            color: #f0c27f;
        }
        .comment-item .comment-time {
            font-size: 0.8rem;
            color: #706860;
            margin-left: 1rem;
        }
        .comment-item .comment-text {
            margin-top: 0.4rem;
            color: #d0c8c0;
        }
        .site-footer {
            background: #141210;
            border-top: 2px solid #2a2420;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem 2rem;
            margin-bottom: 2rem;
        }
        .footer-grid h4 {
            color: #f0c27f;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            border-bottom: 1px solid #2a2420;
            padding-bottom: 0.4rem;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid ul li {
            margin-bottom: 0.4rem;
        }
        .footer-grid ul li a {
            color: #b8b0a8;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .footer-grid ul li a:hover {
            color: #f0c27f;
        }
        friend-link {
            display: block;
            background: #1a1815;
            padding: 1.2rem 1.5rem;
            border-radius: 10px;
            border: 1px solid #2a2420;
            margin: 1.5rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.8rem 0.3rem 0;
            padding: 0.3rem 0.8rem;
            background: #24201c;
            border-radius: 6px;
            font-size: 0.9rem;
            border: 1px solid #2a2420;
            transition: background 0.3s, border-color 0.3s;
        }
        friend-link a:hover {
            background: #2a2420;
            border-color: #f0c27f;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            color: #706860;
            font-size: 0.85rem;
            padding-top: 1.5rem;
            border-top: 1px solid #1e1a16;
        }
        .copyright a {
            color: #a09080;
        }
        .copyright a:hover {
            color: #f0c27f;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 0.25rem;
                padding: 0.75rem 0 0.25rem;
                border-top: 1px solid #2a2420;
                margin-top: 0.5rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 0.4rem;
                border-bottom: 1px solid #1e1a16;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero {
                padding: 1.8rem 1.2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .content-card {
                padding: 1.2rem 1.2rem;
            }
            .link-grid {
                grid-template-columns: 1fr;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 0.9rem;
            }
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        .text-center {
            text-align: center;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.75rem 1.5rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .schema-hidden {
            display: none;
        }
