        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0d0d1a;
            color: #e8e8f0;
            line-height: 1.75;
            overflow-x: hidden;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        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(135deg, #0f0f2a 0%, #1a1a3e 100%);
            border-bottom: 3px solid #f0c040;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(240, 192, 64, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f0c040, #ffd966, #f0a500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(240, 192, 64, 0.3);
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            display: block;
            font-weight: 400;
            letter-spacing: 1px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #ddd;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: rgba(240, 192, 64, 0.15);
            color: #f0c040;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 0.3rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #f0c040;
            color: #f0c040;
            font-size: 1.5rem;
            padding: 0.3rem 0.7rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .hamburger:hover {
            background: rgba(240, 192, 64, 0.15);
        }
        .nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.04);
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(240, 192, 64, 0.1);
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            gap: 0.3rem 0.6rem;
            font-size: 0.85rem;
            color: #aaa;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #f0c040;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb .current {
            color: #f0c040;
            font-weight: 600;
        }
        .hero {
            padding: 2.5rem 0 1.8rem;
            text-align: center;
            background: radial-gradient(ellipse at center, rgba(240, 192, 64, 0.06) 0%, transparent 70%);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #f0c040, #ffd966, #f0a500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 0.6rem;
        }
        .hero p {
            font-size: 1.15rem;
            color: #bbb;
            max-width: 780px;
            margin: 0 auto 1rem;
        }
        .hero .badge {
            display: inline-block;
            background: rgba(240, 192, 64, 0.15);
            color: #f0c040;
            padding: 0.25rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            border: 1px solid rgba(240, 192, 64, 0.25);
        }
        section {
            padding: 2.2rem 0;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 800;
            color: #f0c040;
            margin-bottom: 1.2rem;
            border-left: 5px solid #f0c040;
            padding-left: 1rem;
        }
        .section-subtitle {
            font-size: 1.4rem;
            font-weight: 700;
            color: #ffd966;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        .section-subtitle-h4 {
            font-size: 1.15rem;
            font-weight: 700;
            color: #f0e6c0;
            margin-top: 1.2rem;
            margin-bottom: 0.4rem;
        }
        .content-card {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin-bottom: 1.6rem;
            border: 1px solid rgba(240, 192, 64, 0.08);
            transition: border-color 0.3s ease;
        }
        .content-card:hover {
            border-color: rgba(240, 192, 64, 0.2);
        }
        .content-card p {
            margin-bottom: 1rem;
        }
        .content-card p:last-child {
            margin-bottom: 0;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.2rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .search-box {
            display: flex;
            gap: 0.5rem;
            max-width: 600px;
            margin: 1.2rem auto;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1;
            min-width: 200px;
            padding: 0.8rem 1.2rem;
            border-radius: 50px;
            border: 2px solid rgba(240, 192, 64, 0.3);
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s ease;
        }
        .search-box input:focus {
            border-color: #f0c040;
        }
        .search-box input::placeholder {
            color: #888;
        }
        .search-box button {
            padding: 0.8rem 2rem;
            border-radius: 50px;
            border: none;
            background: linear-gradient(135deg, #f0c040, #d4a020);
            color: #0d0d1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.25s ease, box-shadow 0.3s ease;
        }
        .search-box button:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 25px rgba(240, 192, 64, 0.35);
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            max-width: 650px;
            margin: 1rem 0;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form select,
        .rating-form input {
            padding: 0.7rem 1rem;
            border-radius: 10px;
            border: 2px solid rgba(240, 192, 64, 0.2);
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s ease;
            font-family: inherit;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form select:focus,
        .rating-form input:focus {
            border-color: #f0c040;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            align-self: flex-start;
            padding: 0.7rem 2rem;
            border-radius: 50px;
            border: none;
            background: linear-gradient(135deg, #f0c040, #d4a020);
            color: #0d0d1a;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: transform 0.25s ease, box-shadow 0.3s ease;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 25px rgba(240, 192, 64, 0.3);
        }
        .rating-stars {
            display: flex;
            gap: 0.2rem;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
        }
        .rating-stars .star.active {
            color: #f0c040;
        }
        .rating-stars .star:hover,
        .rating-stars .star.hover {
            color: #ffd966;
        }
        .featured-image {
            margin: 1.5rem 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: #999;
            padding: 0.5rem 0 0;
            font-style: italic;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0;
        }
        friend-link ul {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
            list-style: none;
            padding: 0;
        }
        friend-link a {
            color: #aaa;
            font-size: 0.9rem;
            border-bottom: 1px solid transparent;
            transition: all 0.25s ease;
        }
        friend-link a:hover {
            color: #f0c040;
            border-bottom-color: #f0c040;
            text-decoration: none;
        }
        .site-footer {
            background: #08081a;
            border-top: 2px solid rgba(240, 192, 64, 0.15);
            padding: 2rem 0 1.2rem;
            margin-top: 2rem;
        }
        .site-footer .copyright {
            text-align: center;
            color: #777;
            font-size: 0.85rem;
            margin-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 1rem;
        }
        .site-footer .copyright strong {
            color: #aaa;
        }
        @media (max-width: 992px) {
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: inline-block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(15, 15, 42, 0.98);
                padding: 1rem 0;
                border-radius: 12px;
                margin-top: 0.8rem;
                border: 1px solid rgba(240, 192, 64, 0.15);
            }
            .main-nav a {
                padding: 0.7rem 1.2rem;
                border-radius: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            }
            .nav-toggle:checked~.main-nav {
                display: flex;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .content-card {
                padding: 1.2rem 1rem;
            }
            .search-box input {
                min-width: 140px;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .hero p {
                font-size: 0.95rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            .search-box button {
                padding: 0.7rem 1.2rem;
                font-size: 0.85rem;
            }
            .comment-form button,
            .rating-form button {
                width: 100%;
                text-align: center;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0d1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #f0c040;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ffd966;
        }
        ::selection {
            background: rgba(240, 192, 64, 0.35);
            color: #fff;
        }
        .text-gold {
            color: #f0c040;
        }
        .text-muted {
            color: #999;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .fw-700 {
            font-weight: 700;
        }
        .small {
            font-size: 0.85rem;
        }
        .updated-badge {
            display: inline-block;
            background: rgba(240, 192, 64, 0.1);
            padding: 0.2rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            color: #ccc;
            border: 1px solid rgba(240, 192, 64, 0.15);
        }
        .updated-badge i {
            margin-right: 0.3rem;
            color: #f0c040;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(240, 192, 64, 0.2), transparent);
            margin: 1.8rem 0;
        }
        .inline-icon {
            margin-right: 0.3rem;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
