        *,
        *::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: #0d0d1a;
            color: #e8e8f0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.25s ease, opacity 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffdd66;
            text-decoration: underline;
            outline: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a2e;
        }
        ::-webkit-scrollbar-thumb {
            background: #3d3d5c;
            border-radius: 6px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #5a5a7a;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        .site-header {
            background: #12121f;
            border-bottom: 2px solid #2a2a45;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5c842, #e6a800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5c842;
            font-size: 1.4rem;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 8px 14px;
            border-radius: 6px;
            font-size: 0.92rem;
            font-weight: 500;
            color: #c8c8e0;
            transition: background 0.25s, color 0.25s;
            position: relative;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: #2a2a45;
            color: #f5c842;
            text-decoration: none;
        }
        .main-nav a.active {
            background: #2a2a45;
            color: #f5c842;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0f0f0;
            font-size: 1.7rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #2a2a45;
        }
        .nav-toggle {
            display: none;
        }
        .breadcrumb {
            padding: 12px 0 4px;
            font-size: 0.85rem;
            color: #9a9ab0;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #5a5a7a;
        }
        .breadcrumb a {
            color: #b0b0d0;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .breadcrumb .current {
            color: #f5c842;
            font-weight: 500;
        }
        .hero {
            padding: 40px 0 30px;
            text-align: center;
            position: relative;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.2;
            background: linear-gradient(135deg, #f5c842, #ffb347, #f5c842);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        .hero p {
            font-size: 1.2rem;
            color: #b8b8d0;
            max-width: 780px;
            margin: 0 auto 20px;
        }
        .hero .last-updated {
            display: inline-block;
            background: #1e1e36;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #a0a0c0;
            border: 1px solid #2a2a45;
        }
        .hero .last-updated i {
            margin-right: 6px;
            color: #f5c842;
        }
        .section {
            padding: 32px 0;
            border-bottom: 1px solid #1e1e36;
        }
        .section:last-of-type {
            border-bottom: none;
        }
        .section h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f5c842;
            margin-bottom: 18px;
            padding-bottom: 8px;
            border-bottom: 2px solid #2a2a45;
        }
        .section h3 {
            font-size: 1.45rem;
            font-weight: 600;
            color: #e0d0a0;
            margin: 28px 0 12px;
        }
        .section h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #c8b880;
            margin: 20px 0 10px;
        }
        .section p {
            margin-bottom: 16px;
            color: #d0d0e0;
        }
        .section p strong {
            color: #f0e6c0;
        }
        .feature-image {
            margin: 28px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
            background: #1a1a2e;
            position: relative;
        }
        .feature-image img {
            width: 100%;
            height: auto;
            max-height: 480px;
            object-fit: cover;
        }
        .feature-image figcaption {
            padding: 10px 16px;
            font-size: 0.9rem;
            color: #a0a0c0;
            background: #12121f;
            border-top: 1px solid #2a2a45;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin: 24px 0;
        }
        .card {
            background: #16162a;
            border-radius: 12px;
            padding: 24px 20px;
            border: 1px solid #2a2a45;
            transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
        }
        .card:hover {
            transform: translateY(-4px);
            border-color: #f5c84255;
            box-shadow: 0 12px 40px rgba(245, 200, 66, 0.08);
        }
        .card h4 {
            margin-top: 0;
            font-size: 1.2rem;
        }
        .card .price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #f5c842;
            margin: 8px 0 4px;
        }
        .card .price s {
            color: #7a7a9a;
            font-weight: 400;
            font-size: 1rem;
            margin-left: 10px;
        }
        .card .badge {
            display: inline-block;
            background: #2d6a2d;
            color: #b8f0b8;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
            border-radius: 10px;
            border: 1px solid #2a2a45;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #16162a;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 14px 16px;
            text-align: left;
            border-bottom: 1px solid #2a2a45;
        }
        th {
            background: #1e1e36;
            color: #f5c842;
            font-weight: 600;
            white-space: nowrap;
        }
        tr:hover td {
            background: #1a1a30;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .highlight-box {
            background: #1a1a30;
            border-left: 4px solid #f5c842;
            padding: 18px 22px;
            margin: 24px 0;
            border-radius: 0 10px 10px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin: 20px 0 10px;
            max-width: 600px;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 14px 20px;
            border-radius: 8px;
            border: 1px solid #3a3a5a;
            background: #1a1a2e;
            color: #f0f0f0;
            font-size: 1rem;
            transition: border-color 0.25s, box-shadow 0.25s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5c842;
            box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.15);
            outline: none;
        }
        .search-form button {
            padding: 14px 28px;
            background: #f5c842;
            color: #0d0d1a;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #ffdd66;
            transform: scale(1.02);
        }
        .feedback-forms {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 24px 0;
        }
        @media (max-width: 700px) {
            .feedback-forms {
                grid-template-columns: 1fr;
            }
        }
        .form-card {
            background: #16162a;
            border: 1px solid #2a2a45;
            border-radius: 12px;
            padding: 24px 22px;
        }
        .form-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            color: #f5c842;
            border-bottom: 1px solid #2a2a45;
            padding-bottom: 10px;
            margin-bottom: 18px;
        }
        .form-card label {
            display: block;
            font-size: 0.95rem;
            font-weight: 500;
            color: #c8c8e0;
            margin-bottom: 6px;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid #3a3a5a;
            background: #1a1a2e;
            color: #f0f0f0;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color 0.25s;
            margin-bottom: 14px;
        }
        .form-card input:focus,
        .form-card textarea:focus,
        .form-card select:focus {
            border-color: #f5c842;
            outline: none;
        }
        .form-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .form-card .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin-bottom: 16px;
        }
        .form-card .star-rating input {
            display: none;
        }
        .form-card .star-rating label {
            font-size: 1.8rem;
            color: #4a4a6a;
            cursor: pointer;
            transition: color 0.2s;
            margin-bottom: 0;
        }
        .form-card .star-rating input:checked~label,
        .form-card .star-rating label:hover,
        .form-card .star-rating label:hover~label {
            color: #f5c842;
        }
        .form-card .btn-submit {
            padding: 12px 28px;
            background: #f5c842;
            color: #0d0d1a;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .form-card .btn-submit:hover {
            background: #ffdd66;
            transform: scale(1.02);
        }
        friend-link {
            display: block;
            padding: 28px 0 14px;
            border-top: 1px solid #2a2a45;
            margin-top: 20px;
        }
        friend-link .fl-head {
            font-size: 1.1rem;
            font-weight: 600;
            color: #f5c842;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            list-style: none;
            padding: 0;
        }
        friend-link .fl-list li a {
            color: #b0b0d0;
            font-size: 0.95rem;
        }
        friend-link .fl-list li a:hover {
            color: #f5c842;
        }
        .site-footer {
            background: #0a0a16;
            border-top: 2px solid #1e1e36;
            padding: 30px 0 20px;
            margin-top: auto;
            text-align: center;
        }
        .site-footer .copyright {
            font-size: 0.88rem;
            color: #7a7a9a;
        }
        .site-footer .copyright a {
            color: #b0b0d0;
        }
        .site-footer .copyright a:hover {
            color: #f5c842;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #12121f;
                padding: 12px 0 8px;
                border-top: 1px solid #2a2a45;
                margin-top: 8px;
            }
            .main-nav a {
                padding: 12px 16px;
                width: 100%;
                border-radius: 0;
            }
            .nav-toggle:checked~.main-nav {
                display: flex;
            }
            .header-inner {
                position: relative;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .section h2 {
                font-size: 1.6rem;
            }
            .section h3 {
                font-size: 1.25rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .search-form button {
                padding: 12px 20px;
            }
            .feedback-forms {
                gap: 20px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .section {
                padding: 24px 0;
            }
            .card {
                padding: 18px 16px;
            }
            .form-card {
                padding: 18px 16px;
            }
            table {
                font-size: 0.82rem;
            }
            th,
            td {
                padding: 10px 12px;
            }
        }
        .text-muted {
            color: #8a8aaa;
            font-size: 0.9rem;
        }
        .mt-1 {
            margin-top: 12px;
        }
        .mb-1 {
            margin-bottom: 12px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .gap-2 {
            gap: 16px;
        }
        .tag {
            display: inline-block;
            background: #2a2a45;
            color: #c8c8e0;
            padding: 2px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin: 2px 4px 2px 0;
        }
        .tag:hover {
            background: #3d3d5c;
        }
        .emoji-lg {
            font-size: 1.3rem;
        }
