*,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #0b0e14;
            color: #e8edf2;
            line-height: 1.75;
            overflow-x: hidden;
        }
        a {
            color: #f0b429;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: #f7d97e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #141a24 0%, #1e2636 100%);
            border-bottom: 2px solid #2a354a;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0b429, #f7d97e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(240, 180, 41, 0.15);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            -webkit-text-fill-color: #f0b429;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            background: transparent;
            border: 1px solid rgba(240, 180, 41, 0.2);
            color: #c8d0dc;
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-list li a:hover,
        .nav-list li a.active {
            background: rgba(240, 180, 41, 0.15);
            border-color: #f0b429;
            color: #f0b429;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: transparent;
            border: 1px solid rgba(240, 180, 41, 0.3);
            color: #f0b429;
            font-size: 1.5rem;
            padding: 6px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(240, 180, 41, 0.1);
        }
        #nav-toggle {
            display: none;
        }
        #nav-toggle:checked~.nav-list {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 70px;
            left: 20px;
            right: 20px;
            background: #1a2230;
            border-radius: 16px;
            padding: 16px;
            border: 1px solid #2a354a;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
            z-index: 999;
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: #8895aa;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }
        .breadcrumb a {
            color: #8895aa;
        }
        .breadcrumb a:hover {
            color: #f0b429;
        }
        .breadcrumb span {
            color: #5a6a80;
        }
        main {
            padding: 30px 0 60px;
        }
        article {
            max-width: 1000px;
            margin: 0 auto;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 20px 0 16px;
            background: linear-gradient(135deg, #f7d97e, #f0b429);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 48px 0 16px;
            color: #f0b429;
            border-left: 4px solid #f0b429;
            padding-left: 16px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #e8edf2;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #c8d0dc;
        }
        p {
            margin: 0 0 18px;
            color: #cfd8e6;
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 0.9rem;
            color: #8895aa;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid #1e2636;
        }
        .meta-info i {
            margin-right: 6px;
        }
        .last-updated {
            color: #f0b429;
            font-weight: 600;
        }
        .featured-img {
            margin: 30px 0 35px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
            background: #1a2230;
        }
        .featured-img img {
            width: 100%;
            min-height: 280px;
            object-fit: cover;
            background: #2a354a;
        }
        .featured-img figcaption {
            padding: 12px 20px;
            font-size: 0.85rem;
            color: #8895aa;
            background: #141a24;
            border-top: 1px solid #1e2636;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a2230, #1e2636);
            border-left: 4px solid #f0b429;
            border-radius: 0 12px 12px 0;
            padding: 20px 24px;
            margin: 24px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .highlight-box p {
            margin: 0;
            color: #e8edf2;
        }
        ul,
        ol {
            margin: 0 0 20px 24px;
            color: #cfd8e6;
        }
        li {
            margin-bottom: 8px;
        }
        li strong {
            color: #f0b429;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: all 0.25s ease;
            background: #f0b429;
            color: #0b0e14;
        }
        .btn:hover {
            background: #f7d97e;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(240, 180, 41, 0.3);
            text-decoration: none;
        }
        .btn-outline {
            background: transparent;
            border: 1px solid #f0b429;
            color: #f0b429;
        }
        .btn-outline:hover {
            background: rgba(240, 180, 41, 0.1);
            color: #f7d97e;
        }
        .search-section {
            background: #141a24;
            border-radius: 16px;
            padding: 28px 32px;
            margin: 40px 0;
            border: 1px solid #1e2636;
        }
        .search-section h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 12px 20px;
            border-radius: 30px;
            border: 1px solid #2a354a;
            background: #0b0e14;
            color: #e8edf2;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #f0b429;
        }
        .user-feedback {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 40px 0;
        }
        .feedback-card {
            background: #141a24;
            border-radius: 16px;
            padding: 28px 32px;
            border: 1px solid #1e2636;
            transition: border 0.2s;
        }
        .feedback-card:hover {
            border-color: #2a354a;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-form input,
        .feedback-form textarea,
        .feedback-form select {
            width: 100%;
            padding: 10px 16px;
            border-radius: 10px;
            border: 1px solid #2a354a;
            background: #0b0e14;
            color: #e8edf2;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
            margin-bottom: 12px;
            font-family: inherit;
        }
        .feedback-form input:focus,
        .feedback-form textarea:focus,
        .feedback-form select:focus {
            border-color: #f0b429;
        }
        .feedback-form textarea {
            min-height: 80px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 4px;
            flex-direction: row-reverse;
            justify-content: flex-end;
            margin-bottom: 12px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.6rem;
            color: #2a354a;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f0b429;
        }
        footer {
            background: #0f141c;
            border-top: 2px solid #1e2636;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 24px;
        }
        .footer-inner h4 {
            color: #f0b429;
            margin-bottom: 12px;
        }
        .footer-inner ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-inner ul li {
            margin-bottom: 6px;
        }
        .footer-inner ul li a {
            color: #8895aa;
            font-size: 0.9rem;
        }
        .footer-inner ul li a:hover {
            color: #f0b429;
        }
        friend-link {
            display: block;
            padding: 16px 0;
            border-top: 1px solid #1e2636;
            border-bottom: 1px solid #1e2636;
            margin-bottom: 16px;
            font-size: 0.9rem;
            color: #8895aa;
        }
        friend-link a {
            color: #f0b429;
            margin: 0 8px;
        }
        .copyright {
            text-align: center;
            padding-top: 16px;
            font-size: 0.85rem;
            color: #5a6a80;
            border-top: 1px solid #1a2230;
        }
        .copyright strong {
            color: #8895aa;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                width: 100%;
            }
            .nav-list li a {
                padding: 12px 20px;
                border-radius: 10px;
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .user-feedback {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                min-width: auto;
            }
            .meta-info {
                flex-direction: column;
                gap: 6px;
            }
            .featured-img img {
                min-height: 180px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .feedback-card {
                padding: 20px;
            }
            .search-section {
                padding: 20px;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0e14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a354a;
            border-radius: 8px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a4a5a;
        }
        .weapon-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0 30px;
            font-size: 0.95rem;
        }
        .weapon-table th {
            background: #1a2230;
            color: #f0b429;
            padding: 12px 16px;
            text-align: left;
            border-bottom: 2px solid #2a354a;
        }
        .weapon-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #1e2636;
            color: #cfd8e6;
        }
        .weapon-table tr:hover td {
            background: rgba(240, 180, 41, 0.04);
        }
        @media (max-width: 600px) {
            .weapon-table {
                font-size: 0.8rem;
            }
            .weapon-table th,
            .weapon-table td {
                padding: 8px 10px;
            }
        }
        .text-accent {
            color: #f0b429;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .gap-sm {
            gap: 6px;
        }
        .flex {
            display: flex;
            align-items: center;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
