        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0f0e17;
            color: #fffffe;
            line-height: 1.7;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #ff8906;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #f25f4c;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #ff8906;
            margin: 2rem 0 0.5rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f25f4c;
            margin: 2.8rem 0 1rem;
            border-left: 5px solid #ff8906;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e8e4e6;
            margin: 2rem 0 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #a7a9be;
            margin: 1.4rem 0 0.6rem;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d1d1e0;
        }
        strong {
            color: #ff8906;
            font-weight: 700;
        }
        em {
            color: #a7a9be;
            font-style: italic;
        }
        header {
            padding: 1.2rem 0;
            border-bottom: 2px solid #2b2a3a;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #ff8906;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #ff8906, #f25f4c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            color: #a7a9be;
            -webkit-text-fill-color: #a7a9be;
            margin-left: 0.3rem;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 1.8rem;
            align-items: center;
            padding: 0;
            margin: 0;
        }
        .nav-list a {
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.4rem 0;
            position: relative;
        }
        .nav-list a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff8906;
            transition: width 0.25s;
        }
        .nav-list a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: none;
            border: none;
            padding: 0.4rem;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #fffffe;
            border-radius: 4px;
            transition: 0.3s;
        }
        .nav-open .nav-list {
            display: flex !important;
            flex-direction: column;
            position: absolute;
            top: 70px;
            left: 0;
            right: 0;
            background: #1a1928;
            padding: 1.5rem 2rem;
            border-radius: 0 0 16px 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
            z-index: 100;
            gap: 1rem;
        }
        .nav-open .hamburger span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .nav-open .hamburger span:nth-child(2) {
            opacity: 0;
        }
        .nav-open .hamburger span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            padding: 0.8rem 0 0.2rem;
            font-size: 0.85rem;
            color: #a7a9be;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: '›';
            margin-right: 0.6rem;
            color: #555;
        }
        .breadcrumb a {
            color: #a7a9be;
        }
        .breadcrumb a:hover {
            color: #ff8906;
        }
        .breadcrumb .active {
            color: #ff8906;
            font-weight: 500;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.5rem 0 2rem;
            max-width: 520px;
        }
        .search-form input {
            flex: 1;
            padding: 0.75rem 1.2rem;
            border: 2px solid #2b2a3a;
            border-radius: 40px;
            background: #1a1928;
            color: #fffffe;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input:focus {
            border-color: #ff8906;
        }
        .search-form button {
            background: #ff8906;
            border: none;
            border-radius: 40px;
            padding: 0 1.6rem;
            color: #0f0e17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .search-form button:hover {
            background: #f25f4c;
            transform: scale(1.02);
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .article-body {
            background: #1a1928;
            border-radius: 20px;
            padding: 2rem 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        .article-body p {
            max-width: 780px;
        }
        .feature-img {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            background: #2b2a3a;
            position: relative;
        }
        .feature-img img {
            width: 100%;
            object-fit: cover;
            aspect-ratio: 16/9;
        }
        .feature-img figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.85rem;
            color: #a7a9be;
            background: #0f0e17cc;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            backdrop-filter: blur(4px);
        }
        .weapon-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8rem 0;
            font-size: 0.9rem;
            background: #0f0e17;
            border-radius: 12px;
            overflow: hidden;
        }
        .weapon-table th {
            background: #2b2a3a;
            color: #ff8906;
            font-weight: 600;
            padding: 0.8rem 1rem;
            text-align: left;
        }
        .weapon-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #2b2a3a;
            color: #d1d1e0;
        }
        .weapon-table tr:hover td {
            background: #1f1e30;
        }
        .interaction-section {
            background: #1a1928;
            border-radius: 20px;
            padding: 2rem 2.5rem;
            margin-top: 2.5rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .interaction-section form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .interaction-section label {
            font-weight: 600;
            color: #e8e4e6;
        }
        .interaction-section input,
        .interaction-section textarea,
        .interaction-section select {
            padding: 0.7rem 1rem;
            border: 2px solid #2b2a3a;
            border-radius: 10px;
            background: #0f0e17;
            color: #fffffe;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.25s;
        }
        .interaction-section input:focus,
        .interaction-section textarea:focus,
        .interaction-section select:focus {
            border-color: #ff8906;
        }
        .interaction-section textarea {
            min-height: 90px;
            resize: vertical;
        }
        .interaction-section button {
            background: #ff8906;
            border: none;
            border-radius: 40px;
            padding: 0.7rem 2rem;
            color: #0f0e17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            align-self: flex-start;
        }
        .interaction-section button:hover {
            background: #f25f4c;
            transform: scale(1.02);
        }
        .star-select {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #2b2a3a;
            cursor: pointer;
        }
        .star-select .fas.fa-star {
            color: #ff8906;
        }
        .star-select .far.fa-star {
            color: #555;
        }
        friend-link {
            display: block;
            padding: 1.8rem 0 1rem;
            border-top: 2px solid #2b2a3a;
            margin-top: 2.5rem;
        }
        friend-link h3 {
            font-size: 1.2rem;
            color: #a7a9be;
            margin-bottom: 0.8rem;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 2rem;
            padding: 0;
        }
        friend-link a {
            color: #a7a9be;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            color: #ff8906;
        }
        footer {
            padding: 1.5rem 0 2.5rem;
            text-align: center;
            color: #555;
            font-size: 0.85rem;
            border-top: 1px solid #2b2a3a;
            margin-top: 0.5rem;
        }
        footer a {
            color: #a7a9be;
        }
        footer a:hover {
            color: #ff8906;
        }
        @media (max-width: 820px) {
            .nav-list {
                display: none;
                flex-direction: column;
                gap: 1rem;
                width: 100%;
            }
            .hamburger {
                display: flex;
            }
            .interaction-section {
                grid-template-columns: 1fr;
            }
            .article-body {
                padding: 1.5rem 1.2rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .weapon-table {
                font-size: 0.75rem;
            }
            .weapon-table th,
            .weapon-table td {
                padding: 0.5rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.6rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .article-body {
                padding: 1rem 0.8rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                padding: 0.6rem;
            }
            .interaction-section {
                padding: 1.2rem 1rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        .badge {
            display: inline-block;
            background: #2b2a3a;
            padding: 0.15rem 0.7rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #ff8906;
            margin-right: 0.4rem;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, #ff8906, transparent);
            margin: 2.5rem 0;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #555;
            text-align: right;
            margin-top: 0.5rem;
        }
        .emoji-lg {
            font-size: 1.3rem;
        }
        .tip-box {
            background: #2b2a3a;
            border-left: 4px solid #ff8906;
            padding: 1rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.8rem 0;
        }
        .tip-box p {
            margin-bottom: 0.2rem;
        }
