        *,
        *::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', Arial, sans-serif;
            background: #0f0e17;
            color: #fefefe;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #ff8906;
            text-decoration: none;
            transition: color 0.25s ease, transform 0.2s ease;
        }
        a:hover {
            color: #f25f4c;
            transform: translateY(-1px);
        }
        a:focus-visible {
            outline: 2px dashed #ff8906;
            outline-offset: 4px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #fffffe;
            letter-spacing: -0.01em;
        }
        h1 {
            font-size: 2.5rem;
            margin-bottom: 1.25rem;
            border-left: 6px solid #ff8906;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.875rem;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid rgba(255, 137, 6, 0.25);
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h4 {
            font-size: 1.25rem;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            color: #ffd803;
        }
        p {
            margin-bottom: 1.25rem;
            max-width: 72ch;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: #1a1a2e;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(8px);
            background: rgba(26, 26, 46, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.75rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff8906, #f25f4c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #ff8906;
            font-size: 1.5rem;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 0.25rem;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
        }
        .nav-list li a {
            padding: 0.5rem 1rem;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #fffffe;
            background: transparent;
            transition: background 0.3s, color 0.3s;
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }
        .nav-list li a:hover,
        .nav-list li a.active {
            background: #ff8906;
            color: #0f0e17;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fffffe;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #1a1a2e;
            padding: 0.75rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.4rem;
            color: rgba(255, 255, 255, 0.4);
        }
        .breadcrumb a {
            color: #ff8906;
        }
        .breadcrumb .current {
            color: #a7a9be;
        }
        .main-content {
            padding: 2.5rem 0 3rem;
            background: #0f0e17;
        }
        .featured-image {
            border-radius: 20px;
            margin: 1.5rem 0 2rem;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            background: #1a1a2e;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: #a7a9be;
            background: #1a1a2e;
            padding: 0.4rem 1rem;
            border-radius: 40px;
            margin-bottom: 1.5rem;
        }
        .highlight-box {
            background: #1a1a2e;
            border-left: 6px solid #ff8906;
            padding: 1.5rem 2rem;
            border-radius: 12px;
            margin: 1.5rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .insight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .insight-card {
            background: #1a1a2e;
            border-radius: 16px;
            padding: 1.75rem;
            border: 1px solid rgba(255, 137, 6, 0.12);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .insight-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(255, 137, 6, 0.12);
        }
        .insight-card i {
            font-size: 2rem;
            color: #ff8906;
            margin-bottom: 0.75rem;
        }
        .insight-card h3 {
            margin-top: 0;
            font-size: 1.25rem;
        }
        .form-section {
            background: #1a1a2e;
            border-radius: 20px;
            padding: 2rem 2rem 2.5rem;
            margin: 2.5rem 0;
            border: 1px solid rgba(255, 137, 6, 0.10);
        }
        .form-section h2 {
            margin-top: 0;
            border-bottom: none;
            padding-bottom: 0;
        }
        .form-group {
            margin-bottom: 1.25rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.4rem;
            font-size: 0.95rem;
            color: #ffd803;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem 1.2rem;
            border-radius: 40px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: #0f0e17;
            color: #fefefe;
            font-size: 1rem;
            transition: border 0.3s, box-shadow 0.3s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #ff8906;
            box-shadow: 0 0 0 3px rgba(255, 137, 6, 0.2);
        }
        .form-group textarea {
            border-radius: 16px;
            min-height: 120px;
            resize: vertical;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            border: none;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
            background: #ff8906;
            color: #0f0e17;
        }
        .btn:hover {
            background: #f25f4c;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 137, 6, 0.3);
        }
        .btn-secondary {
            background: transparent;
            border: 1px solid #ff8906;
            color: #ff8906;
        }
        .btn-secondary:hover {
            background: rgba(255, 137, 6, 0.10);
            border-color: #f25f4c;
            color: #f25f4c;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.25rem;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: rgba(255, 255, 255, 0.15);
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ffd803;
        }
        .link-list-wrap {
            background: #1a1a2e;
            border-radius: 20px;
            padding: 1.75rem 2rem;
            margin: 2rem 0;
        }
        .link-list-wrap h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 0.75rem;
            list-style: none;
            padding: 0;
            margin: 1rem 0 0;
        }
        .link-grid li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1rem;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 40px;
            font-size: 0.9rem;
            transition: background 0.25s, transform 0.2s;
        }
        .link-grid li a:hover {
            background: rgba(255, 137, 6, 0.12);
            transform: translateX(4px);
        }
        .link-grid li a i {
            color: #ff8906;
            font-size: 0.8rem;
        }
        .site-footer {
            background: #1a1a2e;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-grid h4 {
            margin-top: 0;
            font-size: 1.1rem;
            color: #ffd803;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
            margin: 0.5rem 0 0;
        }
        .footer-grid ul li {
            margin-bottom: 0.4rem;
        }
        .footer-grid ul li a {
            font-size: 0.9rem;
            color: #a7a9be;
        }
        .footer-grid ul li a:hover {
            color: #ff8906;
        }
        friend-link {
            display: block;
            padding: 1rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            margin-top: 1rem;
            font-size: 0.9rem;
        }
        friend-link a {
            margin: 0 0.25rem;
        }
        .copyright {
            text-align: center;
            font-size: 0.85rem;
            color: #a7a9be;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.85rem;
                padding-left: 0.75rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a2e;
                padding: 1rem 0;
                border-radius: 16px;
                margin-top: 0.5rem;
                border: 1px solid rgba(255, 255, 255, 0.06);
            }
            .nav-list li a {
                padding: 0.75rem 1.5rem;
                border-radius: 0;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .insight-grid {
                grid-template-columns: 1fr;
            }
            .link-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 1rem;
            }
            .form-section {
                padding: 1.5rem;
            }
            .featured-image {
                max-height: 260px;
            }
        }
        @media (min-width: 769px) {
            .hamburger {
                display: none;
            }
            #nav-toggle {
                display: none;
            }
            .nav-list {
                display: flex !important;
            }
        }
        @media (max-width: 480px) {
            html {
                font-size: 15px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0f0e17;
        }
        ::-webkit-scrollbar-thumb {
            background: #ff8906;
            border-radius: 20px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f25f4c;
        }
        .emoji-lg {
            font-size: 1.4em;
            line-height: 1;
        }
        .text-muted {
            color: #a7a9be;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
