        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0f0f0f;
            color: #d4d4d4;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #c9a96e;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #e8d5a3;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        ul {
            list-style: none;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #f0e6d0;
            letter-spacing: -0.5px;
            line-height: 1.2;
            margin-bottom: 1rem;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
        }
        h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #e6d5b8;
            border-left: 5px solid #c9a96e;
            padding-left: 1rem;
            margin: 2.5rem 0 1.2rem;
        }
        h3 {
            font-size: 1.6rem;
            font-weight: 600;
            color: #dcc9a5;
            margin: 2rem 0 0.8rem;
        }
        h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #cdb88e;
            margin: 1.5rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        strong,
        b {
            color: #f0e6d0;
            font-weight: 700;
        }
        .highlight {
            color: #f5d742;
            font-weight: 600;
        }
        .small-meta {
            font-size: 0.9rem;
            color: #888;
        }
        .last-updated {
            display: inline-block;
            background: #2a2a2a;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.9rem;
            color: #bbb;
            margin-bottom: 1.5rem;
        }
        header {
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2420 100%);
            border-bottom: 2px solid #3d352a;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #e6d5b8;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(90deg, #c9a96e, #e6d5b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: opacity 0.3s;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #888;
            color: #888;
            letter-spacing: 0.5px;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #c9a96e;
            color: #c9a96e;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .hamburger:hover {
            background: #2a2420;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-wrap ul {
            display: flex;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        .nav-wrap ul li a {
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.95rem;
            font-weight: 500;
            color: #ccc;
            transition: background 0.3s, color 0.3s;
        }
        .nav-wrap ul li a:hover {
            background: #3d352a;
            color: #f0e6d0;
            text-decoration: none;
        }
        .breadcrumb {
            background: #1a1a1a;
            padding: 0.7rem 0;
            border-bottom: 1px solid #2a2a2a;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            list-style: none;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 0.4rem;
            color: #666;
        }
        .breadcrumb ol li a {
            color: #c9a96e;
        }
        .breadcrumb ol li span {
            color: #999;
        }
        .hero {
            background: linear-gradient(135deg, #1f1c18 0%, #0f0f0f 100%);
            padding: 3rem 0 2.5rem;
            border-bottom: 1px solid #2a2a2a;
            position: relative;
        }
        .hero::after {
            content: "⚔️";
            position: absolute;
            right: 5%;
            bottom: 10%;
            font-size: 6rem;
            opacity: 0.08;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 3.2rem;
        }
        .hero .subhead {
            font-size: 1.3rem;
            color: #b8a88a;
            max-width: 720px;
        }
        .search-block {
            background: #1a1a1a;
            padding: 1.8rem 0;
            border-bottom: 1px solid #2a2a2a;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            max-width: 600px;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #3d352a;
            border-radius: 8px;
            background: #0f0f0f;
            color: #e6d5b8;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #c9a96e;
        }
        .search-form button {
            padding: 0.8rem 2rem;
            background: #c9a96e;
            border: none;
            border-radius: 8px;
            color: #0f0f0f;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .search-form button:hover {
            background: #e0c48a;
            transform: scale(1.02);
        }
        main {
            flex: 1;
            padding: 2.5rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .content-body {
            background: #151515;
            border-radius: 12px;
            padding: 2rem 2.5rem;
            border: 1px solid #2a2a2a;
        }
        .sidebar {
            background: #151515;
            border-radius: 12px;
            padding: 1.8rem 1.5rem;
            border: 1px solid #2a2a2a;
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px solid #3d352a;
            padding-bottom: 0.6rem;
        }
        .sidebar ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #1f1f1f;
        }
        .sidebar ul li a {
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar ul li a i {
            width: 20px;
            color: #c9a96e;
        }
        .feature-image {
            margin: 2rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            background: #1a1a1a;
        }
        .feature-image img {
            width: 100%;
            object-fit: cover;
            max-height: 480px;
        }
        .feature-image figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #aaa;
            background: #1a1a1a;
            border-top: 1px solid #2a2a2a;
        }
        .link-block {
            background: #1f1f1f;
            border-left: 4px solid #c9a96e;
            padding: 1.2rem 1.8rem;
            margin: 1.8rem 0;
            border-radius: 0 8px 8px 0;
        }
        .link-block a {
            display: inline-block;
            margin-right: 0.8rem;
        }
        .feedback-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #2a2a2a;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #3d352a;
            border-radius: 8px;
            background: #0f0f0f;
            color: #e6d5b8;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border 0.3s;
        }
        .comment-form textarea:focus {
            border-color: #c9a96e;
        }
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #3d352a;
            border-radius: 8px;
            background: #0f0f0f;
            color: #e6d5b8;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            margin-bottom: 0.8rem;
        }
        .comment-form input:focus {
            border-color: #c9a96e;
        }
        .comment-form .btn-submit {
            padding: 0.7rem 2rem;
            background: #c9a96e;
            border: none;
            border-radius: 8px;
            color: #0f0f0f;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .comment-form .btn-submit:hover {
            background: #e0c48a;
            transform: scale(1.02);
        }
        .rating-block {
            background: #1a1a1a;
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid #2a2a2a;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            margin: 1rem 0;
        }
        .rating-stars i {
            transition: color 0.3s, transform 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f5d742;
            transform: scale(1.15);
        }
        .rating-stars i.selected {
            color: #f5d742;
        }
        .rating-block .btn-submit {
            padding: 0.6rem 1.8rem;
            background: #c9a96e;
            border: none;
            border-radius: 8px;
            color: #0f0f0f;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-block .btn-submit:hover {
            background: #e0c48a;
        }
        footer {
            background: #0a0a0a;
            border-top: 2px solid #2a2a2a;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-grid h4 {
            color: #e6d5b8;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .footer-grid ul li {
            padding: 0.2rem 0;
        }
        .footer-grid ul li a {
            font-size: 0.95rem;
        }
        friend-link {
            display: block;
            background: #111;
            padding: 1.2rem 1.5rem;
            border-radius: 8px;
            border: 1px solid #2a2a2a;
            margin-bottom: 1.5rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.8rem 0.3rem 0;
            padding: 0.3rem 0.8rem;
            background: #1f1f1f;
            border-radius: 6px;
            font-size: 0.9rem;
            border: 1px solid #2a2a2a;
            transition: background 0.3s;
        }
        friend-link a:hover {
            background: #2a2a2a;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #1a1a1a;
            font-size: 0.85rem;
            color: #666;
        }
        .copyright strong {
            color: #888;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 2.4rem;
            }
            .hero h1 {
                font-size: 2.6rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-wrap {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 1rem;
            }
            .nav-wrap.open {
                display: flex;
            }
            .nav-wrap ul {
                flex-direction: column;
                width: 100%;
                gap: 0;
            }
            .nav-wrap ul li a {
                display: block;
                padding: 0.7rem 1rem;
                border-bottom: 1px solid #1f1f1f;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero .subhead {
                font-size: 1.1rem;
            }
            .content-body {
                padding: 1.2rem 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="text"] {
                min-width: auto;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 14px;
            }
            .rating-stars {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 480px) {
            html {
                font-size: 14px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
            .content-body {
                padding: 1rem 0.8rem;
            }
            .link-block {
                padding: 0.8rem 1rem;
            }
            .sidebar {
                padding: 1rem;
            }
        }
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.6s ease forwards;
        }
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .delay-1 {
            animation-delay: 0.1s;
        }
        .delay-2 {
            animation-delay: 0.2s;
        }
        .delay-3 {
            animation-delay: 0.3s;
        }
