        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0b0d11;
            color: #e8eaed;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffdd77;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #ffffff;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #f5c542;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #f5c542;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #f0d080;
        }
        h4 {
            font-size: 1.15rem;
            color: #c0b088;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .badge {
            display: inline-block;
            background: #f5c542;
            color: #0b0d11;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 0.4rem;
        }
        .highlight-box {
            background: #1a1e26;
            border-left: 5px solid #f5c542;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.5rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 0.3rem;
        }
        .text-gold {
            color: #f5c542;
        }
        .text-muted {
            color: #9aa0a8;
        }
        .small {
            font-size: 0.9rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .flex {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.5rem;
        }
        @media (max-width:768px) {
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .container {
                padding: 0 14px;
            }
        }
        .site-header {
            background: #11141c;
            border-bottom: 2px solid #2a2e38;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            background: rgba(11, 13, 17, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5c542, #e8a820);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5c542;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none !important;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5c542;
            color: #f5c542;
            font-size: 1.6rem;
            padding: 0.2rem 0.7rem;
            border-radius: 6px;
            cursor: pointer;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.4rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li a {
            color: #cfd4dc;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu li a:hover {
            color: #f5c542;
            border-bottom-color: #f5c542;
            text-decoration: none;
        }
        @media (max-width:768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 0.8rem 0 0.4rem;
                gap: 0.3rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                display: block;
                padding: 0.5rem 0.6rem;
                border-bottom: 1px solid #2a2e38;
            }
        }
        .breadcrumb {
            padding: 0.8rem 0 0.2rem;
            font-size: 0.85rem;
            color: #9aa0a8;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #9aa0a8;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb span.sep {
            color: #555;
        }
        .search-section {
            background: #151a24;
            padding: 1.2rem 1.5rem;
            border-radius: 16px;
            margin: 1.2rem 0 2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .search-section form {
            display: flex;
            flex: 2;
            min-width: 200px;
            gap: 0.5rem;
        }
        .search-section input[type="text"] {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 1px solid #2e3540;
            border-radius: 30px;
            background: #0b0d11;
            color: #e8eaed;
            font-size: 0.95rem;
            outline: none;
            transition: 0.2s;
        }
        .search-section input[type="text"]:focus {
            border-color: #f5c542;
        }
        .search-section button {
            background: #f5c542;
            border: none;
            border-radius: 30px;
            padding: 0.7rem 1.4rem;
            font-weight: 600;
            color: #0b0d11;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .search-section button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .search-section .search-tag {
            font-size: 0.85rem;
            color: #9aa0a8;
        }
        .toc {
            background: #161b24;
            border-radius: 16px;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
        }
        .toc h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .toc ol {
            columns: 2;
            column-gap: 2.5rem;
            list-style: decimal;
            padding-left: 1.2rem;
        }
        .toc ol li {
            margin-bottom: 0.4rem;
            break-inside: avoid;
        }
        .toc ol li a {
            color: #cfd4dc;
        }
        .toc ol li a:hover {
            color: #f5c542;
            text-decoration: none;
        }
        @media (max-width:600px) {
            .toc ol {
                columns: 1;
            }
        }
        .card {
            background: #161b24;
            border-radius: 16px;
            padding: 1.4rem 1.6rem;
            border: 1px solid #262c36;
            transition: 0.25s;
        }
        .card:hover {
            border-color: #f5c542;
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(245, 197, 66, 0.08);
        }
        .card h4 {
            margin-top: 0;
        }
        .card p:last-child {
            margin-bottom: 0;
        }
        .comment-section,
        .rating-section {
            background: #151a24;
            border-radius: 16px;
            padding: 1.6rem 1.8rem;
            margin: 2rem 0;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
        }
        .comment-section form,
        .rating-section form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .comment-section input,
        .comment-section textarea,
        .rating-section select {
            padding: 0.7rem 1rem;
            border: 1px solid #2e3540;
            border-radius: 10px;
            background: #0b0d11;
            color: #e8eaed;
            font-size: 0.95rem;
            outline: none;
            transition: 0.2s;
            font-family: inherit;
        }
        .comment-section input:focus,
        .comment-section textarea:focus,
        .rating-section select:focus {
            border-color: #f5c542;
        }
        .comment-section textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-section button,
        .rating-section button {
            background: #f5c542;
            border: none;
            border-radius: 30px;
            padding: 0.7rem 1.6rem;
            font-weight: 600;
            color: #0b0d11;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.95rem;
            align-self: flex-start;
        }
        .comment-section button:hover,
        .rating-section button:hover {
            background: #ffdd77;
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 1.6rem;
            color: #f5c542;
        }
        .rating-stars i {
            cursor: pointer;
            transition: 0.15s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .site-footer {
            background: #0d1017;
            border-top: 2px solid #1e232e;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-grid h4 {
            margin-top: 0;
            color: #f5c542;
            font-size: 1.1rem;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid ul li {
            margin-bottom: 0.3rem;
        }
        .footer-grid ul li a {
            color: #9aa0a8;
            font-size: 0.9rem;
        }
        .footer-grid ul li a:hover {
            color: #f5c542;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            padding: 1rem 0 0.5rem;
            border-top: 1px solid #1e232e;
            margin-top: 1.5rem;
            font-size: 0.9rem;
        }
        .friend-link a {
            color: #9aa0a8;
        }
        .friend-link a:hover {
            color: #f5c542;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            font-size: 0.85rem;
            color: #6a707a;
            border-top: 1px solid #1a1f2a;
            margin-top: 1.5rem;
        }
        .copyright strong {
            color: #9aa0a8;
        }
        @media (max-width:768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        .hero-image-wrap {
            border-radius: 20px;
            overflow: hidden;
            margin: 1.5rem 0;
            background: #1a1e26;
            position: relative;
        }
        .hero-image-wrap img {
            width: 100%;
            object-fit: cover;
            min-height: 260px;
            max-height: 500px;
        }
        .hero-image-wrap .img-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            color: #cfd4dc;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-item {
            background: #1a1e26;
            border-radius: 12px;
            padding: 1rem 1.2rem;
            text-align: center;
            border: 1px solid #262c36;
        }
        .stat-item .num {
            font-size: 2rem;
            font-weight: 800;
            color: #f5c542;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #9aa0a8;
        }
        .btn-gold {
            display: inline-block;
            background: #f5c542;
            color: #0b0d11 !important;
            padding: 0.5rem 1.4rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: 0.2s;
        }
        .btn-gold:hover {
            background: #ffdd77;
            transform: scale(1.03);
            text-decoration: none !important;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #f5c542, transparent);
            margin: 2.5rem 0;
            opacity: 0.3;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #f5c542;
            color: #0b0d11;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 20px rgba(245, 197, 66, 0.3);
            transition: 0.2s;
            z-index: 50;
            border: none;
            cursor: pointer;
        }
        .back-to-top:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(245, 197, 66, 0.4);
        }
        @media (max-width:600px) {
            .back-to-top {
                bottom: 16px;
                right: 16px;
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0d11;
        }
        ::-webkit-scrollbar-thumb {
            background: #f5c542;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #e8a820;
        }
        ::selection {
            background: #f5c542;
            color: #0b0d11;
        }
