        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b0e1a;
            color: #e6e9f0;
            line-height: 1.8;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus {
            color: #ffdd77;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: 0.01em;
            color: #f0f3fc;
        }
        h1 {
            font-size: 2.6rem;
            margin-bottom: 0.75rem;
            background: linear-gradient(135deg, #f5c542, #f0a832);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 1.9rem;
            margin-top: 2.8rem;
            margin-bottom: 1.2rem;
            border-left: 6px solid #f5c542;
            padding-left: 18px;
            color: #f5c542;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
            color: #d4e0ff;
        }
        h4 {
            font-size: 1.15rem;
            margin-top: 1.4rem;
            margin-bottom: 0.5rem;
            color: #b8c8f0;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d4d9ea;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .site-header {
            background: linear-gradient(145deg, #0f1425, #1a1f35);
            padding: 18px 0;
            border-bottom: 2px solid #2a3250;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5c542, #e8b030);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-shadow: 0 0 20px rgba(245, 197, 66, 0.15);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5c542;
            color: #f5c542;
            font-size: 2rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #f5c542;
            cursor: pointer;
            padding: 4px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(245, 197, 66, 0.12);
        }
        .nav-menu {
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
            align-items: center;
            list-style: none;
        }
        .nav-menu li a {
            color: #c8d0e8;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 8px;
            transition: background 0.25s, color 0.25s;
            font-size: 0.95rem;
        }
        .nav-menu li a:hover {
            background: rgba(245, 197, 66, 0.12);
            color: #f5c542;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: #8892b0;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb a {
            color: #8892b0;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb span {
            color: #5a6480;
        }
        .hero-image {
            margin: 24px 0 32px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
            background: #141a2e;
        }
        .hero-image img {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
            transition: transform 0.4s;
        }
        .hero-image img:hover {
            transform: scale(1.01);
        }
        .content-section {
            background: #11172b;
            border-radius: 20px;
            padding: 28px 32px;
            margin: 32px 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            border: 1px solid #1e2642;
        }
        .content-section p {
            margin-bottom: 1.2rem;
        }
        .content-section ul,
        .content-section ol {
            margin-left: 24px;
            margin-bottom: 1.2rem;
            color: #c8d0e8;
        }
        .content-section li {
            margin-bottom: 0.5rem;
        }
        .highlight-box {
            background: #1a2140;
            border-left: 5px solid #f5c542;
            padding: 18px 24px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
        .highlight-box strong {
            color: #f5c542;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            background: #0d1225;
            padding: 18px 22px;
            border-radius: 14px;
            border: 1px solid #2a3250;
            margin: 20px 0;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 14px 18px;
            border-radius: 10px;
            border: 1px solid #2a3a5a;
            background: #0b0f1f;
            color: #e6e9f0;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5c542;
        }
        .search-form button {
            padding: 14px 28px;
            background: #f5c542;
            color: #0b0e1a;
            font-weight: 700;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .comment-box,
        .rating-box {
            background: #0d1225;
            padding: 22px 24px;
            border-radius: 14px;
            border: 1px solid #2a3250;
            margin: 20px 0;
        }
        .comment-box textarea {
            width: 100%;
            padding: 14px 18px;
            border-radius: 10px;
            border: 1px solid #2a3a5a;
            background: #090d1a;
            color: #e6e9f0;
            font-size: 1rem;
            min-height: 100px;
            resize: vertical;
            outline: none;
            transition: border 0.3s;
            font-family: inherit;
        }
        .comment-box textarea:focus {
            border-color: #f5c542;
        }
        .comment-box button,
        .rating-box button {
            padding: 12px 28px;
            background: #f5c542;
            color: #0b0e1a;
            font-weight: 700;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s, transform 0.15s;
            margin-top: 12px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-box button:hover,
        .rating-box button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .star-group {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #3a4a6a;
            cursor: pointer;
            margin: 8px 0;
            flex-wrap: wrap;
        }
        .star-group .star {
            transition: color 0.2s, transform 0.15s;
        }
        .star-group .star:hover,
        .star-group .star.active {
            color: #f5c542;
            transform: scale(1.1);
        }
        .site-footer {
            background: #0a0e1e;
            border-top: 2px solid #1e2642;
            padding: 40px 0 30px;
            margin-top: 48px;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 30px 50px;
            justify-content: space-between;
        }
        .footer-inner friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
        }
        .footer-inner friend-link a {
            color: #8892b0;
            font-size: 0.95rem;
            padding: 4px 0;
            border-bottom: 1px solid transparent;
            transition: color 0.25s, border-color 0.25s;
        }
        .footer-inner friend-link a:hover {
            color: #f5c542;
            border-bottom-color: #f5c542;
            text-decoration: none;
        }
        .copyright {
            width: 100%;
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #1a2140;
            color: #5a6480;
            font-size: 0.9rem;
        }
        .copyright strong {
            color: #8892b0;
        }
        .last-updated {
            text-align: right;
            font-size: 0.85rem;
            color: #5a6480;
            margin-top: 20px;
            padding-top: 16px;
            border-top: 1px solid #1a2140;
        }
        .last-updated i {
            margin-right: 6px;
        }
        @media (max-width: 860px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 12px 0 6px;
                gap: 6px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                display: block;
                padding: 10px 16px;
                width: 100%;
                border-radius: 8px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .content-section {
                padding: 18px 16px;
            }
            .container {
                padding: 0 14px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input[type="text"] {
                min-width: auto;
            }
            .footer-inner {
                flex-direction: column;
                gap: 18px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
            .star-group {
                font-size: 1.4rem;
            }
            .content-section {
                padding: 14px 12px;
            }
            .highlight-box {
                padding: 12px 14px;
            }
        }
        .fa-ul {
            list-style: none;
            margin-left: 0 !important;
        }
        .fa-ul li {
            padding-left: 28px;
            position: relative;
        }
        .fa-ul li i {
            position: absolute;
            left: 0;
            top: 4px;
            color: #f5c542;
        }
        .tag {
            display: inline-block;
            background: #1e2642;
            padding: 2px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #8892b0;
            margin-right: 6px;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f5c542;
            color: #f5c542;
            padding: 10px 24px;
            border-radius: 10px;
            font-weight: 600;
            transition: background 0.3s, color 0.3s;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-outline:hover {
            background: #f5c542;
            color: #0b0e1a;
            text-decoration: none;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        @media (max-width: 640px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #0d1225;
            border-radius: 12px;
            overflow: hidden;
            font-size: 0.95rem;
        }
        table th {
            background: #1a2140;
            color: #f5c542;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        table td {
            padding: 10px 16px;
            border-top: 1px solid #1a2140;
            color: #c8d0e8;
        }
        table tr:hover td {
            background: rgba(245, 197, 66, 0.04);
        }
