        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b0e14;
            color: #e8edf3;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #f7c948;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ffda7a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.4rem;
            margin: 0.8rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f7d44a;
            margin-top: 1.6rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #f7c948;
            padding-bottom: 0.4rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #f7c948;
            padding-left: 0.9rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #f0d78a;
        }
        h4 {
            font-size: 1.1rem;
            color: #ddd4b0;
        }
        p {
            margin: 0.9rem 0;
            color: #d6dce6;
        }
        strong,
        b {
            color: #f7e6b0;
            font-weight: 700;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 18px;
        }
        .site-header {
            background: linear-gradient(145deg, #131a24 0%, #1c2633 100%);
            padding: 12px 0;
            border-bottom: 2px solid #f7c94833;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px 20px;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f7c948, #f5b82e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px #f7c94833;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f7c948;
            font-size: 1.9rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: initial;
            color: #aab7c9;
            letter-spacing: 0.3px;
            margin-left: 4px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px 18px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #c8d2df;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            background: #f7c94818;
            color: #f7c948;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 5px;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f7c948;
            font-size: 1.9rem;
            cursor: pointer;
            padding: 4px 8px;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        .nav-overlay {
            display: none;
        }
        .breadcrumb {
            background: #151e28;
            padding: 10px 18px;
            border-radius: 10px;
            margin: 14px 0 18px;
            font-size: 0.9rem;
            display: flex;
            flex-wrap: wrap;
            gap: 5px 12px;
            list-style: none;
            border: 1px solid #2a3644;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "▸";
            color: #f7c94888;
            margin-right: 6px;
        }
        .breadcrumb a {
            color: #b0bed0;
        }
        .breadcrumb a:hover {
            color: #f7c948;
        }
        .breadcrumb .current {
            color: #f7c948;
            font-weight: 600;
        }
        .search-wrap {
            background: #151e28;
            border-radius: 12px;
            padding: 20px 22px;
            margin: 20px 0 28px;
            border: 1px solid #2a3644;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .search-wrap i {
            font-size: 1.4rem;
            color: #f7c948;
        }
        .search-wrap form {
            flex: 1;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .search-wrap input[type="text"] {
            flex: 1;
            min-width: 160px;
            padding: 12px 18px;
            border-radius: 8px;
            border: 1px solid #2f3d4e;
            background: #0b0e14;
            color: #e8edf3;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-wrap input[type="text"]:focus {
            border-color: #f7c948;
        }
        .search-wrap button {
            padding: 12px 28px;
            background: #f7c948;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            color: #0b0e14;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
        }
        .search-wrap button:hover {
            background: #ffda6a;
            transform: translateY(-1px);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 28px;
        }
        .featured-img {
            margin: 22px 0 30px;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
            background: #1a2532;
            padding: 8px;
        }
        .featured-img img {
            border-radius: 10px;
            width: 100%;
        }
        .featured-img figcaption {
            text-align: center;
            padding: 10px 0 4px;
            font-size: 0.9rem;
            color: #aab7c9;
            font-style: italic;
        }
        .section-card {
            background: #131c26;
            border-radius: 16px;
            padding: 22px 24px;
            border: 1px solid #283746;
            margin: 22px 0;
            transition: border-color 0.3s;
        }
        .section-card:hover {
            border-color: #f7c94855;
        }
        .section-card h2 {
            margin-top: 0;
        }
        .tip-box {
            background: #1d2a38;
            border-left: 5px solid #f7c948;
            padding: 14px 20px;
            border-radius: 0 12px 12px 0;
            margin: 18px 0;
        }
        .tip-box i {
            color: #f7c948;
            margin-right: 8px;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 14px;
            margin: 16px 0;
        }
        .stat-item {
            background: #0f1620;
            padding: 14px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid #25323f;
        }
        .stat-item .num {
            font-size: 1.7rem;
            font-weight: 800;
            color: #f7c948;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: #9aabc0;
        }
        .rating-area {
            background: #131c26;
            border-radius: 16px;
            padding: 22px 24px;
            border: 1px solid #283746;
            margin: 28px 0;
        }
        .rating-area h3 {
            margin-top: 0;
        }
        .stars {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            cursor: pointer;
            margin: 10px 0 14px;
            flex-wrap: wrap;
        }
        .stars i {
            color: #3a4a5a;
            transition: color 0.2s, transform 0.15s;
        }
        .stars i.active,
        .stars i:hover {
            color: #f7c948;
            transform: scale(1.1);
        }
        .stars i:hover~i {
            color: #3a4a5a;
        }
        .rating-area form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            margin-top: 6px;
        }
        .rating-area input[type="number"] {
            width: 70px;
            padding: 8px 12px;
            border-radius: 6px;
            border: 1px solid #2f3d4e;
            background: #0b0e14;
            color: #e8edf3;
            font-size: 1rem;
        }
        .rating-area button {
            padding: 10px 24px;
            background: #f7c948;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            color: #0b0e14;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-area button:hover {
            background: #ffda6a;
        }
        .comment-section {
            background: #131c26;
            border-radius: 16px;
            padding: 22px 24px;
            border: 1px solid #283746;
            margin: 28px 0;
        }
        .comment-section h3 {
            margin-top: 0;
        }
        .comment-section textarea {
            width: 100%;
            min-height: 100px;
            padding: 14px 18px;
            border-radius: 8px;
            border: 1px solid #2f3d4e;
            background: #0b0e14;
            color: #e8edf3;
            font-size: 1rem;
            resize: vertical;
            outline: none;
            transition: border 0.3s;
            font-family: inherit;
        }
        .comment-section textarea:focus {
            border-color: #f7c948;
        }
        .comment-section form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 10px;
        }
        .comment-section .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .comment-section .form-row input {
            flex: 1;
            min-width: 140px;
            padding: 10px 16px;
            border-radius: 6px;
            border: 1px solid #2f3d4e;
            background: #0b0e14;
            color: #e8edf3;
            font-size: 1rem;
            outline: none;
        }
        .comment-section .form-row input:focus {
            border-color: #f7c948;
        }
        .comment-section button {
            align-self: flex-start;
            padding: 12px 32px;
            background: #f7c948;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            color: #0b0e14;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-section button:hover {
            background: #ffda6a;
        }
        .comment-list {
            margin-top: 18px;
            max-height: 320px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .comment-item {
            background: #1a2532;
            padding: 14px 18px;
            border-radius: 10px;
            border-left: 3px solid #f7c948;
        }
        .comment-item .meta {
            font-size: 0.85rem;
            color: #9aabc0;
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .comment-item .meta strong {
            color: #f7d44a;
        }
        friend-link {
            display: block;
            background: #151e28;
            border-radius: 14px;
            padding: 18px 22px;
            border: 1px solid #283746;
            margin: 28px 0 14px;
        }
        friend-link a {
            display: inline-block;
            padding: 4px 10px;
            margin: 3px 4px;
            background: #1d2a38;
            border-radius: 6px;
            font-size: 0.95rem;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #f7c94822;
            text-decoration: none;
        }
        .site-footer {
            background: #0c111a;
            border-top: 2px solid #f7c94822;
            padding: 28px 0 18px;
            margin-top: 40px;
            text-align: center;
            font-size: 0.9rem;
            color: #8a9bb0;
        }
        .site-footer .copyright {
            margin-top: 12px;
            font-size: 0.85rem;
            color: #6a7e96;
        }
        .site-footer .copyright strong {
            color: #b0c4d6;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #131a24;
                padding: 14px 10px;
                border-radius: 12px;
                border: 1px solid #283746;
                margin-top: 6px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .nav-overlay {
                display: none;
            }
            .section-card {
                padding: 16px 14px;
            }
            .rating-area,
            .comment-section,
            .search-wrap {
                padding: 16px 14px;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 8px 12px;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .search-wrap form {
                flex-direction: column;
            }
            .search-wrap button {
                width: 100%;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .stat-item .num {
                font-size: 1.3rem;
            }
            .stars {
                font-size: 1.6rem;
            }
            .comment-section .form-row {
                flex-direction: column;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0e14;
        }
        ::-webkit-scrollbar-thumb {
            background: #f7c94844;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f7c94877;
        }
        @media print {
            .site-header,
            .search-wrap,
            .rating-area,
            .comment-section,
            .hamburger,
            .main-nav {
                display: none !important;
            }
            body {
                background: #fff;
                color: #222;
            }
            .container {
                max-width: 100%;
            }
            a {
                color: #0055aa;
            }
        }
        .last-updated {
            font-size: 0.9rem;
            color: #9aabc0;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            margin: 6px 0 14px;
        }
        .last-updated i {
            color: #f7c948;
        }
        .badge {
            display: inline-block;
            background: #f7c948;
            color: #0b0e14;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.3px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 16px 0;
        }
        .table-wrap table {
            width: 100%;
            border-collapse: collapse;
            background: #0f1620;
            border-radius: 10px;
            overflow: hidden;
            font-size: 0.95rem;
        }
        .table-wrap th,
        .table-wrap td {
            padding: 10px 14px;
            text-align: left;
            border-bottom: 1px solid #25323f;
        }
        .table-wrap th {
            background: #1d2a38;
            color: #f7c948;
            font-weight: 600;
        }
        .table-wrap tr:hover td {
            background: #1a253211;
        }
