        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
            background: #0d0f14;
            color: #e8edf2;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #ffd966;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        hr {
            border: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #f5c84255, transparent);
            margin: 2.5rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 12px;
        }
        header {
            padding: 20px 0 10px;
            border-bottom: 1px solid #2a2e38;
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f5c842, #f9a826);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #aab;
            display: block;
            letter-spacing: 0.5px;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #f5c842;
            color: #f5c842;
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .hamburger:hover {
            background: #f5c84222;
        }
        #nav-toggle {
            display: none;
        }
        nav.main-nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
            padding: 0;
        }
        nav.main-nav a {
            font-weight: 500;
            padding: 6px 2px;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        nav.main-nav a:hover {
            border-bottom-color: #f5c842;
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: #8899aa;
        }
        .breadcrumb a {
            color: #8899aa;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .breadcrumb span {
            color: #c8d0d8;
        }
        .search-wrap {
            background: #1a1e26;
            border-radius: 40px;
            padding: 6px 6px 6px 20px;
            display: flex;
            align-items: center;
            max-width: 460px;
            margin: 24px auto 32px;
            border: 1px solid #2f3542;
            transition: 0.3s;
        }
        .search-wrap:focus-within {
            border-color: #f5c842;
            box-shadow: 0 0 0 3px #f5c84222;
        }
        .search-wrap i {
            color: #8899aa;
            font-size: 1rem;
        }
        .search-wrap input {
            background: transparent;
            border: none;
            padding: 10px 12px;
            color: #e8edf2;
            font-size: 0.95rem;
            flex: 1;
            outline: none;
            min-width: 0;
        }
        .search-wrap input::placeholder {
            color: #6a7a8a;
        }
        .search-wrap button {
            background: #f5c842;
            border: none;
            color: #0d0f14;
            font-weight: 700;
            padding: 8px 22px;
            border-radius: 40px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: 0.2s;
            white-space: nowrap;
        }
        .search-wrap button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        main {
            padding: 10px 0 40px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0.5rem 0 1.2rem;
            background: linear-gradient(135deg, #f5c842, #f9a826);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 2.2rem 0 1rem;
            color: #f0d080;
            border-left: 5px solid #f5c842;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 1.8rem 0 0.8rem;
            color: #e0c878;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.4rem 0 0.6rem;
            color: #d0b868;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .hero-img {
            margin: 28px 0 32px;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
        }
        .last-updated {
            font-size: 0.85rem;
            color: #7a8a9a;
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .last-updated i {
            color: #f5c842;
        }
        .highlight-box {
            background: #1a1e2a;
            border-left: 6px solid #f5c842;
            padding: 18px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #f5c842;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 18px;
            margin: 28px 0;
        }
        .stat-card {
            background: #161a22;
            padding: 20px 16px;
            border-radius: 14px;
            text-align: center;
            border: 1px solid #2a2e38;
            transition: 0.25s;
        }
        .stat-card:hover {
            border-color: #f5c84255;
            transform: translateY(-4px);
        }
        .stat-card .num {
            font-size: 2.4rem;
            font-weight: 800;
            color: #f5c842;
            display: block;
        }
        .stat-card .label {
            font-size: 0.95rem;
            color: #9aabbb;
            margin-top: 4px;
        }
        .interview {
            background: #131720;
            border-radius: 18px;
            padding: 28px 30px;
            margin: 30px 0;
            border: 1px solid #2f3542;
        }
        .interview .speaker {
            font-weight: 700;
            color: #f5c842;
        }
        .interview .quote {
            font-style: italic;
            padding-left: 20px;
            border-left: 3px solid #f5c84255;
            margin: 10px 0 18px;
        }
        .interactive-section {
            background: #131720;
            border-radius: 20px;
            padding: 28px 24px;
            margin: 32px 0;
            border: 1px solid #2a2e38;
        }
        .interactive-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 4px;
            color: #c8d0d8;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #2f3542;
            background: #0d0f14;
            color: #e8edf2;
            font-size: 1rem;
            transition: 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #f5c842;
            outline: none;
            box-shadow: 0 0 0 3px #f5c84222;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #f5c842;
            color: #0d0f14;
            font-weight: 700;
            padding: 12px 32px;
            border: none;
            border-radius: 40px;
            cursor: pointer;
            font-size: 1rem;
            transition: 0.2s;
            display: inline-block;
        }
        .btn:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 6px;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #3a3e48;
            transition: 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c842;
        }
        friend-link {
            display: block;
            background: #131720;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 32px 0 16px;
            border: 1px solid #2a2e38;
        }
        friend-link h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px 22px;
        }
        friend-link a {
            color: #aab8c8;
            font-size: 0.95rem;
        }
        friend-link a:hover {
            color: #f5c842;
        }
        footer {
            padding: 28px 0 36px;
            border-top: 1px solid #2a2e38;
            margin-top: 24px;
            text-align: center;
            font-size: 0.9rem;
            color: #6a7a8a;
        }
        footer .copyright {
            margin-top: 12px;
            letter-spacing: 0.3px;
        }
        footer a {
            color: #aab8c8;
        }
        footer a:hover {
            color: #f5c842;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: inline-block;
            }
            nav.main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease, padding 0.3s ease;
                padding: 0;
            }
            #nav-toggle:checked~.hamburger+.nav-wrap nav.main-nav,
            #nav-toggle:checked~nav.main-nav {
                max-height: 600px;
                padding: 16px 0 8px;
            }
            nav.main-nav ul {
                flex-direction: column;
                gap: 4px;
            }
            nav.main-nav a {
                display: block;
                padding: 10px 12px;
                border-radius: 8px;
            }
            nav.main-nav a:hover {
                background: #1a1e2a;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .header-inner {
                align-items: center;
            }
            .search-wrap {
                flex-wrap: wrap;
                border-radius: 20px;
                padding: 6px;
            }
            .search-wrap input {
                width: 100%;
                padding: 10px 12px;
            }
            .search-wrap button {
                width: 100%;
                border-radius: 20px;
                margin-top: 4px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .interactive-section {
                padding: 18px 16px;
            }
        }
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 1.7rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0f14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2f3542;
            border-radius: 8px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f5c84255;
        }
        .tag {
            display: inline-block;
            background: #f5c84218;
            color: #f5c842;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #131720;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #2a2e38;
        }
        th {
            background: #1a1e2a;
            color: #f5c842;
            font-weight: 600;
        }
        tr:hover td {
            background: #1a1e2a44;
        }
        .emoji-big {
            font-size: 1.8rem;
            display: inline-block;
            margin-right: 6px;
        }
