        *,
        *::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, sans-serif;
            background: #0b0d0f;
            color: #e8e6e3;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #ffde6b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f5f3f0;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 5px solid #f5c842;
            padding-left: 1rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #2a2d30;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #f5c842;
        }
        h4 {
            font-size: 1.15rem;
            color: #c0c4c9;
        }
        p {
            margin-bottom: 1.2rem;
        }
        strong,
        b {
            color: #f5f3f0;
            font-weight: 700;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #14171a;
            border-bottom: 2px solid #2a2d30;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            background: rgba(20, 23, 26, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f5c842, #f7d95a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            font-size: 1.4rem;
            -webkit-text-fill-color: #f5c842;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #aaa;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            gap: 0.6rem 1.2rem;
            flex-wrap: wrap;
            align-items: center;
            list-style: none;
            padding: 0;
        }
        .nav-links li a {
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #cfd2d6;
            transition: background 0.2s, color 0.2s;
        }
        .nav-links li a:hover {
            background: #2a2d30;
            color: #f5c842;
            text-decoration: none;
        }
        .nav-links li a i {
            margin-right: 5px;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5c842;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.05);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #1c1f22;
            padding: 0.5rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #2a2d30;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.8rem;
            list-style: none;
            padding: 0;
            align-items: center;
        }
        .breadcrumb ul li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #888;
        }
        .breadcrumb a {
            color: #b0b4b9;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .breadcrumb .current {
            color: #f5c842;
        }
        .hero-image {
            margin: 2rem 0 1.5rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
            background: #1c1f22;
        }
        .hero-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .hero-caption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #aaa;
            background: #1c1f22;
            border-top: 1px solid #2a2d30;
        }
        .section-wrap {
            margin: 2.5rem 0;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
            margin: 1.5rem 0;
        }
        .card {
            background: #1a1d20;
            border-radius: 12px;
            padding: 1.5rem 1.2rem;
            border: 1px solid #2a2d30;
            transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(245, 200, 66, 0.06);
            border-color: #f5c84255;
        }
        .card i {
            font-size: 2rem;
            color: #f5c842;
            margin-bottom: 0.6rem;
        }
        .card h3 {
            margin-top: 0.2rem;
        }
        .card h3 a {
            color: #f5f3f0;
        }
        .card h3 a:hover {
            color: #f5c842;
        }
        .stat-highlight {
            background: #0f1215;
            border-left: 4px solid #f5c842;
            padding: 1.2rem 1.5rem;
            border-radius: 0 10px 10px 0;
            margin: 1.8rem 0;
        }
        .stat-highlight span {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f5c842;
        }
        .insight-box {
            background: #111418;
            border: 1px solid #2a2d30;
            border-radius: 12px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        .insight-box i {
            color: #f5c842;
            margin-right: 6px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #14171a;
            border-radius: 10px;
            overflow: hidden;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #2a2d30;
        }
        th {
            background: #1c1f22;
            color: #f5c842;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        tr:hover td {
            background: #1e2125;
        }
        .form-card {
            background: #14171a;
            border: 1px solid #2a2d30;
            border-radius: 12px;
            padding: 1.8rem 1.5rem;
            margin: 1.5rem 0;
        }
        .form-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #cfd2d6;
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            background: #0f1215;
            border: 1px solid #2a2d30;
            border-radius: 8px;
            color: #e8e6e3;
            font-size: 1rem;
            transition: border 0.2s, box-shadow 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f5c842;
            box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.15);
        }
        .form-group textarea {
            min-height: 90px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.6rem;
            border: none;
            border-radius: 8px;
            background: #f5c842;
            color: #0b0d0f;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .btn:hover {
            background: #ffde6b;
            transform: scale(1.02);
        }
        .btn i {
            font-size: 0.9rem;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f5c842;
            color: #f5c842;
        }
        .btn-outline:hover {
            background: #f5c84222;
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            flex-wrap: wrap;
        }
        .rating-stars i {
            transition: color 0.15s, transform 0.1s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f5c842;
            transform: scale(1.1);
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            list-style: none;
            padding: 0;
            margin: 1.2rem 0;
        }
        .link-list-inline li a {
            background: #1a1d20;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            border: 1px solid #2a2d30;
            font-size: 0.9rem;
            transition: background 0.2s, border-color 0.2s;
        }
        .link-list-inline li a:hover {
            background: #2a2d30;
            border-color: #f5c84255;
            text-decoration: none;
        }
        footer {
            margin-top: auto;
            background: #0f1215;
            border-top: 2px solid #1c1f22;
            padding: 2.5rem 0 1.5rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.6rem 0.3rem 0;
            padding: 0.3rem 1rem;
            background: #1a1d20;
            border-radius: 20px;
            border: 1px solid #2a2d30;
            font-size: 0.9rem;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #2a2d30;
            text-decoration: none;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.2rem;
            border-top: 1px solid #1c1f22;
            text-align: center;
            font-size: 0.85rem;
            color: #888;
        }
        .copyright strong {
            color: #ccc;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #14171a;
                padding: 1rem 0.5rem;
                border-top: 1px solid #2a2d30;
                margin-top: 0.6rem;
            }
            #nav-toggle:checked~.nav-links {
                display: flex;
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .hero-image img {
                max-height: 240px;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb ul {
                font-size: 0.78rem;
                gap: 0.2rem 0.4rem;
            }
        }
        @media (min-width: 769px) {
            .nav-links {
                display: flex !important;
            }
            #nav-toggle {
                display: none;
            }
            .hamburger {
                display: none;
            }
        }
        .anchor-offset {
            scroll-margin-top: 90px;
        }
        .tagline {
            font-size: 1.1rem;
            color: #b0b4b9;
            margin-bottom: 1.5rem;
            font-style: italic;
        }
        .fa-ul li {
            margin-bottom: 0.5rem;
        }
        .last-updated {
            display: inline-block;
            background: #1c1f22;
            padding: 0.2rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #aaa;
            border: 1px solid #2a2d30;
        }
        .divider {
            border: none;
            height: 1px;
            background: linear-gradient(to right, transparent, #2a2d30, transparent);
            margin: 2rem 0;
        }
