        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #0d0f14;
            color: #e8edf5;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #6eb5ff;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #a8d4ff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(145deg, #141820 0%, #1a1f2b 100%);
            border-bottom: 2px solid #2a3344;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f7c948, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            background: none;
            -webkit-text-fill-color: #f7c948;
            font-size: 2rem;
        }
        .my-logo:hover {
            opacity: 0.88;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #9aa9c0;
            display: block;
            letter-spacing: 0.3px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: #c8d2e0;
            border-radius: 8px;
            transition: all 0.25s ease;
            position: relative;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.4rem;
            font-size: 0.85rem;
            color: #f7c948;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.06);
        }
        .hamburger span {
            display: block;
            width: 26px;
            height: 3px;
            background: #e8edf5;
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        .breadcrumb {
            background: #1a1f2b;
            padding: 0.7rem 0;
            border-bottom: 1px solid #2a3344;
            font-size: 0.85rem;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            gap: 0.4rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "▸";
            color: #6a7a94;
            margin-right: 0.6rem;
        }
        .breadcrumb a {
            color: #8a9bb5;
        }
        .breadcrumb a:hover {
            color: #f7c948;
        }
        .breadcrumb .current {
            color: #e8edf5;
            font-weight: 500;
        }
        .hero {
            padding: 2.5rem 0 2rem;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, #1f2a3a 0%, #0d0f14 70%);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            max-width: 960px;
            margin: 0 auto 0.8rem;
            background: linear-gradient(135deg, #f7c948, #f59e0b, #f7c948);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero .subtitle {
            font-size: 1.15rem;
            color: #9aa9c0;
            max-width: 720px;
            margin: 0 auto 1.2rem;
        }
        .hero .meta-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.8rem 2rem;
            font-size: 0.9rem;
            color: #7a8aa5;
        }
        .hero .meta-info i {
            color: #f7c948;
            margin-right: 0.4rem;
        }
        .content-wrapper {
            padding: 2rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 90px;
            align-self: start;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 2.8rem 0 1.2rem;
            color: #f7c948;
            border-bottom: 2px solid #2a3344;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 2rem 0 0.8rem;
            color: #d4e0f0;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.5rem 0 0.6rem;
            color: #b0c4db;
        }
        p {
            margin-bottom: 1.2rem;
            color: #dce3ef;
        }
        .highlight {
            background: rgba(247, 201, 72, 0.08);
            border-left: 4px solid #f7c948;
            padding: 0.8rem 1.2rem;
            border-radius: 0 8px 8px 0;
            margin: 1.2rem 0;
        }
        .highlight strong {
            color: #f7c948;
        }
        .emoji-big {
            font-size: 1.3rem;
            margin-right: 0.3rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
            background: #1a1f2b;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            min-height: 240px;
            background: linear-gradient(135deg, #1f2a3a, #2a3344);
        }
        .featured-image .img-caption {
            padding: 0.8rem 1.2rem;
            font-size: 0.85rem;
            color: #8a9bb5;
            background: #141820;
        }
        .sidebar-box {
            background: #161c27;
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid #2a3344;
            margin-bottom: 1.5rem;
        }
        .sidebar-box h3 {
            font-size: 1.1rem;
            margin-top: 0;
            margin-bottom: 1rem;
            color: #f7c948;
            border-bottom: 1px solid #2a3344;
            padding-bottom: 0.5rem;
        }
        .sidebar-box ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-box ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #1f2635;
        }
        .sidebar-box ul li a {
            font-size: 0.9rem;
            color: #b0c4db;
            display: block;
            transition: all 0.2s;
        }
        .sidebar-box ul li a:hover {
            color: #f7c948;
            padding-left: 4px;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.2rem 0;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.7rem 1rem;
            border-radius: 10px;
            border: 1px solid #2a3344;
            background: #1a1f2b;
            color: #e8edf5;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f7c948;
        }
        .search-form button {
            padding: 0.7rem 1.2rem;
            background: #f7c948;
            border: none;
            border-radius: 10px;
            color: #0d0f14;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s;
        }
        .search-form button:hover {
            background: #f59e0b;
            transform: scale(1.02);
        }
        .comment-box,
        .rating-box {
            background: #161c27;
            border-radius: 16px;
            padding: 1.5rem 2rem;
            border: 1px solid #2a3344;
            margin: 2.5rem 0 1.5rem;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            color: #f7c948;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 10px;
            border: 1px solid #2a3344;
            background: #1a1f2b;
            color: #e8edf5;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
            margin-bottom: 0.8rem;
            font-family: inherit;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #f7c948;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            padding: 0.7rem 2rem;
            background: #f7c948;
            border: none;
            border-radius: 10px;
            color: #0d0f14;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s;
            font-size: 0.95rem;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #f59e0b;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #4a5568;
            cursor: pointer;
            margin: 0.6rem 0 1rem;
        }
        .rating-stars i {
            transition: color 0.2s;
        }
        .rating-stars i.active,
        .rating-stars i:hover {
            color: #f7c948;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .data-table th {
            background: #1f2a3a;
            color: #f7c948;
            text-align: left;
            padding: 0.7rem 1rem;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #1f2635;
        }
        .data-table tr:hover td {
            background: rgba(255, 255, 255, 0.02);
        }
        .site-footer {
            background: #0a0c10;
            border-top: 2px solid #1f2635;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-col h4 {
            color: #f7c948;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            border-bottom: 1px solid #1f2635;
            padding-bottom: 0.4rem;
        }
        .footer-col a {
            display: block;
            padding: 0.2rem 0;
            font-size: 0.9rem;
            color: #8a9bb5;
        }
        .footer-col a:hover {
            color: #f7c948;
        }
        .friend-link {
            display: block;
            padding: 0.3rem 0;
            font-size: 0.9rem;
            color: #8a9bb5;
        }
        .friend-link a {
            color: #b0c4db;
        }
        .friend-link a:hover {
            color: #f7c948;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #1f2635;
            font-size: 0.85rem;
            color: #5a6a85;
        }
        .copyright strong {
            color: #8a9bb5;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #141820;
                padding: 1rem 0.5rem;
                border-radius: 12px;
                border: 1px solid #2a3344;
                margin-top: 0.5rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1rem;
                width: 100%;
                border-radius: 6px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero .subtitle {
                font-size: 1rem;
            }
            .container {
                padding: 0 0.9rem;
            }
            .comment-box,
            .rating-box {
                padding: 1.2rem;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0f14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a3344;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3d4a5e;
        }
        .text-gold {
            color: #f7c948;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
