        *,
        *::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', sans-serif;
            background: #0f0f1a;
            color: #e8e8f0;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #f0b90b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            color: #fff;
        }
        h1 {
            font-size: 2.6rem;
            border-left: 6px solid #f0b90b;
            padding-left: 20px;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid #2a2a3e;
            padding-bottom: 0.5rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #f0d060;
        }
        h4 {
            font-size: 1.2rem;
            color: #c0c0e0;
        }
        p {
            margin-bottom: 1.2rem;
            color: #d0d0e0;
        }
        strong,
        b {
            color: #fff;
            font-weight: 700;
        }
        .text-muted {
            color: #9090b0;
        }
        .text-accent {
            color: #f0b90b;
        }
        .small {
            font-size: 0.9rem;
        }
        .header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 16px 0;
            border-bottom: 2px solid #f0b90b33;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }
        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f0b90b, #f85a3e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }
        .my-logo span {
            font-weight: 300;
            -webkit-text-fill-color: #e0e0f0;
            color: #e0e0f0;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            padding: 8px 18px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            background: rgba(255, 255, 255, 0.05);
            color: #c0c0e0;
            border: 1px solid transparent;
            transition: all 0.25s;
            display: inline-block;
        }
        .nav-list li a:hover {
            background: rgba(240, 185, 11, 0.15);
            border-color: #f0b90b66;
            color: #f0b90b;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0b90b;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(240, 185, 11, 0.1);
        }
        .breadcrumb {
            background: #18182a;
            padding: 12px 0;
            border-bottom: 1px solid #2a2a40;
            font-size: 0.9rem;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
        }
        .breadcrumb a {
            color: #9090b0;
        }
        .breadcrumb a:hover {
            color: #f0b90b;
        }
        .breadcrumb .sep {
            color: #50506a;
            margin: 0 4px;
        }
        .breadcrumb .current {
            color: #f0b90b;
            font-weight: 500;
        }
        .hero {
            background: radial-gradient(ellipse at 20% 30%, #1e2a3a, #0f0f1a 80%);
            padding: 50px 0 40px;
            text-align: center;
        }
        .hero h1 {
            border-left: none;
            padding-left: 0;
            text-align: center;
            font-size: 2.8rem;
            max-width: 800px;
            margin: 0 auto 16px;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 24px;
            color: #b0b0d0;
        }
        .hero .badge {
            display: inline-block;
            background: #f0b90b22;
            color: #f0d060;
            padding: 6px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            border: 1px solid #f0b90b44;
            margin-bottom: 12px;
        }
        .hero .last-updated {
            display: block;
            margin-top: 20px;
            font-size: 0.85rem;
            color: #707090;
        }
        .search-section {
            background: #14142a;
            padding: 28px 0;
            border-top: 1px solid #2a2a44;
            border-bottom: 1px solid #2a2a44;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input[type="text"] {
            flex: 1 1 260px;
            padding: 14px 20px;
            border-radius: 50px;
            border: 1px solid #3a3a5a;
            background: #1e1e34;
            color: #f0f0ff;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f0b90b;
            box-shadow: 0 0 0 3px #f0b90b22;
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 50px;
            border: none;
            background: linear-gradient(135deg, #f0b90b, #d49a0a);
            color: #0f0f1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 30px #f0b90b33;
        }
        .main-content {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
        }
        .content-body {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-card {
            background: #18182c;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 24px;
            border: 1px solid #2a2a44;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 12px;
            color: #f0d060;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 6px 0;
            border-bottom: 1px solid #2a2a40;
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            color: #b0b0d0;
            font-size: 0.95rem;
        }
        .sidebar-card ul li a:hover {
            color: #f0b90b;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
            background: #1a1a2e;
        }
        .featured-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #9090b0;
            background: #1a1a2e;
            border-top: 1px solid #2a2a44;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            padding: 16px 0;
            margin: 20px 0;
            border-top: 1px solid #2a2a44;
            border-bottom: 1px solid #2a2a44;
        }
        .link-list-inline a {
            background: rgba(240, 185, 11, 0.06);
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #c0c0e0;
            border: 1px solid #2a2a44;
        }
        .link-list-inline a:hover {
            background: rgba(240, 185, 11, 0.15);
            border-color: #f0b90b66;
            color: #f0b90b;
            text-decoration: none;
        }
        .feedback-section {
            background: #14142a;
            padding: 40px 0;
            border-top: 1px solid #2a2a44;
            border-bottom: 1px solid #2a2a44;
            margin-top: 40px;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        .feedback-card {
            background: #1c1c34;
            border-radius: 16px;
            padding: 28px;
            border: 1px solid #2a2a4a;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 16px;
        }
        .feedback-card form input,
        .feedback-card form textarea,
        .feedback-card form select {
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #3a3a5a;
            background: #12122a;
            color: #f0f0ff;
            font-size: 0.95rem;
            width: 100%;
            outline: none;
            transition: border 0.3s;
        }
        .feedback-card form input:focus,
        .feedback-card form textarea:focus,
        .feedback-card form select:focus {
            border-color: #f0b90b;
            box-shadow: 0 0 0 3px #f0b90b22;
        }
        .feedback-card form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card form button {
            padding: 12px 28px;
            border-radius: 50px;
            border: none;
            background: linear-gradient(135deg, #f0b90b, #d49a0a);
            color: #0f0f1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            align-self: flex-start;
        }
        .feedback-card form button:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 30px #f0b90b33;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 6px;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #3a3a5a;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f0b90b;
        }
        .footer {
            background: #0a0a18;
            padding: 40px 0 20px;
            border-top: 2px solid #1a1a30;
        }
        .footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        .footer h4 {
            margin-top: 0;
            color: #f0d060;
            font-size: 1.1rem;
        }
        .footer p,
        .footer a {
            font-size: 0.9rem;
            color: #8080a0;
        }
        .footer a:hover {
            color: #f0b90b;
        }
        .footer .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #1a1a30;
            margin-top: 16px;
            font-size: 0.85rem;
            color: #606080;
        }
        friend-link {
            display: block;
            margin-top: 12px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 16px;
            padding: 4px 0;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer .container {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a2e;
                padding: 16px 0;
                border-radius: 12px;
                margin-top: 12px;
                border: 1px solid #2a2a44;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                padding: 12px 20px;
                border-radius: 0;
                background: transparent;
                border: none;
            }
            .hamburger {
                display: block;
            }
            .header .container {
                flex-wrap: wrap;
            }
            .nav-wrapper {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }
            .footer .container {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .feedback-card {
                padding: 18px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .search-form input[type="text"] {
                flex: 1 1 100%;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .link-list-inline a {
                font-size: 0.8rem;
                padding: 4px 12px;
            }
        }
        .mb-1 {
            margin-bottom: 0.5rem;
        }
        .mb-2 {
            margin-bottom: 1rem;
        }
        .mt-2 {
            margin-top: 1rem;
        }
        .mt-3 {
            margin-top: 1.5rem;
        }
        .gap-2 {
            gap: 0.5rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
        }
        .align-center {
            align-items: center;
        }
        .rounded-full {
            border-radius: 999px;
        }
        .bg-dark-2 {
            background: #14142a;
        }
        .emoji-lg {
            font-size: 1.6rem;
            vertical-align: middle;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, #f0b90b44, transparent);
            margin: 32px 0;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 0.95rem;
        }
        .data-table th,
        .data-table td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #2a2a44;
        }
        .data-table th {
            background: #1a1a30;
            color: #f0d060;
            font-weight: 600;
        }
        .data-table tr:hover td {
            background: rgba(240, 185, 11, 0.04);
        }
