        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #0d0f14;
            color: #e8edf5;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f0b429;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1e2b 0%, #0f121c 100%);
            border-bottom: 3px solid #f0b429;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(240, 180, 41, 0.08);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f0b429, #f7d875);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(240, 180, 41, 0.2);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #8892b0;
            color: #8892b0;
            display: block;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f0b429;
            color: #f0b429;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.3s;
        }
        .nav-toggle:hover {
            background: rgba(240, 180, 41, 0.12);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            list-style: none;
        }
        .nav-menu li a {
            display: block;
            padding: 8px 16px;
            font-size: 0.95rem;
            font-weight: 500;
            color: #c8d0e0;
            border-radius: 6px;
            transition: 0.25s;
            white-space: nowrap;
        }
        .nav-menu li a:hover {
            background: rgba(240, 180, 41, 0.12);
            color: #f0b429;
            text-decoration: none;
        }
        .nav-menu li a.active {
            background: #f0b429;
            color: #0d0f14;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.03);
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin: 0 8px;
            color: #6a728b;
        }
        .breadcrumb a {
            color: #8a94b0;
        }
        .breadcrumb a:hover {
            color: #f0b429;
        }
        .breadcrumb .current {
            color: #f0b429;
            font-weight: 500;
        }
        .main-content {
            flex: 1;
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f7d875, #f0b429);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #f0b429;
            margin-top: 50px;
            margin-bottom: 18px;
            border-left: 5px solid #f0b429;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #f7d875;
            margin-top: 34px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #c8d0e0;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 18px;
            color: #d0d8e8;
        }
        .lead {
            font-size: 1.2rem;
            color: #e8edf5;
            font-weight: 400;
            border-left: 4px solid #f0b429;
            padding-left: 20px;
            margin: 24px 0 32px;
        }
        .highlight-box {
            background: rgba(240, 180, 41, 0.06);
            border: 1px solid rgba(240, 180, 41, 0.2);
            border-radius: 12px;
            padding: 24px 28px;
            margin: 28px 0;
        }
        .highlight-box strong {
            color: #f7d875;
        }
        .emoji-big {
            font-size: 1.8rem;
            display: inline-block;
            margin-right: 6px;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 12px;
            padding: 22px 18px;
            text-align: center;
            border: 1px solid rgba(240, 180, 41, 0.12);
            transition: 0.3s;
        }
        .stat-card:hover {
            border-color: #f0b429;
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(240, 180, 41, 0.06);
        }
        .stat-card .stat-num {
            font-size: 2.6rem;
            font-weight: 800;
            color: #f0b429;
            display: block;
            line-height: 1.2;
        }
        .stat-card .stat-label {
            font-size: 0.95rem;
            color: #8a94b0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .feature-image {
            border-radius: 16px;
            overflow: hidden;
            margin: 32px 0;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(240, 180, 41, 0.15);
        }
        .feature-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            object-fit: cover;
            background: #1a1e2b;
        }
        .feature-image figcaption {
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #8a94b0;
            background: rgba(0, 0, 0, 0.4);
            font-style: italic;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            list-style: none;
            margin: 18px 0;
        }
        .link-list-inline li a {
            padding: 4px 12px;
            background: rgba(240, 180, 41, 0.08);
            border-radius: 20px;
            font-size: 0.9rem;
            border: 1px solid rgba(240, 180, 41, 0.1);
            transition: 0.25s;
        }
        .link-list-inline li a:hover {
            background: rgba(240, 180, 41, 0.18);
            border-color: #f0b429;
            text-decoration: none;
        }
        .search-section {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 32px 28px;
            margin: 40px 0;
            border: 1px solid rgba(240, 180, 41, 0.1);
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 10px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }
        .search-section input[type="text"]:focus {
            border-color: #f0b429;
            background: rgba(240, 180, 41, 0.05);
        }
        .search-section button {
            padding: 14px 32px;
            border: none;
            border-radius: 10px;
            background: linear-gradient(135deg, #f0b429, #d49a1c);
            color: #0d0f14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
        }
        .search-section button:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 25px rgba(240, 180, 41, 0.25);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 40px 0;
        }
        @media (max-width:768px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-section,
        .rating-section {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 28px 24px;
            border: 1px solid rgba(240, 180, 41, 0.08);
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            border-left: 3px solid #f0b429;
            padding-left: 14px;
        }
        .comment-section textarea {
            width: 100%;
            padding: 14px 16px;
            border-radius: 10px;
            border: 2px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.04);
            color: #e8edf5;
            font-size: 0.95rem;
            min-height: 120px;
            resize: vertical;
            outline: none;
            font-family: inherit;
            transition: 0.3s;
        }
        .comment-section textarea:focus {
            border-color: #f0b429;
        }
        .comment-section input[type="text"] {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 2px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.04);
            color: #e8edf5;
            font-size: 0.95rem;
            outline: none;
            transition: 0.3s;
            margin-bottom: 12px;
        }
        .comment-section input[type="text"]:focus {
            border-color: #f0b429;
        }
        .comment-section .btn-submit,
        .rating-section .btn-submit {
            padding: 12px 28px;
            border: none;
            border-radius: 10px;
            background: linear-gradient(135deg, #f0b429, #d49a1c);
            color: #0d0f14;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.3s;
            margin-top: 8px;
            width: 100%;
        }
        .comment-section .btn-submit:hover,
        .rating-section .btn-submit:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 20px rgba(240, 180, 41, 0.2);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 8px;
            margin: 16px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #4a4f62;
            cursor: pointer;
            transition: 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0b429;
        }
        .rating-display {
            margin-top: 16px;
            font-size: 1.1rem;
            color: #c8d0e0;
        }
        .rating-display .stars {
            color: #f0b429;
            letter-spacing: 2px;
        }
        .site-footer {
            background: #0a0c12;
            border-top: 2px solid rgba(240, 180, 41, 0.12);
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 36px;
        }
        @media (max-width:768px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .footer-inner h4 {
            color: #f0b429;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-inner p,
        .footer-inner li {
            font-size: 0.9rem;
            color: #8892b0;
        }
        .footer-inner ul {
            list-style: none;
        }
        .footer-inner ul li {
            margin-bottom: 6px;
        }
        .footer-inner ul li a {
            color: #8892b0;
        }
        .footer-inner ul li a:hover {
            color: #f0b429;
        }
        friend-link {
            display: block;
            padding: 18px 0 8px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            margin-top: 28px;
            font-size: 0.9rem;
            color: #6a728b;
        }
        friend-link a {
            color: #8a94b0;
            margin: 0 10px 0 4px;
        }
        friend-link a:hover {
            color: #f0b429;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            font-size: 0.85rem;
            color: #4a4f62;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            margin-top: 20px;
        }
        .copyright strong {
            color: #6a728b;
        }
        .last-update {
            display: inline-block;
            padding: 6px 18px;
            background: rgba(240, 180, 41, 0.08);
            border-radius: 20px;
            font-size: 0.85rem;
            color: #8a94b0;
            margin: 20px 0 8px;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: #141824;
                padding: 16px 12px;
                border-radius: 12px;
                margin-top: 8px;
                border: 1px solid rgba(240, 180, 41, 0.08);
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 12px 16px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            }
            .nav-menu li:last-child a {
                border-bottom: none;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section button {
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.7rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
            .stat-card .stat-num {
                font-size: 2rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0f14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2e3d;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f0b429;
        }
        .tag {
            display: inline-block;
            padding: 2px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: rgba(240, 180, 41, 0.12);
            color: #f0b429;
            margin-right: 6px;
        }
        .divider {
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(240, 180, 41, 0.2), transparent);
            margin: 40px 0;
        }
        blockquote {
            border-left: 4px solid #f0b429;
            padding: 16px 24px;
            margin: 24px 0;
            background: rgba(240, 180, 41, 0.04);
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #c8d0e0;
        }
        blockquote cite {
            display: block;
            margin-top: 8px;
            font-size: 0.85rem;
            color: #8a94b0;
            font-style: normal;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 28px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        table th {
            background: rgba(240, 180, 41, 0.12);
            color: #f7d875;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        table td {
            padding: 10px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            color: #c8d0e0;
        }
        table tr:hover td {
            background: rgba(255, 255, 255, 0.02);
        }
