*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0d0f14;
            color: #e8e6e3;
            line-height: 1.75;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1e28 0%, #0f1219 100%);
            border-bottom: 2px solid #2a2e3a;
            padding: 12px 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;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0c040, #d4a017);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(240, 192, 64, 0.15);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Cinzel', 'Segoe UI', serif;
        }
        .my-logo i {
            -webkit-text-fill-color: #f0c040;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 4px;
            flex-wrap: wrap;
        }
        .nav-list a {
            display: block;
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.92rem;
            color: #c8c6c0;
            transition: background 0.25s, color 0.25s;
        }
        .nav-list a:hover,
        .nav-list a:focus-visible {
            background: rgba(240, 192, 64, 0.12);
            color: #f0c040;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e8e6e3;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.06);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: #8a8a8a;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 8px;
            color: #555;
        }
        .breadcrumb a {
            color: #a0a0a0;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb .current {
            color: #d0c8b0;
        }
        .main-content {
            flex: 1;
            padding: 30px 0 60px;
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
        }
        .article-header h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            background: linear-gradient(135deg, #f5d98a, #f0c040, #d4a017);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 16px 28px;
            font-size: 0.95rem;
            color: #9a9a9a;
        }
        .article-meta i {
            color: #f0c040;
            margin-right: 6px;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(240, 192, 64, 0.08);
            padding: 4px 14px;
            border-radius: 30px;
            font-weight: 500;
            color: #d4c088;
        }
        .featured-image-wrapper {
            margin: 32px 0 40px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            background: #1a1e28;
            position: relative;
        }
        .featured-image-wrapper img {
            width: 100%;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-image-wrapper .img-caption {
            padding: 12px 20px;
            font-size: 0.85rem;
            color: #a0a0a0;
            background: #12151e;
            border-top: 1px solid #2a2e3a;
            text-align: center;
            font-style: italic;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 18px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a2e3a;
            color: #f5d98a;
            letter-spacing: -0.3px;
        }
        h2 i {
            color: #f0c040;
            margin-right: 10px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 14px;
            color: #e8d5a0;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #d0c090;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #d8d6d0;
        }
        .lead {
            font-size: 1.2rem;
            color: #e8e0d0;
            font-weight: 400;
            border-left: 4px solid #f0c040;
            padding-left: 20px;
            margin: 24px 0 30px;
        }
        strong {
            color: #f0e0b0;
            font-weight: 600;
        }
        .highlight-box {
            background: rgba(240, 192, 64, 0.06);
            border: 1px solid rgba(240, 192, 64, 0.18);
            border-radius: 14px;
            padding: 24px 28px;
            margin: 28px 0;
            position: relative;
        }
        .highlight-box::before {
            content: "⚡";
            position: absolute;
            top: -12px;
            left: 20px;
            font-size: 1.4rem;
            background: #0d0f14;
            padding: 0 8px;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .inline-link-list {
            background: #141820;
            border-radius: 12px;
            padding: 20px 24px;
            margin: 24px 0;
            border: 1px solid #2a2e3a;
        }
        .inline-link-list h4 {
            margin-top: 0;
            color: #f0c040;
        }
        .inline-link-list ul {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 8px 16px;
        }
        .inline-link-list li {
            padding: 4px 0;
        }
        .inline-link-list a {
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .inline-link-list a i {
            font-size: 0.8rem;
            opacity: 0.7;
        }
        .section-divider {
            margin: 48px 0;
            border: none;
            height: 1px;
            background: linear-gradient(90deg, transparent, #2a2e3a, transparent);
        }
        .form-section {
            background: #141820;
            border-radius: 16px;
            padding: 28px 32px;
            margin: 40px 0;
            border: 1px solid #2a2e3a;
        }
        .form-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-section h3 i {
            color: #f0c040;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 6px;
            color: #c8c0b0;
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #2a2e3a;
            background: #0d0f14;
            color: #e8e6e3;
            font-size: 1rem;
            transition: border 0.25s, box-shadow 0.25s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f0c040;
            box-shadow: 0 0 0 3px rgba(240, 192, 64, 0.15);
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: 10px;
            border: none;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            background: #f0c040;
            color: #0d0f14;
        }
        .btn:hover {
            background: #ffd966;
            transform: translateY(-2px);
        }
        .btn:active {
            transform: translateY(0);
        }
        .btn-outline {
            background: transparent;
            border: 1px solid #f0c040;
            color: #f0c040;
        }
        .btn-outline:hover {
            background: rgba(240, 192, 64, 0.12);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-start;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #3a3a3a;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label i {
            font-size: 1.8rem;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f0c040;
        }
        .site-footer {
            background: #0a0c12;
            border-top: 2px solid #1a1e28;
            padding: 40px 0 24px;
            margin-top: auto;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px 40px;
        }
        .footer-section h4 {
            color: #f0c040;
            margin-top: 0;
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        .footer-section ul {
            list-style: none;
            padding: 0;
        }
        .footer-section li {
            padding: 4px 0;
        }
        .footer-section a {
            color: #a0a0a0;
            font-size: 0.92rem;
        }
        .footer-section a:hover {
            color: #f0c040;
        }
        friend-link {
            display: block;
            margin-top: 8px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 12px;
            background: rgba(240, 192, 64, 0.06);
            border-radius: 30px;
            font-size: 0.88rem;
            border: 1px solid rgba(240, 192, 64, 0.1);
        }
        friend-link a:hover {
            background: rgba(240, 192, 64, 0.14);
            border-color: rgba(240, 192, 64, 0.25);
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #1a1e28;
            font-size: 0.85rem;
            color: #6a6a6a;
            margin-top: 16px;
        }
        .copyright a {
            color: #8a8a8a;
        }
        .copyright a:hover {
            color: #f0c040;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: nowrap;
            }
            .hamburger {
                display: block;
            }
            .nav-wrapper {
                order: 3;
                width: 100%;
                display: none;
                flex-direction: column;
                background: #151a24;
                border-radius: 12px;
                padding: 12px 8px;
                margin-top: 8px;
                border: 1px solid #2a2e3a;
            }
            #nav-toggle:checked~.nav-wrapper {
                display: flex;
            }
            .nav-list {
                flex-direction: column;
                width: 100%;
            }
            .nav-list a {
                padding: 12px 16px;
                border-radius: 6px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .article-header h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .container {
                padding: 0 14px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .form-section {
                padding: 20px 18px;
            }
            .inline-link-list ul {
                grid-template-columns: 1fr;
            }
            .article-meta {
                flex-direction: column;
                align-items: center;
                gap: 8px;
            }
            .breadcrumb {
                font-size: 0.78rem;
                overflow-x: auto;
                white-space: nowrap;
                padding: 10px 0 4px;
            }
            .star-rating label {
                font-size: 1.4rem;
            }
            .star-rating label i {
                font-size: 1.4rem;
            }
        }
        @media (min-width: 769px) {
            .nav-wrapper {
                display: flex !important;
            }
            #nav-toggle {
                display: none;
            }
            .hamburger {
                display: none !important;
            }
        }
        @media (max-width: 480px) {
            .article-header h1 {
                font-size: 1.5rem;
            }
            p {
                font-size: 0.98rem;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
            .featured-image-wrapper {
                margin: 20px 0 28px;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0f14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2e3a;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a3e4a;
        }
        :target {
            scroll-margin-top: 100px;
        }
