        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #0b0e14;
            color: #e8edf2;
            line-height: 1.7;
            padding: 0 20px;
            max-width: 1280px;
            margin: 0 auto;
        }
        a {
            color: #facc15;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffdd55;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.35rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 1.8rem;
            margin-bottom: 0.75rem;
            color: #f5f7fa;
            letter-spacing: -0.01em;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
            border-bottom: 3px solid #facc15;
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #facc15;
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 2rem;
            color: #f0d78c;
        }
        h4 {
            font-size: 1.15rem;
            margin-top: 1.5rem;
            color: #d4dce8;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #cfd8e3;
        }
        strong,
        b {
            color: #f5f7fa;
            font-weight: 700;
        }
        em {
            color: #facc15;
            font-style: italic;
        }
        .container {
            padding: 1rem 0 3rem;
        }
        header {
            padding: 1.8rem 0 1rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid #2a303a;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #facc15, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
            text-shadow: 0 2px 12px rgba(250, 204, 21, 0.25);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.9rem;
            -webkit-text-fill-color: #8a95a8;
            color: #8a95a8;
            font-weight: 400;
            display: block;
            font-size: 0.7rem;
            letter-spacing: 0.2px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #facc15;
            color: #facc15;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .nav-toggle:hover {
            background: #facc15;
            color: #0b0e14;
        }
        nav {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #cbd5e1;
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: all 0.2s ease;
            font-size: 0.95rem;
            position: relative;
        }
        nav a:hover {
            color: #facc15;
            background: rgba(250, 204, 21, 0.08);
            text-decoration: none;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #facc15;
            transition: width 0.25s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            padding: 0.8rem 0;
            font-size: 0.9rem;
            color: #8a95a8;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            border-bottom: 1px solid #1e232b;
            margin-bottom: 1.5rem;
            width: 100%;
        }
        .breadcrumb a {
            color: #a5b4cb;
        }
        .breadcrumb a:hover {
            color: #facc15;
        }
        .breadcrumb span {
            color: #facc15;
        }
        .search-bar {
            display: flex;
            gap: 0.5rem;
            max-width: 520px;
            margin: 1.8rem 0 2rem;
            flex-wrap: wrap;
        }
        .search-bar input {
            flex: 1;
            min-width: 180px;
            padding: 0.75rem 1.2rem;
            border-radius: 40px;
            border: 1px solid #2a303a;
            background: #161c26;
            color: #e8edf2;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s ease;
        }
        .search-bar input:focus {
            border-color: #facc15;
        }
        .search-bar button {
            padding: 0.75rem 1.6rem;
            border-radius: 40px;
            border: none;
            background: #facc15;
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-bar button:hover {
            background: #ffdd44;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(250, 204, 21, 0.3);
        }
        .hero-img {
            margin: 2rem 0 2.5rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
            background: #1a212b;
            padding: 0.5rem;
        }
        .hero-img img {
            border-radius: 12px;
            width: 100%;
            min-height: 200px;
            object-fit: cover;
            background: #2a3340;
        }
        section {
            margin-bottom: 2.8rem;
        }
        .content-card {
            background: #121820;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin: 1.5rem 0;
            border-left: 4px solid #facc15;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
        }
        .content-card p:last-child {
            margin-bottom: 0;
        }
        .highlight-box {
            background: linear-gradient(145deg, #1a232f, #0f151d);
            border-radius: 14px;
            padding: 1.5rem 2rem;
            margin: 1.8rem 0;
            border: 1px solid #2a3440;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.2rem;
            margin: 2rem 0;
        }
        .stat-item {
            background: #161e2a;
            padding: 1.2rem 1rem;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #28303c;
            transition: transform 0.25s ease, border-color 0.25s ease;
        }
        .stat-item:hover {
            transform: translateY(-4px);
            border-color: #facc15;
        }
        .stat-item .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #facc15;
            display: block;
        }
        .stat-item .label {
            font-size: 0.9rem;
            color: #9aa8bb;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .comment-section,
        .rating-section {
            background: #121820;
            border-radius: 16px;
            padding: 2rem;
            margin: 2.5rem 0;
            border: 1px solid #242c38;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            border-bottom: 1px solid #2a3440;
            padding-bottom: 0.6rem;
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.2rem;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form input,
        .rating-form select {
            padding: 0.8rem 1rem;
            border-radius: 10px;
            border: 1px solid #2a3440;
            background: #1a232f;
            color: #e8edf2;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s ease;
            width: 100%;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form input:focus,
        .rating-form select:focus {
            border-color: #facc15;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            align-self: flex-start;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            border: none;
            background: #facc15;
            color: #0b0e14;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #ffdd44;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(250, 204, 21, 0.25);
        }
        friend-link {
            display: block;
            padding: 1.8rem 0;
            border-top: 1px solid #242c38;
            margin-top: 2.5rem;
        }
        friend-link .fl-title {
            font-weight: 700;
            color: #facc15;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1rem 0.3rem 0;
            padding: 0.3rem 0.8rem;
            background: #1a232f;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid #2a3440;
            transition: all 0.2s ease;
        }
        friend-link a:hover {
            background: #facc15;
            color: #0b0e14;
            border-color: #facc15;
            text-decoration: none;
        }
        footer {
            padding: 2rem 0 3rem;
            border-top: 1px solid #242c38;
            text-align: center;
            color: #7a879a;
            font-size: 0.9rem;
        }
        footer .copyright {
            margin-top: 1rem;
            letter-spacing: 0.3px;
        }
        footer .copyright strong {
            color: #cbd5e1;
        }
        @media (max-width: 767px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0.5rem;
                padding: 1.2rem 0 0.8rem;
                border-top: 1px solid #242c38;
                margin-top: 1rem;
            }
            nav.active {
                display: flex;
            }
            nav a {
                padding: 0.6rem 1rem;
                width: 100%;
                border-radius: 8px;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .content-card {
                padding: 1.2rem 1.2rem;
            }
            .comment-section,
            .rating-section {
                padding: 1.2rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .search-bar input {
                min-width: 120px;
            }
            .hero-img {
                margin: 1rem 0 1.5rem;
            }
            body {
                padding: 0 12px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
        }
        @media (min-width: 768px) and (max-width: 1023px) {
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .my-logo {
                font-size: 1.8rem;
            }
        }
        @media (min-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        .text-muted {
            color: #8a95a8;
            font-size: 0.9rem;
        }
        .update-badge {
            display: inline-block;
            background: #1e293b;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #facc15;
            border: 1px solid #2a3440;
            margin-bottom: 0.8rem;
        }
        .mt-2 {
            margin-top: 1.5rem;
        }
        .flex-icon {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        :target {
            scroll-margin-top: 80px;
        }
        .article-content p {
            margin-bottom: 1.3rem;
        }
        .article-content ul,
        .article-content ol {
            margin-bottom: 1.3rem;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            padding: 0.5rem 0;
            list-style: none;
        }
        .link-list-inline li {
            margin-bottom: 0;
        }
        .link-list-inline a {
            font-weight: 500;
        }
