        *,
        *::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: #e8edf2;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #f0b429;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.25rem;
        }
        li {
            margin-bottom: 0.25rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .site-header {
            background: #141820;
            border-bottom: 2px solid #2a2e3a;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 12px 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: 800;
            color: #f0b429;
            letter-spacing: 0.5px;
            text-shadow: 0 0 10px rgba(240, 180, 41, 0.2);
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            color: #8a8fa8;
            display: block;
            line-height: 1.2;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f0b429;
            color: #f0b429;
            font-size: 1.4rem;
            padding: 0.3rem 0.7rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(240, 180, 41, 0.15);
        }
        .nav-menu {
            display: flex;
            gap: 1.2rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #c8cdde;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.25rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .nav-menu a:hover {
            color: #f0b429;
            border-bottom-color: #f0b429;
            text-decoration: none;
        }
        .breadcrumb {
            background: #1a1e28;
            padding: 0.6rem 0;
            border-bottom: 1px solid #2a2e3a;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #6a6f82;
        }
        .breadcrumb a {
            color: #a8adc2;
        }
        .breadcrumb .current {
            color: #f0b429;
            font-weight: 500;
        }
        .main-content {
            padding: 2rem 0 3rem;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #f0b429;
            line-height: 1.25;
            margin-bottom: 0.75rem;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #f5d78a;
            margin: 2.5rem 0 1rem 0;
            border-bottom: 2px solid #2a2e3a;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: #e8c56a;
            margin: 1.8rem 0 0.75rem 0;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #d9b85c;
            margin: 1.2rem 0 0.5rem 0;
        }
        p {
            margin-bottom: 1rem;
        }
        .featured-image {
            margin: 1.5rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            background: #1a1e28;
            padding: 0.5rem;
        }
        .featured-image img {
            border-radius: 8px;
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #8a8fa8;
            padding: 0.5rem 0 0.25rem;
        }
        .last-updated {
            display: inline-block;
            background: #1a1e28;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #8a8fa8;
            border: 1px solid #2a2e3a;
            margin-bottom: 1rem;
        }
        .last-updated i {
            margin-right: 0.4rem;
            color: #f0b429;
        }
        .highlight-box {
            background: #1a1e28;
            border-left: 4px solid #f0b429;
            padding: 1rem 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .btn {
            display: inline-block;
            background: #f0b429;
            color: #0d0f14;
            font-weight: 600;
            padding: 0.5rem 1.4rem;
            border-radius: 6px;
            transition: background 0.2s, transform 0.1s;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }
        .btn:hover {
            background: #ffd966;
            transform: translateY(-1px);
            text-decoration: none;
            color: #0d0f14;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f0b429;
            color: #f0b429;
        }
        .btn-outline:hover {
            background: #f0b429;
            color: #0d0f14;
        }
        .form-section {
            background: #141820;
            border: 1px solid #2a2e3a;
            border-radius: 12px;
            padding: 1.8rem 2rem;
            margin: 2.5rem 0;
        }
        .form-section h3 {
            margin-top: 0;
            border-bottom: 1px solid #2a2e3a;
            padding-bottom: 0.5rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.3rem;
            color: #c8cdde;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.65rem 0.9rem;
            border-radius: 6px;
            border: 1px solid #2a2e3a;
            background: #1a1e28;
            color: #e8edf2;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f0b429;
            box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.2);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #3a3e4a;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.15s;
            color: #3a3e4a;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0b429;
        }
        .comment-list {
            margin-top: 1.5rem;
        }
        .comment-item {
            background: #1a1e28;
            padding: 1rem 1.2rem;
            border-radius: 8px;
            margin-bottom: 0.8rem;
            border-left: 3px solid #f0b429;
        }
        .comment-item .meta {
            font-size: 0.8rem;
            color: #8a8fa8;
            margin-bottom: 0.3rem;
        }
        .comment-item .meta strong {
            color: #e8c56a;
        }
        friend-link {
            display: block;
            padding: 1.5rem 0;
            border-top: 1px solid #2a2e3a;
            margin-top: 1rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1rem 0.3rem 0;
            color: #a8adc2;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            color: #f0b429;
        }
        .site-footer {
            background: #141820;
            border-top: 2px solid #2a2e3a;
            padding: 1.5rem 0 2rem;
            text-align: center;
            font-size: 0.85rem;
            color: #6a6f82;
        }
        .site-footer .copyright {
            margin-top: 0.5rem;
        }
        .site-footer a {
            color: #a8adc2;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: inline-block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #141820;
                padding: 1rem 0 0.5rem;
                border-top: 1px solid #2a2e3a;
                margin-top: 0.75rem;
                gap: 0.5rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.4rem 0;
                font-size: 1rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .form-section {
                padding: 1.2rem;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .star-rating {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.75rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .highlight-box {
                padding: 0.8rem 1rem;
            }
        }
        .text-muted {
            color: #8a8fa8;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .gap-1 {
            gap: 0.5rem;
        }
        .text-center {
            text-align: center;
        }
        ::-webkit-scrollbar {
            width: 8px;
            background: #0d0f14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2e3a;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a3e4a;
        }
