        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0d0f14;
            color: #e8eef2;
            line-height: 1.75;
            padding: 0 16px;
        }
        a {
            color: #f5b342;
            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;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: 0.02em;
            color: #fcfcfc;
        }
        h1 {
            font-size: 2.4rem;
            margin: 0.5rem 0 1rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
            border-bottom: 2px solid #f5b342;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            margin: 1.8rem 0 0.8rem;
            color: #f5d98a;
        }
        h4 {
            font-size: 1.15rem;
            margin: 1.2rem 0 0.5rem;
            color: #e8d5a3;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.5rem 1.8rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .highlight {
            background: linear-gradient(135deg, #f5b34220, #f5b34208);
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            font-weight: 600;
            color: #f5d98a;
        }
        .badge {
            display: inline-block;
            background: #f5b342;
            color: #0d0f14;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
        .header {
            background: #14181f;
            border-bottom: 2px solid #2a2f3a;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
            background: rgba(20, 24, 31, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #f5b342;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            text-shadow: 0 0 12px rgba(245, 179, 66, 0.25);
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #ffd966;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            color: #aab;
            display: block;
            letter-spacing: 0.12em;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5b342;
            color: #f5b342;
            font-size: 1.6rem;
            padding: 4px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f5b34222;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-menu li a {
            font-weight: 500;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-menu li a:hover {
            border-bottom-color: #f5b342;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 12px 0 4px;
            font-size: 0.85rem;
            color: #99aabb;
        }
        .breadcrumb a {
            color: #99aabb;
        }
        .breadcrumb a:hover {
            color: #f5b342;
        }
        .breadcrumb .sep {
            margin: 0 8px;
            color: #556;
        }
        .hero {
            background: linear-gradient(145deg, #1a1f2a, #0f121a);
            border-radius: 20px;
            padding: 40px 36px;
            margin: 24px 0 32px;
            border: 1px solid #2a2f3a;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 36px;
            align-items: center;
        }
        .hero-content h1 {
            margin-top: 0;
        }
        .hero-content .meta {
            color: #99aabb;
            font-size: 0.9rem;
            margin-bottom: 1.2rem;
        }
        .hero-content .meta i {
            margin-right: 4px;
        }
        .hero-img {
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
            width: 100%;
            height: auto;
            object-fit: cover;
            min-height: 220px;
            background: #2a2f3a;
        }
        .search-box {
            background: #14181f;
            padding: 20px 24px;
            border-radius: 14px;
            border: 1px solid #2a2f3a;
            margin: 28px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .search-box label {
            font-weight: 600;
            color: #f5d98a;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border-radius: 30px;
            border: 1px solid #3a4050;
            background: #1e232e;
            color: #f0f4fa;
            font-size: 1rem;
            transition: border 0.25s;
        }
        .search-box input[type="text"]:focus {
            outline: none;
            border-color: #f5b342;
            box-shadow: 0 0 0 3px #f5b34222;
        }
        .search-box button {
            background: #f5b342;
            color: #0d0f14;
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            background: #ffc965;
            transform: scale(1.02);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 30px 0;
        }
        .card {
            background: #14181f;
            border: 1px solid #2a2f3a;
            border-radius: 16px;
            padding: 24px 28px;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            border-color: #f5b34244;
            box-shadow: 0 4px 24px rgba(245, 179, 66, 0.06);
        }
        .card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #3a4050;
            cursor: pointer;
            transition: color 0.2s;
            margin: 8px 0 12px;
        }
        .star-rating i {
            transition: color 0.15s, transform 0.15s;
        }
        .star-rating i:hover,
        .star-rating i.active {
            color: #f5b342;
            transform: scale(1.15);
        }
        .card textarea {
            width: 100%;
            padding: 12px 16px;
            border-radius: 12px;
            border: 1px solid #3a4050;
            background: #1e232e;
            color: #f0f4fa;
            font-size: 0.95rem;
            min-height: 90px;
            resize: vertical;
            font-family: inherit;
            transition: border 0.25s;
        }
        .card textarea:focus {
            outline: none;
            border-color: #f5b342;
        }
        .card .btn-submit {
            background: #f5b342;
            color: #0d0f14;
            border: none;
            padding: 10px 26px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            margin-top: 10px;
            transition: background 0.2s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .card .btn-submit:hover {
            background: #ffc965;
            transform: scale(1.02);
        }
        .article-body {
            margin: 20px 0 40px;
        }
        .article-body section {
            margin-bottom: 40px;
        }
        .content-image {
            margin: 24px 0;
            border-radius: 16px;
            width: 100%;
            max-width: 800px;
            box-shadow: 0 6px 28px rgba(0, 0, 0, 0.5);
        }
        .insight-box {
            background: #1a1f2c;
            border-left: 5px solid #f5b342;
            padding: 16px 24px;
            border-radius: 0 14px 14px 0;
            margin: 20px 0;
        }
        .insight-box i {
            color: #f5b342;
            margin-right: 8px;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 18px;
            margin: 20px 0;
        }
        .stat-card {
            background: #14181f;
            padding: 18px 16px;
            border-radius: 14px;
            text-align: center;
            border: 1px solid #2a2f3a;
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f5b342;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #99aabb;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        friend-link {
            display: block;
            margin: 24px 0 12px;
            padding: 16px 20px;
            background: #14181f;
            border-radius: 14px;
            border: 1px solid #2a2f3a;
        }
        friend-link::before {
            content: "🌐 Friendly Links";
            display: block;
            font-weight: 700;
            font-size: 1.1rem;
            color: #f5d98a;
            margin-bottom: 10px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            padding: 4px 0;
        }
        .footer {
            border-top: 2px solid #2a2f3a;
            padding: 30px 0 40px;
            margin-top: 40px;
            font-size: 0.9rem;
            color: #99aabb;
        }
        .footer .copyright {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }
        .footer .copyright i {
            color: #f5b342;
        }
        .schema-hidden {
            display: none;
        }
        @media (max-width: 868px) {
            .hero {
                grid-template-columns: 1fr;
                padding: 28px 20px;
            }
            .hero-img {
                order: -1;
                max-height: 260px;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .nav-toggle {
                display: inline-block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 12px 0 4px;
                gap: 6px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                display: block;
                padding: 8px 0;
                font-size: 1rem;
                border-bottom: 1px solid #2a2f3a;
                width: 100%;
            }
            .header-inner {
                align-items: center;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 10px;
            }
            .container {
                padding: 0 10px;
            }
            .hero {
                padding: 20px 16px;
            }
            .search-box {
                flex-direction: column;
                align-items: stretch;
            }
            .search-box input[type="text"] {
                min-width: unset;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            .card {
                padding: 18px 16px;
            }
        }
        @media (min-width: 869px) {
            .nav-toggle {
                display: none !important;
            }
            .nav-menu {
                display: flex !important;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0f14;
        }
        ::-webkit-scrollbar-thumb {
            background: #3a4050;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f5b34266;
        }
