        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b0e14;
            color: #e2e6ec;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #e8b82e;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #f5d742;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        ul,
        ol {
            padding-left: 1.6rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
            line-height: 1.3;
            color: #f0e6d0;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4rem;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 5px solid #e8b82e;
            padding-left: 0.9rem;
        }
        h3 {
            font-size: 1.4rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 500;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        strong,
        b {
            color: #f5e7c8;
            font-weight: 600;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: #131821;
            border-bottom: 2px solid #2a313c;
            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.6rem;
            font-weight: 700;
            letter-spacing: 1px;
            background: linear-gradient(145deg, #e8b82e, #d4941a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            display: inline-block;
            padding: 0.2rem 0;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .logo-sub {
            font-size: 0.7rem;
            display: block;
            color: #88929e;
            -webkit-text-fill-color: #88929e;
            letter-spacing: 2px;
            font-weight: 400;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        .main-nav {
            display: flex;
            gap: 1.2rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .main-nav li a {
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #c8d0dc;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav li a:hover {
            background: #2a313c;
            color: #e8b82e;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 6px 4px;
            border-radius: 4px;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #e2e6ec;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        .breadcrumb {
            background: #1a212b;
            padding: 0.7rem 0;
            border-bottom: 1px solid #2a313c;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 0.4rem 0.8rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.8rem;
            color: #6a7480;
        }
        .breadcrumb a {
            color: #b0b8c4;
        }
        .breadcrumb .current {
            color: #e8b82e;
        }
        .main-content {
            flex: 1;
            padding: 2.4rem 0 3rem;
        }
        .hero-section {
            background: linear-gradient(145deg, #141c28, #0b0e14);
            border-radius: 16px;
            padding: 2.4rem 2.8rem;
            margin-bottom: 2.8rem;
            border: 1px solid #2a313c;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: "⚔️";
            position: absolute;
            right: 20px;
            bottom: 10px;
            font-size: 5rem;
            opacity: 0.06;
            pointer-events: none;
        }
        .hero-section h1 {
            font-size: 2.6rem;
            margin-bottom: 0.6rem;
        }
        .hero-section .subtitle {
            font-size: 1.2rem;
            color: #b0b8c4;
            margin-bottom: 1.2rem;
        }
        .hero-section .update-badge {
            display: inline-block;
            background: #2a313c;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #c8d0dc;
            border: 1px solid #3a4452;
        }
        .article-body {
            background: #111820;
            border-radius: 16px;
            padding: 2.4rem 2.8rem;
            border: 1px solid #2a313c;
            margin-bottom: 2.8rem;
        }
        .feature-image-wrap {
            margin: 1.8rem 0 2.4rem;
            border-radius: 12px;
            overflow: hidden;
            background: #1a212b;
            padding: 8px;
            border: 1px solid #2a313c;
        }
        .feature-image-wrap img {
            width: 100%;
            border-radius: 8px;
        }
        .feature-image-wrap figcaption {
            text-align: center;
            padding: 0.6rem 0 0.2rem;
            font-size: 0.9rem;
            color: #88929e;
        }
        .styled-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.6rem 0 2.2rem;
            font-size: 0.98rem;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #2a313c;
        }
        .styled-table thead {
            background: #1f2937;
        }
        .styled-table th {
            padding: 0.9rem 1.2rem;
            text-align: left;
            font-weight: 600;
            color: #e8b82e;
            border-bottom: 2px solid #3a4452;
        }
        .styled-table td {
            padding: 0.8rem 1.2rem;
            border-bottom: 1px solid #1f2937;
            background: #131821;
        }
        .styled-table tbody tr:hover td {
            background: #1a232f;
        }
        blockquote {
            border-left: 4px solid #e8b82e;
            background: #1a212b;
            padding: 1.2rem 1.8rem;
            margin: 1.6rem 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #c8d0dc;
        }
        blockquote strong {
            color: #f5e7c8;
        }
        .card-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.6rem;
            margin: 1.8rem 0;
        }
        .card-item {
            background: #131821;
            border: 1px solid #2a313c;
            border-radius: 14px;
            padding: 1.6rem 1.8rem;
            transition: transform 0.2s, border-color 0.2s;
        }
        .card-item:hover {
            transform: translateY(-4px);
            border-color: #e8b82e;
        }
        .card-item h4 {
            margin-top: 0;
            color: #e8b82e;
        }
        .card-item .tag {
            display: inline-block;
            background: #2a313c;
            padding: 0.15rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            color: #b0b8c4;
            margin-bottom: 0.6rem;
        }
        .inline-link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            margin: 0.8rem 0 1.6rem;
            padding: 0.6rem 0;
            list-style: none;
        }
        .inline-link-list li a {
            background: #1f2937;
            padding: 0.2rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            border: 1px solid #2a313c;
            transition: background 0.2s, border-color 0.2s;
        }
        .inline-link-list li a:hover {
            background: #2a313c;
            border-color: #e8b82e;
            text-decoration: none;
        }
        .search-section {
            background: #131821;
            border-radius: 14px;
            padding: 1.8rem 2.2rem;
            border: 1px solid #2a313c;
            margin: 2.4rem 0;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 0.8rem 1.2rem;
            border-radius: 8px;
            border: 1px solid #2a313c;
            background: #0b0e14;
            color: #e2e6ec;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #e8b82e;
        }
        .search-form button {
            padding: 0.8rem 2rem;
            border-radius: 8px;
            border: none;
            background: #e8b82e;
            color: #0b0e14;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .search-form button:hover {
            background: #f5d742;
            transform: scale(1.02);
        }
        .user-feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.4rem 0;
        }
        .feedback-card {
            background: #131821;
            border: 1px solid #2a313c;
            border-radius: 14px;
            padding: 1.6rem 2rem;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .feedback-form {
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
            margin-top: 0.8rem;
        }
        .feedback-form textarea,
        .feedback-form input[type="text"],
        .feedback-form input[type="number"] {
            background: #0b0e14;
            border: 1px solid #2a313c;
            border-radius: 8px;
            padding: 0.7rem 1rem;
            color: #e2e6ec;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border-color 0.3s;
        }
        .feedback-form textarea:focus,
        .feedback-form input:focus {
            border-color: #e8b82e;
        }
        .feedback-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-form button {
            align-self: flex-start;
            padding: 0.6rem 1.8rem;
            background: #e8b82e;
            border: none;
            border-radius: 8px;
            color: #0b0e14;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s;
        }
        .feedback-form button:hover {
            background: #f5d742;
        }
        .star-rating {
            display: flex;
            gap: 4px;
            font-size: 1.6rem;
            color: #3a4452;
            cursor: pointer;
            user-select: none;
        }
        .star-rating .star {
            transition: color 0.2s;
        }
        .star-rating .star.active {
            color: #e8b82e;
        }
        .star-rating .star:hover,
        .star-rating .star.hover {
            color: #f5d742;
        }
        .site-footer {
            background: #0d1117;
            border-top: 2px solid #1f2937;
            padding: 2.4rem 0 1.6rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-col h4 {
            color: #e8b82e;
            margin-top: 0;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 0.4rem;
        }
        .footer-col ul li a {
            color: #b0b8c4;
            font-size: 0.92rem;
        }
        .footer-col ul li a:hover {
            color: #e8b82e;
        }
        .friend-link {
            display: block;
            background: #131821;
            border: 1px solid #2a313c;
            border-radius: 10px;
            padding: 1.2rem 1.6rem;
            margin: 1.2rem 0 1.8rem;
        }
        .friend-link h4 {
            margin: 0 0 0.6rem;
            color: #e8b82e;
        }
        .friend-link ul {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.6rem;
            list-style: none;
            padding: 0;
        }
        .copyright {
            border-top: 1px solid #1f2937;
            padding-top: 1.4rem;
            text-align: center;
            font-size: 0.88rem;
            color: #6a7480;
        }
        .copyright strong {
            color: #b0b8c4;
        }
        @media (max-width: 992px) {
            .card-grid {
                grid-template-columns: 1fr;
            }
            .user-feedback-section {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #131821;
                border-bottom: 2px solid #2a313c;
                padding: 1rem 1.6rem;
                gap: 0.6rem;
                box-shadow: 0 20px 30px rgba(0, 0, 0, 0.6);
            }
            .main-nav.open {
                display: flex;
            }
            .nav-wrapper {
                position: relative;
            }
            .hero-section {
                padding: 1.6rem 1.2rem;
            }
            .hero-section h1 {
                font-size: 1.8rem;
            }
            .article-body {
                padding: 1.4rem 1.2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="text"] {
                min-width: auto;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .styled-table {
                font-size: 0.85rem;
            }
            .styled-table th,
            .styled-table td {
                padding: 0.5rem 0.7rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.2rem;
            }
            .hero-section h1 {
                font-size: 1.4rem;
            }
            .container {
                padding: 0 12px;
            }
            .article-body {
                padding: 1rem 0.8rem;
            }
            .feedback-card {
                padding: 1.2rem;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .text-muted {
            color: #88929e;
        }
        .text-gold {
            color: #e8b82e;
        }
        .fw-bold {
            font-weight: 600;
        }
        .emoji-lg {
            font-size: 1.8rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .wrap {
            flex-wrap: wrap;
        }
