* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0d0f12;
            color: #e3e6ea;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .site-header {
            background: #14181c;
            border-bottom: 2px solid #2a2f35;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #f0c040;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f0c040 0%, #d4a020 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 8px rgba(240, 192, 64, 0.2);
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e3e6ea;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2a2f35;
        }
        .nav-menu {
            display: flex;
            gap: 20px;
            align-items: center;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-menu li a {
            color: #c8cdd4;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .nav-menu li a:hover {
            color: #f0c040;
            border-bottom-color: #f0c040;
            text-decoration: none;
        }
        .breadcrumb {
            background: #1a1f24;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #2a2f35;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            list-style: none;
            padding: 0;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 8px;
            color: #6b7a8a;
        }
        .breadcrumb a {
            color: #8e9eae;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb .current {
            color: #e3e6ea;
            font-weight: 500;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: #f0c040;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f0c040;
            margin-top: 48px;
            margin-bottom: 16px;
            border-left: 5px solid #f0c040;
            padding-left: 16px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e8d5a0;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #d4c090;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
            color: #d0d4da;
        }
        .content-section {
            background: #161a1f;
            border-radius: 12px;
            padding: 32px 28px;
            margin-bottom: 32px;
            border: 1px solid #262c32;
        }
        .highlight-box {
            background: #1e252b;
            border-left: 4px solid #f0c040;
            padding: 20px 24px;
            border-radius: 0 8px 8px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #f0c040;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .stat-card {
            background: #1a1f24;
            border-radius: 8px;
            padding: 20px 16px;
            text-align: center;
            border: 1px solid #2a2f35;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }
        .stat-card i {
            font-size: 2rem;
            color: #f0c040;
            margin-bottom: 8px;
        }
        .stat-card .value {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #8e9eae;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .feature-img {
            width: 100%;
            max-width: 100%;
            border-radius: 10px;
            margin: 24px 0;
            border: 1px solid #2a2f35;
            display: block;
            background: #1a1f24;
        }
        .feature-img img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .feature-img .caption {
            padding: 10px 16px;
            font-size: 0.85rem;
            color: #8e9eae;
            text-align: center;
            font-style: italic;
        }
        .btn {
            display: inline-block;
            background: #f0c040;
            color: #0d0f12;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 6px;
            border: none;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-size: 0.95rem;
        }
        .btn:hover {
            background: #ffd966;
            transform: scale(1.02);
            text-decoration: none;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f0c040;
            color: #f0c040;
        }
        .btn-outline:hover {
            background: #f0c040;
            color: #0d0f12;
        }
        .search-box {
            display: flex;
            gap: 8px;
            max-width: 520px;
            margin: 20px 0;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border-radius: 6px;
            border: 1px solid #2a2f35;
            background: #1a1f24;
            color: #e3e6ea;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.2s;
        }
        .search-box input:focus {
            border-color: #f0c040;
        }
        .search-box button {
            padding: 12px 24px;
            background: #f0c040;
            color: #0d0f12;
            font-weight: 600;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 1rem;
        }
        .search-box button:hover {
            background: #ffd966;
        }
        .comment-section {
            background: #161a1f;
            border-radius: 12px;
            padding: 28px;
            border: 1px solid #262c32;
            margin-top: 40px;
        }
        .comment-section h2 {
            margin-top: 0;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 12px 16px;
            border-radius: 6px;
            border: 1px solid #2a2f35;
            background: #1a1f24;
            color: #e3e6ea;
            font-size: 1rem;
            margin-bottom: 12px;
            font-family: inherit;
            transition: border-color 0.2s;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #f0c040;
            outline: none;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form .form-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 160px;
        }
        .rating-stars {
            display: flex;
            gap: 4px;
            font-size: 1.8rem;
            color: #4a4f56;
            cursor: pointer;
            margin: 8px 0 16px;
            direction: rtl;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.1s;
        }
        .rating-stars i:hover,
        .rating-stars i:hover~i {
            color: #f0c040;
            transform: scale(1.1);
        }
        .rating-stars i.active {
            color: #f0c040;
        }
        .site-footer {
            background: #14181c;
            border-top: 2px solid #2a2f35;
            padding: 40px 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-grid h4 {
            color: #f0c040;
            font-size: 1.1rem;
            margin-bottom: 12px;
            border-left: 3px solid #f0c040;
            padding-left: 10px;
        }
        .footer-grid ul {
            list-style: none;
        }
        .footer-grid ul li {
            margin-bottom: 8px;
        }
        .footer-grid ul li a {
            color: #8e9eae;
            font-size: 0.9rem;
        }
        .footer-grid ul li a:hover {
            color: #f0c040;
        }
        friend-link {
            display: block;
            background: #1a1f24;
            padding: 16px 20px;
            border-radius: 8px;
            border: 1px solid #262c32;
            margin: 16px 0;
            font-size: 0.9rem;
            color: #8e9eae;
        }
        friend-link a {
            color: #c8cdd4;
            margin: 0 4px;
        }
        friend-link a:hover {
            color: #f0c040;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #262c32;
            color: #6b7a8a;
            font-size: 0.85rem;
        }
        .copyright strong {
            color: #8e9eae;
        }
        @media (max-width: 900px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .content-section {
                padding: 20px 16px;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 700px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0;
                background: #14181c;
                padding: 12px 0;
                border-top: 1px solid #2a2f35;
                margin-top: 12px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li {
                width: 100%;
                text-align: center;
            }
            .nav-menu li a {
                display: block;
                padding: 12px 16px;
                border-bottom: 1px solid #1e252b;
            }
            .header-inner {
                align-items: center;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .search-box {
                flex-direction: column;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
                padding-left: 10px;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .content-section {
                padding: 16px 12px;
            }
            .my-logo {
                font-size: 1.2rem;
            }
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .text-center {
            text-align: center;
        }
        .flex {
            display: flex;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .gap-8 {
            gap: 8px;
        }
        .gap-16 {
            gap: 16px;
        }
        .items-center {
            align-items: center;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0f12;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2f35;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a4149;
        }
        .schema-hidden {
            display: none;
        }
