        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color .25s ease;
        }
        a:hover,
        a:focus {
            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.35rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f0f4fa;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.9rem;
            border-bottom: 2px solid rgba(245, 197, 66, 0.25);
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.2rem;
        }
        p {
            margin-bottom: 1.1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
            width: 100%;
        }
        .section-pad {
            padding: 2.5rem 0;
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 1rem;
            background: #f5c542;
            color: #0b0e14;
            padding: 0.6rem 1.2rem;
            border-radius: 0 0 8px 8px;
            font-weight: 600;
            z-index: 9999;
            transition: top 0.2s;
        }
        .skip-link:focus {
            top: 0;
            text-decoration: none;
        }
        .site-header {
            background: #131a24;
            border-bottom: 2px solid #2a3644;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(8px);
            background: rgba(19, 26, 36, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 0.6rem 0;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5c542, #f7d97a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f5c542;
            font-size: 1.5rem;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: initial;
            color: #b0c4d8;
            letter-spacing: 0.3px;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.92;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0.2rem;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }
        .nav-list li a {
            display: block;
            padding: 0.5rem 0.9rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #cddae9;
            transition: background 0.2s, color 0.2s;
        }
        .nav-list li a:hover,
        .nav-list li a:focus {
            background: rgba(245, 197, 66, 0.12);
            color: #f5c542;
            text-decoration: none;
        }
        .nav-list li a.active {
            background: rgba(245, 197, 66, 0.18);
            color: #f5c542;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e8edf5;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.06);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.6rem 0 0.2rem;
            margin: 0;
            font-size: 0.85rem;
            color: #8fa3bb;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #5f738b;
        }
        .breadcrumb a {
            color: #b0c9e5;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb .current {
            color: #f5c542;
            font-weight: 500;
        }
        .search-form {
            display: flex;
            gap: 0.4rem;
            max-width: 500px;
            margin: 1.2rem 0 0.8rem;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 140px;
            padding: 0.65rem 1rem;
            border: 1px solid #2f3d4e;
            border-radius: 30px;
            background: #1a232f;
            color: #e8edf5;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s, box-shadow 0.2s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5c542;
            box-shadow: 0 0 0 3px rgba(245, 197, 66, 0.15);
        }
        .search-form button {
            padding: 0.65rem 1.4rem;
            border: none;
            border-radius: 30px;
            background: #f5c542;
            color: #0b0e14;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .card {
            background: #151e2a;
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            margin-bottom: 2rem;
            border: 1px solid #283542;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .card:hover {
            border-color: #3f5568;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.5rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .feature-img {
            border-radius: 14px;
            margin: 1.5rem 0 2rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            width: 100%;
            object-fit: cover;
        }
        .img-caption {
            font-size: 0.85rem;
            color: #8fa3bb;
            margin-top: 0.3rem;
            text-align: center;
            font-style: italic;
        }
        .star-rating {
            display: flex;
            gap: 0.2rem;
            font-size: 1.6rem;
            color: #3e5368;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.15s;
            color: #3e5368;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c542;
        }
        .star-rating label i {
            pointer-events: none;
        }
        .comment-box textarea {
            width: 100%;
            padding: 0.9rem 1rem;
            border: 1px solid #2f3d4e;
            border-radius: 12px;
            background: #1a232f;
            color: #e8edf5;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
            transition: border 0.2s;
        }
        .comment-box textarea:focus {
            border-color: #f5c542;
            outline: none;
            box-shadow: 0 0 0 3px rgba(245, 197, 66, 0.1);
        }
        .comment-box .btn-submit {
            padding: 0.65rem 1.8rem;
            border: none;
            border-radius: 30px;
            background: #f5c542;
            color: #0b0e14;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-box .btn-submit:hover {
            background: #ffd966;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.92rem;
            background: #151e2a;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid #283542;
        }
        th {
            background: #1f2c3b;
            color: #f5c542;
            font-weight: 600;
        }
        tr:hover td {
            background: rgba(245, 197, 66, 0.04);
        }
        .site-footer {
            background: #0d131c;
            border-top: 2px solid #1f2c3b;
            padding: 2.2rem 0 1.2rem;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-grid h4 {
            font-size: 1.1rem;
            margin-top: 0;
            color: #f0f4fa;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 0.4rem;
        }
        .footer-links a {
            color: #b0c9e5;
            font-size: 0.9rem;
        }
        .footer-links a:hover {
            color: #f5c542;
        }
        .copyright {
            margin-top: 1.8rem;
            padding-top: 1.2rem;
            border-top: 1px solid #1f2c3b;
            text-align: center;
            font-size: 0.85rem;
            color: #6f859e;
        }
        .copyright a {
            color: #b0c9e5;
        }
        friend-link {
            display: block;
            padding: 0.8rem 1.2rem;
            background: #121b26;
            border-radius: 12px;
            border: 1px solid #283542;
            margin: 1rem 0;
            font-size: 0.9rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.8rem 0.2rem 0;
            padding: 0.2rem 0.6rem;
            background: rgba(245, 197, 66, 0.08);
            border-radius: 20px;
            font-size: 0.85rem;
        }
        friend-link a:hover {
            background: rgba(245, 197, 66, 0.16);
            text-decoration: none;
        }
        @media (max-width: 992px) {
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #131a24;
                padding: 0.6rem 0 1rem;
                border-radius: 0 0 12px 12px;
                gap: 0;
            }
            .nav-list li a {
                padding: 0.7rem 1rem;
                border-radius: 0;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .container {
                padding: 0 1rem;
            }
            .section-pad {
                padding: 1.8rem 0;
            }
            .card {
                padding: 1.2rem 1rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .search-form input[type="text"] {
                min-width: 100px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            html {
                font-size: 15px;
            }
            .star-rating {
                font-size: 1.4rem;
            }
            .search-form button {
                padding: 0.55rem 1rem;
                font-size: 0.85rem;
            }
            .search-form input[type="text"] {
                padding: 0.55rem 0.8rem;
                font-size: 0.85rem;
            }
        }
        .text-gold {
            color: #f5c542;
        }
        .text-muted {
            color: #8fa3bb;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .badge {
            display: inline-block;
            background: rgba(245, 197, 66, 0.15);
            color: #f5c542;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        .divider {
            border: none;
            height: 1px;
            background: linear-gradient(90deg, transparent, #2a3644, transparent);
            margin: 2rem 0;
        }
        .quote {
            border-left: 4px solid #f5c542;
            padding: 0.8rem 1.2rem;
            background: rgba(245, 197, 66, 0.04);
            border-radius: 0 12px 12px 0;
            margin: 1.2rem 0;
            font-style: italic;
            color: #d6e0ee;
        }
        .quote cite {
            display: block;
            margin-top: 0.4rem;
            font-size: 0.85rem;
            color: #8fa3bb;
            font-style: normal;
        }
        .emoji-lg {
            font-size: 1.3rem;
        }
        .list-inline {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
        }
        .list-inline li::before {
            content: "•";
            color: #f5c542;
            margin-right: 0.4rem;
        }
