        *,
        *::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: #0b0f1a;
            color: #e4e9f0;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f0c27f;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ffdba0;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5f0e8;
            letter-spacing: 0.01em;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1.2rem;
            border-left: 6px solid #f0c27f;
            padding-left: 1.2rem;
        }
        h2 {
            font-size: 1.9rem;
            margin: 2.4rem 0 1rem 0;
            border-bottom: 2px solid #2a3142;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.4rem;
            margin: 1.8rem 0 0.8rem 0;
            color: #f0dbb8;
        }
        h4 {
            font-size: 1.15rem;
            margin: 1.2rem 0 0.5rem 0;
            color: #e0cdb0;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #d5dce8;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.2rem 2rem;
            color: #d5dce8;
        }
        li {
            margin-bottom: 0.4rem;
        }
        strong {
            color: #f5e6d0;
            font-weight: 700;
        }
        em {
            color: #f0c27f;
        }
        hr {
            border: none;
            border-top: 1px solid #2a3142;
            margin: 2.4rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .wrapper {
            flex: 1;
            padding: 2rem 0 3rem 0;
        }
        .site-header {
            background: #131a28;
            border-bottom: 2px solid #1f2a3f;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            background: rgba(13, 19, 33, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0c27f, #e8a84c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            font-size: 1.6rem;
            -webkit-text-fill-color: #f0c27f;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #c8d0de;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            background: #1f2a3f;
            color: #f0c27f;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e4e9f0;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #1f2a3f;
        }
        .nav-toggle .fa-times {
            display: none;
        }
        .nav-toggle.active .fa-bars {
            display: none;
        }
        .nav-toggle.active .fa-times {
            display: inline;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            font-size: 0.85rem;
            color: #8896b0;
            padding: 0.8rem 0 0.2rem 0;
            list-style: none;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #556;
            font-size: 1.1rem;
        }
        .breadcrumb a {
            color: #a0b0cc;
        }
        .breadcrumb a:hover {
            color: #f0c27f;
        }
        .breadcrumb .current {
            color: #f0c27f;
            font-weight: 500;
        }
        .search-box {
            display: flex;
            gap: 0.5rem;
            max-width: 480px;
            margin: 1.2rem 0 1.8rem 0;
            background: #1a2233;
            border-radius: 40px;
            padding: 0.3rem 0.3rem 0.3rem 1.2rem;
            border: 1px solid #2a3650;
            transition: border 0.2s;
        }
        .search-box:focus-within {
            border-color: #f0c27f;
        }
        .search-box input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 0.7rem 0;
            font-size: 1rem;
            color: #e4e9f0;
            outline: none;
            min-width: 0;
        }
        .search-box input::placeholder {
            color: #6a7a96;
        }
        .search-box button {
            background: #f0c27f;
            border: none;
            border-radius: 40px;
            padding: 0.6rem 1.4rem;
            font-weight: 600;
            color: #0b0f1a;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.95rem;
        }
        .search-box button:hover {
            background: #ffdba0;
            transform: scale(1.02);
        }
        .search-box button i {
            font-size: 0.9rem;
        }
        .content-area {
            background: #111927;
            border-radius: 20px;
            padding: 2.2rem 2rem;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            border: 1px solid #1f2a3f;
        }
        .featured-image-wrapper {
            margin: 1.2rem 0 2rem 0;
            border-radius: 14px;
            overflow: hidden;
            background: #1a2233;
            padding: 0.6rem;
        }
        .featured-image-wrapper img {
            width: 100%;
            border-radius: 10px;
        }
        .image-caption {
            font-size: 0.85rem;
            color: #8896b0;
            margin-top: 0.4rem;
            text-align: center;
        }
        .rating-section {
            background: #0f1625;
            border-radius: 16px;
            padding: 1.6rem 2rem;
            margin: 2rem 0 1.6rem 0;
            border: 1px solid #1f2a3f;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.5rem 2.5rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.2rem;
            font-size: 1.8rem;
            cursor: pointer;
            color: #3a4560;
            transition: color 0.15s;
        }
        .rating-stars i.active {
            color: #f0c27f;
        }
        .rating-stars i:hover,
        .rating-stars i.hover {
            color: #f0c27f;
        }
        .rating-info {
            font-size: 0.95rem;
            color: #a0b0cc;
        }
        .rating-info strong {
            color: #f0c27f;
            font-size: 1.4rem;
        }
        .rating-form {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .rating-form button {
            background: #f0c27f;
            border: none;
            border-radius: 30px;
            padding: 0.5rem 1.6rem;
            font-weight: 600;
            color: #0b0f1a;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 0.9rem;
        }
        .rating-form button:hover {
            background: #ffdba0;
        }
        .comments-section {
            margin-top: 2.4rem;
            padding-top: 1.8rem;
            border-top: 2px solid #1f2a3f;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin: 1rem 0 2rem 0;
            background: #0f1625;
            padding: 1.6rem;
            border-radius: 16px;
            border: 1px solid #1f2a3f;
        }
        .comment-form input,
        .comment-form textarea {
            background: #1a2233;
            border: 1px solid #2a3650;
            border-radius: 10px;
            padding: 0.8rem 1.2rem;
            font-size: 1rem;
            color: #e4e9f0;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #f0c27f;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button {
            align-self: flex-start;
            background: #f0c27f;
            border: none;
            border-radius: 30px;
            padding: 0.7rem 2rem;
            font-weight: 600;
            color: #0b0f1a;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 1rem;
        }
        .comment-form button:hover {
            background: #ffdba0;
        }
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.2rem;
        }
        .comment-item {
            background: #0f1625;
            padding: 1rem 1.4rem;
            border-radius: 12px;
            border-left: 4px solid #f0c27f;
        }
        .comment-item .meta {
            font-size: 0.8rem;
            color: #6a7a96;
            display: flex;
            gap: 1rem;
            margin-bottom: 0.4rem;
        }
        .comment-item .name {
            font-weight: 600;
            color: #f0dbb8;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.6rem 0;
            font-size: 0.95rem;
            background: #0f1625;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #1f2a3f;
        }
        .data-table th {
            background: #1a2438;
            color: #f0dbb8;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-top: 1px solid #1f2a3f;
            color: #c8d0de;
        }
        .data-table tr:hover td {
            background: #151e30;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0;
            margin-top: 1.2rem;
            border-top: 2px solid #1f2a3f;
            font-style: normal;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
            padding: 0.3rem 0.8rem;
            background: #1a2233;
            border-radius: 20px;
            font-size: 0.9rem;
            color: #c8d0de;
            transition: background 0.2s, color 0.2s;
        }
        friend-link a:hover {
            background: #f0c27f;
            color: #0b0f1a;
            text-decoration: none;
        }
        friend-link .label {
            font-weight: 600;
            color: #8896b0;
            margin-right: 0.6rem;
            font-size: 0.9rem;
        }
        .site-footer {
            background: #0a0f1a;
            border-top: 2px solid #1a2233;
            padding: 2rem 0;
            text-align: center;
            font-size: 0.9rem;
            color: #6a7a96;
        }
        .site-footer .copyright {
            margin-top: 0.6rem;
        }
        .site-footer a {
            color: #a0b0cc;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #6a7a96;
            text-align: right;
            margin-top: 1.6rem;
            padding-top: 0.8rem;
            border-top: 1px solid #1f2a3f;
        }
        @media (max-width: 820px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0.3rem;
                padding: 1rem 0 0.4rem 0;
                border-top: 1px solid #1f2a3f;
                margin-top: 0.4rem;
            }
            .main-nav.open {
                display: flex;
            }
            .nav-toggle {
                display: block;
            }
            .content-area {
                padding: 1.6rem 1rem;
            }
            h1 {
                font-size: 1.8rem;
                padding-left: 0.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .rating-section {
                flex-direction: column;
                align-items: stretch;
                padding: 1.2rem;
            }
            .search-box {
                flex-wrap: wrap;
                border-radius: 24px;
                padding: 0.3rem;
            }
            .search-box input {
                padding: 0.5rem 0.8rem;
                font-size: 0.95rem;
            }
            .search-box button {
                padding: 0.5rem 1rem;
                font-size: 0.85rem;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .content-area {
                padding: 1.2rem 0.8rem;
                border-radius: 12px;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.05rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
            .comment-form {
                padding: 1rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .featured-image-wrapper {
                padding: 0.3rem;
            }
        }
        .fade-in {
            animation: fadeUp 0.5s ease forwards;
        }
        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(14px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #f0c27f;
            color: #0b0f1a;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            border: none;
            opacity: 0;
            transition: opacity 0.3s, transform 0.2s;
            pointer-events: none;
            z-index: 50;
            box-shadow: 0 4px 16px rgba(240, 194, 127, 0.3);
        }
        .scroll-top.visible {
            opacity: 1;
            pointer-events: auto;
        }
        .scroll-top:hover {
            transform: scale(1.08);
        }
        @media (max-width: 480px) {
            .scroll-top {
                bottom: 1.2rem;
                right: 1.2rem;
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
        }
        .toast {
            position: fixed;
            top: 1.5rem;
            left: 50%;
            transform: translateX(-50%) translateY(-20px);
            background: #1a2a3a;
            color: #e4e9f0;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            border: 1px solid #f0c27f;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            opacity: 0;
            transition: opacity 0.3s, transform 0.3s;
            z-index: 200;
            font-size: 0.95rem;
            pointer-events: none;
            backdrop-filter: blur(8px);
        }
        .toast.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
            pointer-events: auto;
        }
        .toast i {
            margin-right: 0.6rem;
            color: #f0c27f;
        }
