        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #0d0d0d;
            color: #e8e0d4;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #f0c060;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffb347;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        ul,
        ol {
            padding-left: 1.6rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5e6c8;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #b8860b;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #b8860b;
            padding-left: 1rem;
            margin-top: 2.4rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #e6d3b3;
        }
        h4 {
            font-size: 1.2rem;
            color: #d4c4a8;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: #1a1a1a;
            padding: 0.8rem 0;
            border-bottom: 2px solid #b8860b;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px 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: #f5e6c8;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #b8860b, #f0c060);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            border: none;
            padding: 0.2rem 0;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #f0c060;
            margin-right: 0.3rem;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 1.2rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-list li a {
            color: #ccc;
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            transition: background 0.2s, color 0.2s;
        }
        .nav-list li a:hover {
            background: #b8860b33;
            color: #f0c060;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            font-size: 1.6rem;
            background: none;
            border: none;
            color: #f0c060;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
        }
        .breadcrumb {
            background: #1a1a1a;
            padding: 0.6rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #2a2a2a;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #888;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb .active {
            color: #f0c060;
        }
        .main-content {
            padding: 2rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .article-body {
            background: #151515;
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid #2a2a2a;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
        }
        .hero-image {
            margin: 1.5rem 0 2rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(184, 134, 11, 0.2);
        }
        .hero-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .image-caption {
            font-size: 0.85rem;
            color: #999;
            text-align: center;
            margin-top: 0.5rem;
        }
        .form-card {
            background: #1e1e1e;
            padding: 1.5rem 1.8rem;
            border-radius: 10px;
            border: 1px solid #333;
            margin-top: 1.5rem;
        }
        .form-card label {
            font-weight: 600;
            display: block;
            margin-bottom: 0.3rem;
            color: #e6d3b3;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 0.7rem 1rem;
            background: #0d0d0d;
            border: 1px solid #444;
            border-radius: 6px;
            color: #e8e0d4;
            font-size: 1rem;
            margin-bottom: 1rem;
            transition: border 0.2s;
        }
        .form-card input:focus,
        .form-card textarea:focus {
            border-color: #b8860b;
            outline: none;
            box-shadow: 0 0 0 2px #b8860b33;
        }
        .form-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            padding: 0.7rem 1.8rem;
            background: #b8860b;
            color: #0d0d0d;
            font-weight: 700;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            font-size: 1rem;
        }
        .btn:hover {
            background: #d4a017;
            transform: translateY(-2px);
            text-decoration: none;
            color: #0d0d0d;
        }
        .btn i {
            margin-right: 0.4rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.3rem;
            margin-bottom: 1rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.6rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f0c060;
        }
        .comment-item {
            border-bottom: 1px solid #2a2a2a;
            padding: 1rem 0;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: 700;
            color: #f0c060;
        }
        .comment-date {
            font-size: 0.8rem;
            color: #888;
            margin-left: 0.8rem;
        }
        .comment-body {
            margin-top: 0.4rem;
        }
        .links-section {
            background: #1a1a1a;
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid #2a2a2a;
            margin: 2rem 0;
        }
        .links-section h3 {
            margin-top: 0;
            color: #f0c060;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 0.8rem;
            list-style: none;
            padding: 0;
        }
        .links-grid li a {
            display: block;
            padding: 0.5rem 1rem;
            background: #0d0d0d;
            border-radius: 6px;
            border-left: 3px solid #b8860b;
            transition: background 0.2s, transform 0.15s;
        }
        .links-grid li a:hover {
            background: #2a2a2a;
            transform: translateX(4px);
            text-decoration: none;
        }
        .site-footer {
            background: #0d0d0d;
            border-top: 2px solid #b8860b;
            padding: 2rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        .footer-inner friend-link {
            display: block;
            font-style: normal;
        }
        .footer-inner friend-link a {
            display: inline-block;
            margin-right: 1rem;
            margin-bottom: 0.4rem;
            color: #aaa;
        }
        .footer-inner friend-link a:hover {
            color: #f0c060;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #222;
            margin-top: 1.5rem;
            color: #888;
            font-size: 0.9rem;
        }
        .copyright strong {
            color: #ccc;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: nowrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-wrapper {
                display: none;
                width: 100%;
                margin-top: 0.8rem;
                border-top: 1px solid #333;
                padding-top: 0.8rem;
            }
            .nav-wrapper.open {
                display: block;
            }
            .nav-list {
                flex-direction: column;
                gap: 0.4rem;
                align-items: flex-start;
            }
            .nav-list li a {
                display: block;
                padding: 0.5rem 0;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .article-body {
                padding: 1.2rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
            .links-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 0.9rem;
            }
            .form-card {
                padding: 1rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.3rem;
                letter-spacing: 1px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
        }
        .badge {
            display: inline-block;
            background: #b8860b;
            color: #0d0d0d;
            padding: 0.1rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .highlight {
            color: #f0c060;
            font-weight: 600;
        }
        .divider {
            border: none;
            height: 1px;
            background: linear-gradient(to right, transparent, #b8860b44, transparent);
            margin: 2rem 0;
        }
        .updated {
            font-size: 0.9rem;
            color: #999;
            text-align: right;
            margin-top: 1rem;
            border-top: 1px solid #222;
            padding-top: 0.8rem;
        }
        .updated i {
            margin-right: 0.4rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #0d0d0d;
            border-radius: 8px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.7rem 1rem;
            text-align: left;
            border-bottom: 1px solid #2a2a2a;
        }
        th {
            background: #1a1a1a;
            color: #f0c060;
            font-weight: 700;
        }
        tr:hover td {
            background: #1a1a1a;
        }
        .tip-box {
            background: #1e1e1e;
            border-left: 4px solid #f0c060;
            padding: 1rem 1.4rem;
            border-radius: 0 8px 8px 0;
            margin: 1.2rem 0;
        }
        .tip-box i {
            color: #f0c060;
            margin-right: 0.5rem;
        }
