        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0d0d0f;
            color: #e8e8ec;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        ul,
        ol {
            list-style: none;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a1e;
        }
        ::-webkit-scrollbar-thumb {
            background: #f5c518;
            border-radius: 4px;
        }
        header {
            background: linear-gradient(135deg, #0a0a0c 0%, #1a1a24 100%);
            border-bottom: 2px solid #f5c518;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5c518, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 12px rgba(245, 197, 24, 0.25);
            transition: transform 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: #f5c518;
            font-size: 1.6rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f5c518;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(245, 197, 24, 0.1);
        }
        nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        nav a {
            padding: 6px 14px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.85rem;
            color: #c0c0cc;
            transition: all 0.25s;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }
        nav a:hover,
        nav a.active {
            background: rgba(245, 197, 24, 0.15);
            color: #f5c518;
        }
        nav a i {
            margin-right: 5px;
            font-size: 0.8rem;
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.8rem;
            color: #888;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #f5c518;
            font-weight: 500;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #aaa;
        }
        .hero {
            padding: 40px 0 30px;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, rgba(245, 197, 24, 0.06) 0%, transparent 70%);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.15;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #fff 30%, #f5c518 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }
        .hero p {
            max-width: 760px;
            margin: 0 auto 20px;
            font-size: 1.1rem;
            color: #b0b0be;
        }
        .hero .last-updated {
            font-size: 0.8rem;
            color: #777;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }
        .hero .last-updated i {
            color: #f5c518;
        }
        .search-wrap {
            max-width: 520px;
            margin: 24px auto 0;
            display: flex;
            border-radius: 40px;
            overflow: hidden;
            border: 1px solid rgba(245, 197, 24, 0.25);
            background: #18181e;
            transition: border-color 0.3s;
        }
        .search-wrap:focus-within {
            border-color: #f5c518;
            box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.1);
        }
        .search-wrap input {
            flex: 1;
            padding: 14px 20px;
            border: none;
            background: transparent;
            color: #e8e8ec;
            font-size: 0.95rem;
            outline: none;
        }
        .search-wrap input::placeholder {
            color: #666;
        }
        .search-wrap button {
            background: #f5c518;
            border: none;
            padding: 0 24px;
            color: #0d0d0f;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-wrap button:hover {
            background: #ffd84d;
        }
        section {
            padding: 40px 0;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: #fff;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: #f5c518;
            margin-top: 6px;
            border-radius: 4px;
        }
        .section-subtitle {
            font-size: 1.1rem;
            color: #999;
            margin-bottom: 32px;
            max-width: 700px;
        }
        .content-grid {
            display: grid;
            gap: 40px;
        }
        .content-grid.two-col {
            grid-template-columns: 1fr 1fr;
        }
        @media (max-width: 768px) {
            .content-grid.two-col {
                grid-template-columns: 1fr;
            }
        }
        .card {
            background: #18181e;
            border-radius: 16px;
            padding: 28px 24px;
            border: 1px solid #24242c;
            transition: border-color 0.3s, transform 0.2s;
        }
        .card:hover {
            border-color: rgba(245, 197, 24, 0.3);
            transform: translateY(-2px);
        }
        .card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #f5c518;
            margin-bottom: 10px;
        }
        .card h4 {
            font-size: 1.05rem;
            font-weight: 600;
            color: #ddd;
            margin: 16px 0 8px;
        }
        .card p {
            color: #b5b5c2;
            margin-bottom: 10px;
        }
        .card ul {
            padding-left: 20px;
            list-style: disc;
            color: #b5b5c2;
        }
        .card ul li {
            margin-bottom: 6px;
        }
        .card ul li strong {
            color: #e8e8ec;
        }
        .image-wrap {
            margin: 28px 0;
            border-radius: 12px;
            overflow: hidden;
            background: #18181e;
            border: 1px solid #24242c;
        }
        .image-wrap img {
            width: 100%;
            object-fit: cover;
        }
        .image-wrap figcaption {
            padding: 10px 16px;
            font-size: 0.8rem;
            color: #888;
            background: #121216;
        }
        .links-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            margin: 16px 0;
        }
        .links-list a {
            color: #f5c518;
            font-weight: 500;
            font-size: 0.9rem;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .links-list a:hover {
            border-bottom-color: #f5c518;
        }
        .links-list a i {
            font-size: 0.7rem;
        }
        .rating-area,
        .comment-area {
            background: #18181e;
            border-radius: 16px;
            padding: 28px 24px;
            border: 1px solid #24242c;
            margin-top: 32px;
        }
        .rating-area h3,
        .comment-area h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .rating-area h3 i,
        .comment-area h3 i {
            color: #f5c518;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            margin-bottom: 16px;
        }
        .star-rating i {
            transition: color 0.2s, transform 0.15s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f5c518;
            transform: scale(1.1);
        }
        .rating-area form,
        .comment-area form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .rating-area form input,
        .rating-area form textarea,
        .comment-area form input,
        .comment-area form textarea {
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid #2a2a34;
            background: #121216;
            color: #e8e8ec;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
            resize: vertical;
            font-family: inherit;
        }
        .rating-area form input:focus,
        .rating-area form textarea:focus,
        .comment-area form input:focus,
        .comment-area form textarea:focus {
            border-color: #f5c518;
        }
        .rating-area form button,
        .comment-area form button {
            align-self: flex-start;
            padding: 10px 28px;
            border: none;
            border-radius: 30px;
            background: #f5c518;
            color: #0d0d0f;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .rating-area form button:hover,
        .comment-area form button:hover {
            background: #ffd84d;
            transform: scale(1.02);
        }
        footer {
            background: #0a0a0c;
            border-top: 2px solid #1a1a24;
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 28px;
        }
        @media (max-width: 768px) {
            footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        footer h4 {
            color: #f5c518;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        footer p,
        footer a {
            color: #999;
            font-size: 0.88rem;
        }
        footer a:hover {
            color: #f5c518;
        }
        footer .friend-link {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        footer .friend-link a {
            padding: 4px 0;
            border-bottom: 1px solid #1a1a24;
        }
        .copyright {
            border-top: 1px solid #1a1a24;
            padding-top: 20px;
            text-align: center;
            font-size: 0.8rem;
            color: #666;
        }
        .copyright strong {
            color: #888;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 4px;
                padding: 12px 0 4px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 16px;
                border-radius: 8px;
                font-size: 0.95rem;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .hero p {
                font-size: 0.95rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 16px;
            }
            .header-inner {
                gap: 8px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-wrap {
                flex-direction: column;
                border-radius: 16px;
            }
            .search-wrap button {
                padding: 12px;
                justify-content: center;
            }
            .rating-area,
            .comment-area {
                padding: 20px 16px;
            }
        }
        @media (min-width: 769px) {
            nav {
                display: flex !important;
            }
        }
        .highlight {
            color: #f5c518;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.8rem;
            display: inline-block;
            margin-right: 6px;
        }
        .divider {
            height: 1px;
            background: linear-gradient(to right, transparent, #24242c, transparent);
            margin: 32px 0;
        }
        .tag {
            display: inline-block;
            padding: 2px 12px;
            border-radius: 30px;
            background: rgba(245, 197, 24, 0.12);
            color: #f5c518;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .text-center {
            text-align: center;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 16px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        table th {
            background: #f5c518;
            color: #0d0d0f;
            padding: 10px 14px;
            text-align: left;
            font-weight: 700;
        }
        table td {
            padding: 10px 14px;
            border-bottom: 1px solid #24242c;
            color: #b5b5c2;
        }
        table tr:hover td {
            background: rgba(245, 197, 24, 0.03);
        }
