        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #0b0d11;
            color: #e8e6e3;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.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;
            margin: 0.75rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f5d742;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #f5c842;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 5px solid #f5c842;
            padding-left: 0.75rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #f0d060;
        }
        h4 {
            font-size: 1.25rem;
            color: #e8c84a;
        }
        p {
            margin: 0.9rem 0;
            text-align: justify;
        }
        strong,
        b {
            color: #f5d742;
            font-weight: 700;
        }
        em {
            color: #d4b84a;
        }
        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 12px;
        }
        .site-header {
            background: #15181f;
            border-radius: 0 0 20px 20px;
            padding: 12px 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            border-bottom: 2px solid #2a2e3a;
            position: relative;
            margin-bottom: 18px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(145deg, #f5c842, #d4a520);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }
        .my-logo a {
            -webkit-text-fill-color: transparent;
            background: linear-gradient(145deg, #f5c842, #d4a520);
            -webkit-background-clip: text;
            background-clip: text;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.88;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 10px 18px;
            flex-wrap: wrap;
        }
        .nav-bar a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 6px 12px;
            border-radius: 30px;
            background: transparent;
            transition: background 0.2s, color 0.2s;
            color: #ccc;
        }
        .nav-bar a:hover {
            background: #f5c842;
            color: #0b0d11;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: #f5c842;
            padding: 4px 10px;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #1f232b;
            padding: 10px 18px;
            border-radius: 40px;
            font-size: 0.88rem;
            margin: 8px 0 20px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 16px;
            list-style: none;
        }
        .breadcrumb li {
            display: inline;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #888;
        }
        .breadcrumb a {
            color: #b0b0b0;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .breadcrumb .current {
            color: #f5c842;
            font-weight: 600;
        }
        .search-section {
            background: #1a1e26;
            padding: 24px 20px;
            border-radius: 28px;
            margin: 18px 0 28px 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
        }
        .search-section form {
            display: flex;
            flex: 1 1 300px;
            gap: 8px;
        }
        .search-section input[type="text"] {
            flex: 1;
            padding: 14px 18px;
            border-radius: 40px;
            border: none;
            background: #2d323e;
            color: #fff;
            font-size: 1rem;
            outline: 1px solid #3d4353;
            transition: outline 0.2s;
        }
        .search-section input[type="text"]:focus {
            outline: 2px solid #f5c842;
        }
        .search-section button {
            background: #f5c842;
            border: none;
            border-radius: 40px;
            padding: 0 24px;
            font-weight: 700;
            color: #0b0d11;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-size: 1rem;
        }
        .search-section button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .card {
            background: #181c24;
            border-radius: 24px;
            padding: 24px 22px;
            margin: 22px 0;
            border: 1px solid #2a2e3a;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        }
        .card-light {
            background: #1f242e;
        }
        .flex-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 22px;
            margin: 20px 0;
        }
        .stat-badge {
            display: inline-block;
            background: #2a2e3a;
            padding: 4px 14px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #f5c842;
            margin: 4px 4px 4px 0;
        }
        .featured-img {
            border-radius: 20px;
            margin: 25px 0;
            box-shadow: 0 8px 30px rgba(245, 200, 66, 0.12);
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 28px 0;
        }
        @media (max-width: 640px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .form-group {
            margin-bottom: 14px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            color: #ddd;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 20px;
            border: none;
            background: #2d323e;
            color: #fff;
            font-size: 0.95rem;
            outline: 1px solid #3d4353;
            resize: vertical;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: 2px solid #f5c842;
        }
        .form-group textarea {
            min-height: 90px;
        }
        .btn-primary {
            background: #f5c842;
            border: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 700;
            color: #0b0d11;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-size: 1rem;
        }
        .btn-primary:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f5c842;
        }
        .site-footer {
            background: #15181f;
            border-radius: 24px 24px 0 0;
            padding: 32px 22px 18px;
            margin-top: 40px;
            border-top: 2px solid #2a2e3a;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 22px;
            margin-bottom: 22px;
        }
        .friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            background: #1a1e26;
            padding: 16px 20px;
            border-radius: 40px;
            margin: 12px 0;
        }
        .friend-link a {
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            padding-top: 18px;
            border-top: 1px solid #2a2e3a;
            color: #999;
            font-size: 0.88rem;
        }
        .last-updated {
            display: inline-block;
            background: #1f242e;
            padding: 4px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #ccc;
            margin: 8px 0;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-bar {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding: 12px 0 4px 0;
                gap: 6px;
            }
            #nav-toggle:checked~.nav-bar {
                display: flex;
            }
            .site-header {
                flex-wrap: wrap;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .container {
                padding: 0 4px;
            }
            .breadcrumb {
                font-size: 0.78rem;
                padding: 8px 14px;
            }
            .search-section form {
                flex-wrap: wrap;
            }
            .search-section button {
                width: 100%;
                padding: 12px;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .card {
                padding: 16px 14px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        .text-gold {
            color: #f5c842;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .flex-between {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .gap-8 {
            gap: 8px;
        }
        .op-8 {
            opacity: 0.85;
        }
        .table-wrap {
            overflow-x: auto;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #1a1e26;
            border-radius: 16px;
            overflow: hidden;
            margin: 16px 0;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #2a2e3a;
        }
        th {
            background: #252b36;
            color: #f5c842;
            font-weight: 700;
        }
        tr:hover {
            background: #222833;
        }
        .emoji-lg {
            font-size: 1.6rem;
            vertical-align: middle;
        }
