        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            font-size: 16px;
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #0d0f14;
            color: #eaeef2;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffdd77;
            text-decoration: underline;
            outline: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
            color: #ffffff;
            letter-spacing: -0.01em;
        }
        h1 {
            font-size: 2.6rem;
            margin-top: 0.5rem;
            border-left: 6px solid #f5c842;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid rgba(245, 200, 66, 0.25);
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #f5e5c0;
        }
        h4 {
            font-size: 1.2rem;
            color: #cfd8e6;
        }
        p {
            margin-bottom: 1.25rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .badge {
            display: inline-block;
            background: #f5c842;
            color: #0d0f14;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
        header {
            background: #14181f;
            border-bottom: 2px solid #2a2f3a;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f5c842;
            letter-spacing: -0.03em;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f5c842, #f0a500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.55rem;
            font-weight: 400;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            display: block;
            letter-spacing: 0.2em;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5c842;
            color: #f5c842;
            font-size: 1.6rem;
            padding: 0.2rem 0.7rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f5c842;
            color: #0d0f14;
        }
        .navbar {
            display: flex;
            gap: 1.2rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .navbar a {
            color: #cdd4de;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            padding: 0.25rem 0;
        }
        .navbar a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #f5c842;
            transition: width 0.3s ease;
        }
        .navbar a:hover::after,
        .navbar a:focus-visible::after {
            width: 100%;
        }
        .navbar a.active {
            color: #f5c842;
        }
        .breadcrumb {
            background: #1a1e27;
            padding: 0.6rem 1.5rem;
            font-size: 0.85rem;
            border-bottom: 1px solid #2a2f3a;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 0.6rem;
            color: #6a7180;
        }
        .breadcrumb a {
            color: #9aa3b5;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .breadcrumb .current {
            color: #eaeef2;
        }
        .search-section {
            background: #1a1e27;
            padding: 1.8rem 1.5rem;
            border-radius: 16px;
            margin: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.2rem;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
        }
        .search-section form {
            display: flex;
            flex: 2 1 320px;
            gap: 0.5rem;
        }
        .search-section input[type="text"] {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border: 2px solid #2f3645;
            border-radius: 50px;
            background: #0d0f14;
            color: #eaeef2;
            font-size: 1rem;
            transition: border 0.3s;
            outline: none;
        }
        .search-section input[type="text"]:focus {
            border-color: #f5c842;
        }
        .search-section button {
            background: #f5c842;
            border: none;
            border-radius: 50px;
            padding: 0.8rem 1.8rem;
            font-weight: 700;
            font-size: 1rem;
            color: #0d0f14;
            cursor: pointer;
            transition: 0.25s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-section button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .interact-card {
            background: #1a1e27;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            border: 1px solid #2a2f3a;
            transition: transform 0.2s;
        }
        .interact-card:hover {
            transform: translateY(-3px);
        }
        .interact-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1.3rem;
        }
        .interact-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .interact-card textarea,
        .interact-card select,
        .interact-card input {
            padding: 0.7rem 1rem;
            border-radius: 10px;
            border: 2px solid #2f3645;
            background: #0d0f14;
            color: #eaeef2;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
            font-family: inherit;
        }
        .interact-card textarea:focus,
        .interact-card select:focus,
        .interact-card input:focus {
            border-color: #f5c842;
        }
        .interact-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .interact-card .star-select {
            display: flex;
            gap: 0.4rem;
            font-size: 1.6rem;
            color: #f5c842;
            cursor: pointer;
        }
        .interact-card .star-select i {
            transition: transform 0.15s, color 0.2s;
        }
        .interact-card .star-select i:hover {
            transform: scale(1.3);
            color: #ffdd77;
        }
        .btn-submit {
            background: #f5c842;
            color: #0d0f14;
            border: none;
            padding: 0.7rem 1.6rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.25s;
            align-self: flex-start;
        }
        .btn-submit:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        main {
            padding: 2rem 0 3rem;
        }
        .article-body {
            background: #12161c;
            border-radius: 20px;
            padding: 2.5rem 2.5rem;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            border: 1px solid #252b36;
        }
        .article-body p {
            text-align: justify;
        }
        .featured-image-wrap {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
            position: relative;
        }
        .featured-image-wrap img {
            width: 100%;
            object-fit: cover;
            max-height: 480px;
        }
        .featured-image-wrap .img-caption {
            background: rgba(0, 0, 0, 0.7);
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            color: #bfc7d6;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
        }
        .link-list-inline {
            display: inline;
            font-weight: 600;
            color: #f5c842;
        }
        .highlight-box {
            background: #1e252f;
            border-left: 5px solid #f5c842;
            padding: 1.6rem 2rem;
            border-radius: 0 16px 16px 0;
            margin: 2rem 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.2rem;
            margin: 2rem 0;
        }
        .stat-item {
            background: #1a1e27;
            padding: 1.2rem;
            border-radius: 14px;
            text-align: center;
            border: 1px solid #2f3645;
        }
        .stat-item .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f5c842;
            display: block;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #9aa3b5;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .update-date {
            color: #9aa3b5;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #252b36;
        }
        footer {
            background: #0b0d12;
            border-top: 2px solid #1f2530;
            padding: 2.5rem 1.5rem 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2.5rem;
        }
        footer h4 {
            color: #f5c842;
            font-size: 1.1rem;
            margin-top: 0;
            margin-bottom: 0.8rem;
        }
        footer a {
            color: #9aa3b5;
            display: inline-block;
            margin-bottom: 0.4rem;
        }
        footer a:hover {
            color: #f5c842;
        }
        friend-link {
            display: block;
            margin-top: 0.6rem;
        }
        friend-link a {
            margin-right: 1.2rem;
        }
        .copyright {
            max-width: 1200px;
            margin: 2rem auto 0;
            padding-top: 1.2rem;
            border-top: 1px solid #1f2530;
            text-align: center;
            color: #6a7180;
            font-size: 0.85rem;
        }
        @media (max-width: 1024px) {
            .article-body {
                padding: 1.8rem 1.5rem;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                padding: 0.6rem 1rem;
            }
            .nav-toggle {
                display: block;
            }
            .navbar {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem 0 0.5rem;
                gap: 0.6rem;
            }
            .navbar.open {
                display: flex;
            }
            .navbar a {
                font-size: 1.1rem;
                padding: 0.3rem 0;
            }
            .interact-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .search-section form {
                flex-wrap: wrap;
            }
            .search-section button {
                width: 100%;
                justify-content: center;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .featured-image-wrap .img-caption {
                position: relative;
                background: #1a1e27;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            .article-body {
                padding: 1.2rem 1rem;
            }
            h1 {
                font-size: 1.6rem;
                padding-left: 0.7rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.8rem;
            }
            .stat-item .num {
                font-size: 1.6rem;
            }
            .interact-card {
                padding: 1.2rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.4rem 1rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (prefers-reduced-motion: no-preference) {
            .fade-up {
                opacity: 0;
                transform: translateY(24px);
                animation: fadeUp 0.7s forwards;
            }
            @keyframes fadeUp {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
        }
