        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0e0c14;
            color: #e8e3d9;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #f0c14b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.35rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: #1a1625;
            border-bottom: 3px solid #f0c14b;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem 1.5rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #f0c14b;
            text-shadow: 2px 2px 0 #3a2a1a;
            transition: transform 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #ffd966;
        }
        .my-logo i {
            font-size: 1.6rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f0c14b;
            color: #f0c14b;
            font-size: 1.6rem;
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s ease;
        }
        .nav-toggle:hover {
            background: #2a1f3a;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 0.25rem 0.1rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-menu li a {
            display: block;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #d4cec4;
            transition: background 0.2s ease, color 0.2s ease;
        }
        .nav-menu li a:hover,
        .nav-menu li a:focus-visible {
            background: #2f2542;
            color: #f0c14b;
            text-decoration: none;
        }
        .nav-menu li a i {
            margin-right: 0.35rem;
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: #1f1a2a;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #2f2542;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #7a6f8a;
        }
        .breadcrumb a {
            color: #b0a8c0;
        }
        .breadcrumb a:hover {
            color: #f0c14b;
        }
        .breadcrumb .current {
            color: #f0c14b;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #1a1625 0%, #2a1f3a 100%);
            padding: 2.5rem 0 2rem;
            text-align: center;
            border-bottom: 1px solid #3a2a4a;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #f0c14b;
            text-shadow: 3px 3px 0 #2a1a0a;
            margin-bottom: 0.75rem;
            letter-spacing: -0.5px;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 780px;
            margin: 0 auto 1rem;
            color: #c8c0b8;
        }
        .hero .meta-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem 2rem;
            font-size: 0.9rem;
            color: #9a8fa8;
        }
        .hero .meta-info i {
            margin-right: 0.4rem;
            color: #f0c14b;
        }
        .main-content {
            padding: 2rem 0 3rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media (min-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr 300px;
            }
        }
        .article-body h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #f0c14b;
            margin: 2.5rem 0 1rem 0;
            padding-bottom: 0.4rem;
            border-bottom: 2px solid #3a2a4a;
            position: relative;
        }
        .article-body h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: #f0c14b;
            margin-top: 0.3rem;
        }
        .article-body h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e0c878;
            margin: 1.8rem 0 0.8rem 0;
        }
        .article-body h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #d4b86a;
            margin: 1.4rem 0 0.5rem 0;
        }
        .article-body p {
            margin-bottom: 1rem;
            font-size: 1.05rem;
            color: #ddd8d0;
        }
        .article-body p strong {
            color: #f5e6c8;
        }
        .article-body ul,
        .article-body ol {
            margin-bottom: 1.2rem;
            color: #d5cec4;
        }
        .article-body li {
            margin-bottom: 0.4rem;
        }
        .article-body blockquote {
            border-left: 4px solid #f0c14b;
            padding: 0.8rem 1.2rem;
            margin: 1.5rem 0;
            background: #1f1a2a;
            border-radius: 0 8px 8px 0;
            font-style: italic;
            color: #c8c0b8;
        }
        .article-body blockquote footer {
            font-style: normal;
            font-size: 0.85rem;
            color: #9a8fa8;
            margin-top: 0.4rem;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            background: #1f1a2a;
        }
        .featured-image img {
            width: 100%;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
            color: #a89fb0;
            background: #1a1625;
            text-align: center;
            border-top: 1px solid #2f2542;
        }
        .sidebar {
            background: #1a1625;
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid #2f2542;
            height: fit-content;
            position: sticky;
            top: 5.5rem;
        }
        .sidebar h3 {
            font-size: 1.3rem;
            color: #f0c14b;
            border-bottom: 2px solid #2f2542;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar ul li {
            padding: 0.35rem 0;
            border-bottom: 1px solid #252030;
        }
        .sidebar ul li a {
            color: #c8c0b8;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar ul li a:hover {
            color: #f0c14b;
            text-decoration: none;
        }
        .sidebar ul li a i {
            font-size: 0.75rem;
            color: #f0c14b;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin: 1.5rem 0 2rem;
            background: #1f1a2a;
            padding: 0.3rem;
            border-radius: 30px;
            border: 1px solid #2f2542;
        }
        .search-form input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 0.6rem 1rem;
            color: #e8e3d9;
            font-size: 1rem;
            outline: none;
            border-radius: 30px;
        }
        .search-form input::placeholder {
            color: #7a6f8a;
        }
        .search-form button {
            background: #f0c14b;
            border: none;
            padding: 0.6rem 1.4rem;
            border-radius: 30px;
            font-weight: 700;
            color: #1a1625;
            cursor: pointer;
            transition: background 0.25s ease, transform 0.15s ease;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .interaction-section {
            margin: 3rem 0 2rem;
            padding: 2rem;
            background: #1a1625;
            border-radius: 12px;
            border: 1px solid #2f2542;
        }
        .interaction-section h3 {
            color: #f0c14b;
            font-size: 1.6rem;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #d4cec4;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            background: #252030;
            border: 1px solid #3a2a4a;
            border-radius: 8px;
            color: #e8e3d9;
            font-size: 1rem;
            transition: border 0.2s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #f0c14b;
            outline: none;
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .btn-primary {
            background: #f0c14b;
            color: #1a1625;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s ease, transform 0.15s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-primary:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 0.4rem;
            font-size: 1.8rem;
            color: #4a3f5a;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            transition: color 0.2s ease, transform 0.15s ease;
            color: #4a3f5a;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #f0c14b;
            transform: scale(1.1);
        }
        .site-footer {
            background: #0e0c14;
            border-top: 2px solid #2f2542;
            padding: 2.5rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        @media (min-width: 768px) {
            .footer-inner {
                grid-template-columns: 2fr 1fr 1fr;
            }
        }
        .footer-col h4 {
            color: #f0c14b;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            border-bottom: 1px solid #2f2542;
            padding-bottom: 0.4rem;
        }
        .footer-col p,
        .footer-col li {
            font-size: 0.9rem;
            color: #a89fb0;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col ul li {
            padding: 0.2rem 0;
        }
        .footer-col ul li a {
            color: #b8b0c0;
        }
        .footer-col ul li a:hover {
            color: #f0c14b;
        }
        friend-link {
            display: block;
            padding: 0.5rem 0;
        }
        friend-link a {
            color: #c8c0b8;
            font-weight: 500;
            margin: 0 0.5rem 0.25rem 0;
            display: inline-block;
        }
        friend-link a:hover {
            color: #f0c14b;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
            border-top: 1px solid #1f1a2a;
            font-size: 0.85rem;
            color: #6a6078;
        }
        .copyright a {
            color: #b0a8b8;
        }
        .copyright a:hover {
            color: #f0c14b;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: inline-block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1a1625;
                border-radius: 0 0 12px 12px;
                padding: 0.5rem 0;
                margin-top: 0.5rem;
                border: 1px solid #2f2542;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                padding: 0.6rem 1.2rem;
                border-radius: 0;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .article-body h2 {
                font-size: 1.6rem;
            }
            .article-body h3 {
                font-size: 1.3rem;
            }
            .sidebar {
                position: static;
                margin-top: 2rem;
            }
            .interaction-section {
                padding: 1.2rem;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            .header-inner {
                gap: 0.5rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .article-body p {
                font-size: 0.98rem;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #f0c14b;
            color: #1a1625;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 20px rgba(240, 193, 75, 0.3);
            transition: transform 0.25s ease, background 0.25s ease;
            z-index: 999;
            border: none;
            cursor: pointer;
        }
        .scroll-top:hover {
            transform: translateY(-4px);
            background: #ffd966;
        }
        .text-muted {
            color: #7a6f8a;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .gap-1 {
            gap: 1rem;
        }
        .badge {
            display: inline-block;
            background: #2f2542;
            color: #f0c14b;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.2rem 0.7rem;
            border-radius: 20px;
            letter-spacing: 0.3px;
        }
