* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Roboto, Arial, sans-serif;
            background: #0f0b1a;
            color: #e8e3f0;
            line-height: 1.7;
            font-size: 17px;
            scroll-behavior: smooth;
        }
        a {
            color: #b48aff;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #d4bfff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #1a122e, #23183d);
            border-bottom: 2px solid #3c2a5e;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 26px;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #ff7bff, #b48aff, #7bc9ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 40px rgba(180, 138, 255, 0.25);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 13px;
            font-weight: 400;
            -webkit-text-fill-color: #a99cc9;
            color: #a99cc9;
            display: block;
            letter-spacing: 0.3px;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #5d43a0;
            color: #d4c8f0;
            font-size: 24px;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.25s;
        }
        .hamburger:hover {
            background: #2f2050;
        }
        .hamburger.active {
            background: #3c2a5e;
            border-color: #b48aff;
        }
        nav {
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #c8bce8;
            font-weight: 500;
            font-size: 15px;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        nav a:hover {
            color: #fff;
            border-bottom-color: #b48aff;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 6px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 16px;
                border-radius: 8px;
                background: rgba(60, 42, 94, 0.4);
                border-bottom: none;
            }
            nav a:hover {
                background: rgba(60, 42, 94, 0.8);
                border-bottom: none;
            }
            .header-inner {
                align-items: center;
            }
        }
        .breadcrumb {
            background: #161025;
            padding: 10px 0;
            border-bottom: 1px solid #2a1f3f;
            font-size: 14px;
            color: #988bb8;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "/";
            margin-right: 12px;
            color: #5d4a7a;
        }
        .breadcrumb a {
            color: #b48aff;
        }
        .breadcrumb a:hover {
            color: #d4bfff;
        }
        .breadcrumb .active {
            color: #d0c4ec;
            font-weight: 500;
        }
        main {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 12px;
            background: linear-gradient(135deg, #ff9bff, #b48aff, #7bc9ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .article-body .subtitle {
            color: #b0a2cf;
            font-size: 1.1rem;
            margin-bottom: 24px;
            border-left: 4px solid #5d43a0;
            padding-left: 18px;
        }
        .article-body .last-updated {
            font-size: 14px;
            color: #8a7aaa;
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .article-body .last-updated i {
            color: #b48aff;
        }
        .article-body h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 48px 0 16px;
            color: #d8ccf8;
            border-bottom: 2px solid #2f2050;
            padding-bottom: 8px;
        }
        .article-body h3 {
            font-size: 1.45rem;
            font-weight: 600;
            margin: 32px 0 12px;
            color: #c8b8e8;
        }
        .article-body h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #b8a8d8;
        }
        .article-body p {
            margin-bottom: 18px;
            color: #ddd8ec;
        }
        .article-body ul,
        .article-body ol {
            margin: 12px 0 22px 24px;
            color: #ddd8ec;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .article-body strong {
            color: #f0e8ff;
            font-weight: 700;
        }
        .article-body .feature-box {
            background: linear-gradient(135deg, #1e1435, #2a1d45);
            border-left: 4px solid #b48aff;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 28px 0;
        }
        .article-body .feature-box h4 {
            margin-top: 0;
            color: #d4c0f0;
        }
        .article-body .feature-box p:last-child {
            margin-bottom: 0;
        }
        .article-body .emoji-big {
            font-size: 1.8rem;
            margin-right: 6px;
        }
        .featured-image {
            margin: 32px 0 28px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
            background: #1a1230;
            padding: 4px;
        }
        .featured-image img {
            border-radius: 12px;
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 16px 8px;
            font-size: 14px;
            color: #9a8ab8;
            font-style: italic;
            text-align: center;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-module {
            background: #1a1230;
            border-radius: 16px;
            padding: 22px 20px;
            margin-bottom: 28px;
            border: 1px solid #2f2050;
        }
        .sidebar-module h3 {
            font-size: 1.2rem;
            color: #d0c4ec;
            margin-bottom: 16px;
            border-bottom: 1px solid #2f2050;
            padding-bottom: 8px;
        }
        .sidebar-module ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-module li {
            margin-bottom: 10px;
        }
        .sidebar-module li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 0;
            border-bottom: 1px solid #251a3d;
            font-size: 15px;
        }
        .sidebar-module li a i {
            width: 20px;
            color: #7b5fbf;
            font-size: 14px;
        }
        .search-form {
            display: flex;
            gap: 8px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 16px;
            border-radius: 8px;
            border: 1px solid #3c2a5e;
            background: #0f0b1a;
            color: #e8e3f0;
            font-size: 15px;
            outline: none;
            transition: border 0.25s;
        }
        .search-form input:focus {
            border-color: #b48aff;
        }
        .search-form button {
            padding: 10px 18px;
            border-radius: 8px;
            border: none;
            background: linear-gradient(135deg, #5d43a0, #7b5fbf);
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(123, 95, 191, 0.4);
        }
        .comment-section,
        .rating-section {
            background: #1a1230;
            border-radius: 16px;
            padding: 28px 24px;
            margin-top: 48px;
            border: 1px solid #2f2050;
        }
        .comment-section h3,
        .rating-section h3 {
            font-size: 1.5rem;
            color: #d0c4ec;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 18px;
            border-radius: 10px;
            border: 1px solid #3c2a5e;
            background: #0f0b1a;
            color: #e8e3f0;
            font-size: 15px;
            min-height: 120px;
            resize: vertical;
            outline: none;
            transition: border 0.25s;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            border-color: #b48aff;
        }
        .comment-form .form-row {
            display: flex;
            gap: 14px;
            margin: 14px 0;
            flex-wrap: wrap;
        }
        .comment-form .form-row input {
            flex: 1;
            padding: 10px 16px;
            border-radius: 8px;
            border: 1px solid #3c2a5e;
            background: #0f0b1a;
            color: #e8e3f0;
            font-size: 15px;
            outline: none;
            min-width: 180px;
        }
        .comment-form .form-row input:focus {
            border-color: #b48aff;
        }
        .comment-form button {
            padding: 12px 32px;
            border-radius: 10px;
            border: none;
            background: linear-gradient(135deg, #5d43a0, #7b5fbf);
            color: #fff;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .comment-form button:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 24px rgba(123, 95, 191, 0.45);
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 32px;
            margin: 12px 0 18px;
            cursor: pointer;
            color: #4a3a6a;
            transition: color 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #ffc107;
        }
        .rating-stars i {
            transition: transform 0.15s, color 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .rating-form button {
            padding: 10px 28px;
            border-radius: 10px;
            border: none;
            background: linear-gradient(135deg, #5d43a0, #7b5fbf);
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            font-size: 15px;
        }
        .rating-form button:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 20px rgba(123, 95, 191, 0.4);
        }
        friend-link {
            display: block;
            background: #161025;
            border-top: 2px solid #2f2050;
            padding: 36px 0 28px;
            margin-top: 20px;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            gap: 24px 40px;
            justify-content: center;
        }
        friend-link a {
            color: #b48aff;
            font-size: 15px;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #2a1d45;
            text-decoration: none;
            color: #d4bfff;
        }
        footer {
            background: #0c0818;
            border-top: 1px solid #1f1735;
            padding: 32px 0 28px;
            text-align: center;
            color: #7a6a9a;
            font-size: 14px;
        }
        footer .copyright {
            margin-top: 8px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 6px 18px;
        }
        footer a {
            color: #8a7aaa;
        }
        footer a:hover {
            color: #b48aff;
        }
        @media (max-width: 480px) {
            .article-body h1 {
                font-size: 1.9rem;
            }
            .article-body h2 {
                font-size: 1.5rem;
            }
            .article-body h3 {
                font-size: 1.2rem;
            }
            .container {
                padding: 0 14px;
            }
            .comment-section,
            .rating-section {
                padding: 18px 16px;
            }
            .rating-stars {
                font-size: 28px;
            }
            .sidebar-module {
                padding: 16px;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0f0b1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #3c2a5e;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #5d43a0;
        }
        ::selection {
            background: #7b5fbf;
            color: #fff;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .text-gradient {
            background: linear-gradient(135deg, #ff9bff, #b48aff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
