        *,
        *::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, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #0f0e17;
            color: #f0f0f0;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #ff8906;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #f8c291;
            text-decoration: underline;
        }
        a:focus-visible {
            outline: 2px dashed #ff8906;
            outline-offset: 4px;
        }
        ul,
        ol {
            padding-left: 1.75rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #fffffe;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.5rem;
            margin-top: 0.5rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid #ff8906;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #ffc857;
        }
        h4 {
            font-size: 1.2rem;
            color: #eaddcf;
        }
        p {
            margin-bottom: 1.25rem;
            color: #e0e0e0;
        }
        strong,
        b {
            color: #fffffe;
            font-weight: 700;
        }
        em {
            font-style: italic;
            color: #ffc857;
        }
        hr {
            border: none;
            height: 1px;
            background: linear-gradient(90deg, transparent, #ff8906, transparent);
            margin: 2.5rem 0;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: #1a1a2e;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
            border-bottom: 2px solid #ff8906;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #ff8906, #f8c291);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #ff8906;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none !important;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.25rem;
            padding: 0;
            margin: 0;
        }
        .nav-list a {
            display: block;
            padding: 0.5rem 1rem;
            color: #eaddcf;
            font-weight: 500;
            border-radius: 8px;
            transition: background 0.25s, color 0.25s;
            font-size: 0.95rem;
        }
        .nav-list a:hover,
        .nav-list a.active {
            background: #ff8906;
            color: #0f0e17;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fffffe;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 137, 6, 0.2);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #1a1a2e;
            padding: 0.7rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #2a2a4a;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #ff8906;
            margin-right: 0.5rem;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #a7a9be;
        }
        .breadcrumb a:hover {
            color: #ff8906;
        }
        .breadcrumb .current {
            color: #ffc857;
            font-weight: 600;
        }
        .search-section {
            background: #1a1a2e;
            padding: 1.25rem 0;
            border-bottom: 1px solid #2a2a4a;
        }
        .search-form {
            display: flex;
            gap: 0.75rem;
            max-width: 600px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.75rem 1.25rem;
            border: 2px solid #2a2a4a;
            border-radius: 50px;
            background: #0f0e17;
            color: #fffffe;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #ff8906;
            outline: none;
        }
        .search-form button {
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 50px;
            background: #ff8906;
            color: #0f0e17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
        }
        .search-form button:hover {
            background: #e67e00;
            transform: scale(1.02);
        }
        .content-area {
            padding: 2.5rem 0 3rem;
        }
        .article-body {
            background: #1a1a2e;
            border-radius: 24px;
            padding: 2rem 2.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            border: 1px solid #2a2a4a;
        }
        .article-body figure {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            background: #0f0e17;
            padding: 0.5rem;
            border: 1px solid #2a2a4a;
        }
        .article-body figure img {
            border-radius: 12px;
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .article-body figure figcaption {
            text-align: center;
            padding: 0.75rem 0.5rem 0.25rem;
            font-style: italic;
            color: #a7a9be;
            font-size: 0.9rem;
        }
        .last-updated {
            display: inline-block;
            background: #2a2a4a;
            padding: 0.3rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            color: #ffc857;
            margin-bottom: 1.5rem;
            border: 1px solid #ff8906;
        }
        .last-updated i {
            margin-right: 0.4rem;
        }
        .rating-wrap {
            background: #0f0e17;
            padding: 1.5rem 2rem;
            border-radius: 16px;
            margin: 2rem 0;
            border: 1px solid #2a2a4a;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.5rem;
        }
        .rating-stars {
            display: flex;
            flex-direction: row-reverse;
            gap: 0.2rem;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 2rem;
            color: #4a4a6a;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #ffc857;
            transform: scale(1.1);
        }
        .rating-form button {
            padding: 0.6rem 1.8rem;
            background: #ff8906;
            border: none;
            border-radius: 50px;
            color: #0f0e17;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-form button:hover {
            background: #e67e00;
        }
        .comments-section {
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 2px solid #2a2a4a;
        }
        .comment-form textarea {
            width: 100%;
            min-height: 110px;
            padding: 1rem;
            border: 2px solid #2a2a4a;
            border-radius: 16px;
            background: #0f0e17;
            color: #fffffe;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            transition: border 0.3s;
        }
        .comment-form textarea:focus {
            border-color: #ff8906;
            outline: none;
        }
        .comment-form .form-row {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 0.75rem;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1.2rem;
            border: 2px solid #2a2a4a;
            border-radius: 50px;
            background: #0f0e17;
            color: #fffffe;
        }
        .comment-form .form-row input:focus {
            border-color: #ff8906;
            outline: none;
        }
        .comment-form button {
            padding: 0.7rem 2.2rem;
            background: #ff8906;
            border: none;
            border-radius: 50px;
            color: #0f0e17;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #e67e00;
        }
        friend-link {
            display: block;
            background: #1a1a2e;
            padding: 2rem 0;
            border-top: 2px solid #2a2a4a;
            margin-top: 2rem;
        }
        friend-link .flist {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem 1.5rem;
            list-style: none;
            padding: 0;
            margin: 0.75rem 0 0;
            justify-content: center;
        }
        friend-link .flist a {
            color: #a7a9be;
            font-size: 0.95rem;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: color 0.25s, background 0.25s;
        }
        friend-link .flist a:hover {
            color: #ff8906;
            background: rgba(255, 137, 6, 0.08);
            text-decoration: none;
        }
        friend-link h3 {
            text-align: center;
            color: #ffc857;
            font-size: 1.3rem;
            margin: 0 0 0.25rem;
        }
        .site-footer {
            background: #0f0e17;
            padding: 2rem 0 1.5rem;
            border-top: 2px solid #2a2a4a;
            text-align: center;
        }
        .site-footer p {
            color: #6c6c8a;
            font-size: 0.9rem;
            margin: 0.25rem 0;
        }
        .site-footer .copyright {
            color: #a7a9be;
            font-weight: 500;
        }
        @media (max-width: 900px) {
            .article-body {
                padding: 1.5rem 1.25rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a2e;
                padding: 0.75rem 0;
                border-radius: 12px;
                border: 1px solid #2a2a4a;
                margin-top: 0.5rem;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                z-index: 999;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            .nav-list a {
                padding: 0.7rem 1.5rem;
                border-radius: 0;
            }
            .header-inner {
                position: relative;
            }
            .nav-wrap {
                width: 100%;
            }
            .nav-wrap .nav-list {
                position: static;
            }
            .rating-wrap {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
            }
            .rating-stars {
                justify-content: center;
            }
            .search-form {
                flex-direction: column;
                align-items: stretch;
            }
            .search-form button {
                width: 100%;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .breadcrumb ul {
                font-size: 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            .article-body {
                padding: 1rem 0.9rem;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo i {
                font-size: 1.3rem;
            }
            .rating-stars label {
                font-size: 1.6rem;
            }
        }
        .article-body * {
            transition: color 0.2s, background 0.2s, border-color 0.2s;
        }
        .custom-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #0f0e17;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2a2a4a;
        }
        .custom-table th {
            background: #ff8906;
            color: #0f0e17;
            font-weight: 700;
            padding: 0.75rem 1rem;
            text-align: left;
        }
        .custom-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #2a2a4a;
            color: #e0e0e0;
        }
        .custom-table tr:last-child td {
            border-bottom: none;
        }
        .custom-table tr:hover td {
            background: rgba(255, 137, 6, 0.06);
        }
        .text-accent {
            color: #ff8906;
        }
        .text-gold {
            color: #ffc857;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .badge {
            display: inline-block;
            background: #ff8906;
            color: #0f0e17;
            padding: 0.15rem 0.9rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
