        *,
        *::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, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #0d0d0d;
            color: #e8e8e8;
            line-height: 1.75;
            min-height: 100vh;
        }
        a {
            color: #f5a623;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffc107;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #f5a623;
            border-radius: 4px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #f5a623;
            margin-bottom: 1.25rem;
            border-left: 5px solid #f5a623;
            padding-left: 1rem;
        }
        .section-subtitle {
            font-size: 1.5rem;
            font-weight: 600;
            color: #f0c674;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        .badge {
            display: inline-block;
            background: #f5a623;
            color: #0d0d0d;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.2rem 0.75rem;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .text-muted {
            color: #999;
        }
        .mt-2 {
            margin-top: 1rem;
        }
        .mt-3 {
            margin-top: 1.5rem;
        }
        .mt-4 {
            margin-top: 2rem;
        }
        .mb-2 {
            margin-bottom: 1rem;
        }
        .mb-3 {
            margin-bottom: 1.5rem;
        }
        .site-header {
            background: linear-gradient(145deg, #141414 0%, #1f1f1f 100%);
            border-bottom: 3px solid #f5a623;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(245, 166, 35, 0.12);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #f5a623;
            text-shadow: 0 0 12px rgba(245, 166, 35, 0.25);
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #ffc107;
        }
        .my-logo span {
            font-weight: 300;
            color: #ccc;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5a623;
            color: #f5a623;
            font-size: 1.4rem;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(245, 166, 35, 0.12);
        }
        .nav-list {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 1.25rem;
            flex-wrap: wrap;
            padding: 0;
        }
        .nav-list li a {
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            transition: background 0.2s, color 0.2s;
            color: #ddd;
        }
        .nav-list li a:hover {
            background: rgba(245, 166, 35, 0.12);
            color: #f5a623;
            text-decoration: none;
        }
        .nav-list li a.active {
            color: #f5a623;
            border-bottom: 2px solid #f5a623;
        }
        .breadcrumb-wrap {
            background: #1a1a1a;
            padding: 0.6rem 0;
            border-bottom: 1px solid #2a2a2a;
        }
        .breadcrumb {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            font-size: 0.85rem;
            padding: 0;
        }
        .breadcrumb li {
            color: #aaa;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #f5a623;
            font-weight: 700;
        }
        .breadcrumb li a {
            color: #f5a623;
        }
        .breadcrumb li a:hover {
            color: #ffc107;
        }
        .breadcrumb li:last-child {
            color: #ccc;
        }
        .hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
            padding: 3rem 0 2.5rem;
            text-align: center;
            border-bottom: 2px solid #f5a623;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚔️";
            position: absolute;
            right: 5%;
            bottom: 10%;
            font-size: 5rem;
            opacity: 0.06;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.4rem;
            font-weight: 900;
            color: #fff;
            text-shadow: 0 2px 16px rgba(245, 166, 35, 0.25);
            margin-bottom: 0.75rem;
            letter-spacing: 0.5px;
        }
        .hero h1 .highlight {
            color: #f5a623;
        }
        .hero p {
            font-size: 1.1rem;
            color: #ccc;
            max-width: 750px;
            margin: 0 auto 0.75rem;
        }
        .hero .meta-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 1rem;
        }
        .hero .meta-info i {
            color: #f5a623;
            margin-right: 0.35rem;
        }
        .last-updated {
            display: inline-block;
            background: rgba(245, 166, 35, 0.12);
            padding: 0.2rem 1rem;
            border-radius: 20px;
            color: #f5a623;
            font-weight: 600;
            font-size: 0.85rem;
        }
        .main-content {
            padding: 2.5rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
               }
        .content-body h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #f5a623;
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid #2a2a2a;
            padding-bottom: 0.5rem;
        }
        .content-body h2:first-of-type {
            margin-top: 0;
        }
        .content-body h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: #f0c674;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        .content-body h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #e0c080;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }
        .content-body p {
            margin-bottom: 1.2rem;
            color: #d4d4d4;
        }
        .content-body p strong {
            color: #fff;
        }
        .content-body ul,
        .content-body ol {
            margin-bottom: 1.2rem;
            color: #d4d4d4;
        }
        .content-body li {
            margin-bottom: 0.4rem;
        }
        .content-body .feature-box {
            background: #1a1a1a;
            border-left: 4px solid #f5a623;
            padding: 1.25rem 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }
        .content-body .feature-box p:last-child {
            margin-bottom: 0;
        }
        .content-body .stat-highlight {
            display: inline-block;
            background: #2a2a2a;
            padding: 0.15rem 0.6rem;
            border-radius: 4px;
            font-weight: 700;
            color: #f5a623;
        }
        .content-image-wrap {
            margin: 2rem 0;
            border-radius: 12px;
            overflow: hidden;
            background: #1a1a1a;
            padding: 0.5rem;
            border: 1px solid #2a2a2a;
        }
        .content-image-wrap img {
            width: 100%;
            border-radius: 8px;
        }
        .content-image-wrap figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #999;
            padding: 0.6rem 0 0.2rem;
            font-style: italic;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #1a1a1a;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border: 1px solid #2a2a2a;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #f5a623;
            margin-bottom: 0.75rem;
            border-bottom: 1px solid #2a2a2a;
            padding-bottom: 0.5rem;
        }
        .sidebar-link-list {
            list-style: none;
            padding: 0;
        }
        .sidebar-link-list li {
            margin-bottom: 0.5rem;
        }
        .sidebar-link-list li a {
            font-size: 0.9rem;
            color: #ccc;
            display: block;
            padding: 0.3rem 0.5rem;
            border-radius: 4px;
            transition: background 0.2s, color 0.2s;
        }
        .sidebar-link-list li a:hover {
            background: rgba(245, 166, 35, 0.08);
            color: #f5a623;
            text-decoration: none;
        }
        .sidebar-link-list li a i {
            width: 1.2rem;
            color: #f5a623;
            margin-right: 0.4rem;
        }
        .search-section {
            background: #1a1a1a;
            border-radius: 12px;
            padding: 2rem;
            margin: 2.5rem 0;
            border: 1px solid #2a2a2a;
        }
        .search-section h2 {
            margin-top: 0 !important;
            border-bottom: none !important;
            padding-bottom: 0 !important;
        }
        .search-form {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 0.85rem 1.2rem;
            border: 2px solid #2a2a2a;
            border-radius: 8px;
            background: #0d0d0d;
            color: #fff;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            outline: none;
            border-color: #f5a623;
        }
        .search-form button {
            padding: 0.85rem 1.8rem;
            background: #f5a623;
            color: #0d0d0d;
            font-weight: 700;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #ffc107;
            transform: translateY(-1px);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .feedback-card {
            background: #1a1a1a;
            border-radius: 12px;
            padding: 1.75rem;
            border: 1px solid #2a2a2a;
        }
        .feedback-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #f5a623;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 0.7rem 1rem;
            border: 2px solid #2a2a2a;
            border-radius: 8px;
            background: #0d0d0d;
            color: #fff;
            font-size: 0.95rem;
            transition: border-color 0.3s;
            width: 100%;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            outline: none;
            border-color: #f5a623;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card button {
            padding: 0.75rem 1.5rem;
            background: #f5a623;
            color: #0d0d0d;
            font-weight: 700;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
            align-self: flex-start;
        }
        .feedback-card button:hover {
            background: #ffc107;
            transform: translateY(-1px);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #444;
            cursor: pointer;
        }
        .star-rating i {
            transition: color 0.2s;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #f5a623;
        }
        .friend-links-wrap {
            background: #1a1a1a;
            border-top: 3px solid #f5a623;
            padding: 2rem 0;
            margin-top: 2rem;
        }
        friend-link {
            display: block;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        friend-link h2 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #f5a623;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .friend-link-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            padding: 0;
        }
        .friend-link-list li a {
            color: #ccc;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        .friend-link-list li a:hover {
            color: #f5a623;
            text-decoration: none;
        }
        .friend-link-list li a i {
            margin-right: 0.3rem;
            color: #f5a623;
            font-size: 0.75rem;
        }
        .site-footer {
            background: #0a0a0a;
            padding: 1.75rem 0;
            border-top: 1px solid #2a2a2a;
            text-align: center;
        }
        .site-footer p {
            color: #888;
            font-size: 0.85rem;
            margin-bottom: 0.4rem;
        }
        .site-footer p i {
            color: #f5a623;
        }
        .site-footer .copyright {
            font-weight: 500;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a1a;
                padding: 1rem 0.5rem;
                border-radius: 8px;
                border: 1px solid #2a2a2a;
                margin-top: 0.5rem;
                gap: 0.25rem;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                display: block;
                padding: 0.6rem 1rem;
            }
            .header-inner {
                position: relative;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero p {
                font-size: 0.95rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .content-body h2 {
                font-size: 1.4rem;
            }
            .content-body h3 {
                font-size: 1.15rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="text"] {
                min-width: auto;
            }
            .feedback-card {
                padding: 1.25rem;
            }
            .my-logo {
                font-size: 1.25rem;
            }
            .breadcrumb-wrap {
                font-size: 0.75rem;
            }
            .hero .meta-info {
                flex-direction: column;
                gap: 0.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            .hero {
                padding: 2rem 0 1.5rem;
            }
            .hero h1 {
                font-size: 1.35rem;
            }
            .content-body .feature-box {
                padding: 0.9rem 1.1rem;
            }
            .star-rating {
                font-size: 1.3rem;
            }
            .friend-link-list {
                flex-direction: column;
                gap: 0.4rem;
            }
        }
        @media print {
            .site-header,
            .breadcrumb-wrap,
            .search-section,
            .feedback-grid,
            .sidebar,
            .nav-toggle {
                display: none !important;
            }
            body {
                background: #fff;
                color: #111;
            }
            .content-body a {
                color: #0056b3;
            }
        }
