        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0b0c10;
            color: #e0e0e0;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #f0a500;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        ul,
        ol {
            padding-left: 1.8rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: #1f2233;
            border-bottom: 3px solid #f0a500;
            padding: 15px 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;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0a500, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-shadow: 0 0 20px rgba(240, 165, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: #f0a500;
            font-size: 2rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #aaa;
            display: block;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .main-nav a {
            color: #ddd;
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover {
            background: #f0a500;
            color: #0b0c10;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f0a500;
            color: #f0a500;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f0a500;
            color: #0b0c10;
        }
        .breadcrumb {
            background: #141624;
            padding: 12px 0;
            border-bottom: 1px solid #2a2d3e;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 8px;
            color: #888;
        }
        .breadcrumb a {
            color: #f0a500;
        }
        .breadcrumb .current {
            color: #aaa;
        }
        .hero {
            background: linear-gradient(135deg, #1a1d2e, #0f111a);
            padding: 50px 0 40px;
            text-align: center;
            border-bottom: 2px solid #f0a50033;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0a500, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 15px;
        }
        .hero .tagline {
            font-size: 1.1rem;
            color: #ccc;
            max-width: 800px;
            margin: 0 auto 20px;
        }
        .hero .meta-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 24px;
            font-size: 0.95rem;
            color: #aaa;
        }
        .hero .meta-info i {
            color: #f0a500;
            margin-right: 6px;
        }
        .search-section {
            background: #141624;
            padding: 24px 0;
            border-bottom: 1px solid #2a2d3e;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid #2a2d3e;
            border-radius: 8px;
            background: #1a1d2e;
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #f0a500;
        }
        .search-form button {
            padding: 14px 28px;
            background: #f0a500;
            border: none;
            border-radius: 8px;
            color: #0b0c10;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
        }
        .search-form button:hover {
            background: #ffd700;
            transform: scale(1.02);
        }
        .main-content {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content-body h2 {
            font-size: 2rem;
            color: #f0a500;
            border-bottom: 2px solid #2a2d3e;
            padding-bottom: 10px;
            margin-top: 50px;
            margin-bottom: 25px;
        }
        .content-body h3 {
            font-size: 1.5rem;
            color: #ffd700;
            margin-top: 35px;
            margin-bottom: 18px;
        }
        .content-body h4 {
            font-size: 1.2rem;
            color: #e8c56a;
            margin-top: 25px;
            margin-bottom: 12px;
        }
        .content-body p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            color: #d0d0d0;
        }
        .content-body strong {
            color: #fff;
            font-weight: 700;
        }
        .content-body .highlight-box {
            background: #1a1d2e;
            border-left: 4px solid #f0a500;
            padding: 20px 24px;
            border-radius: 0 10px 10px 0;
            margin: 30px 0;
        }
        .content-body .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .content-body ul,
        .content-body ol {
            margin-bottom: 20px;
        }
        .content-body li {
            margin-bottom: 10px;
        }
        .content-body .featured-image {
            margin: 30px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        }
        .content-body .featured-image img {
            width: 100%;
        }
        .content-body .featured-image figcaption {
            background: #1a1d2e;
            padding: 12px 18px;
            font-size: 0.9rem;
            color: #aaa;
            text-align: center;
        }
        .content-body .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: #141624;
            border-radius: 10px;
            overflow: hidden;
        }
        .content-body .data-table th {
            background: #f0a500;
            color: #0b0c10;
            padding: 14px 18px;
            text-align: left;
            font-weight: 700;
        }
        .content-body .data-table td {
            padding: 12px 18px;
            border-bottom: 1px solid #2a2d3e;
        }
        .content-body .data-table tr:last-child td {
            border-bottom: none;
        }
        .content-body .data-table tr:hover td {
            background: #1a1d2e;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #141624;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 24px;
            border: 1px solid #2a2d3e;
        }
        .sidebar-card h3 {
            color: #f0a500;
            font-size: 1.3rem;
            margin-bottom: 16px;
            border-bottom: 1px solid #2a2d3e;
            padding-bottom: 10px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 12px;
            border-bottom: 1px solid #1f2233;
            padding-bottom: 10px;
        }
        .sidebar-card li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .sidebar-card a {
            color: #ccc;
            font-weight: 500;
            transition: color 0.2s;
        }
        .sidebar-card a:hover {
            color: #f0a500;
            text-decoration: none;
        }
        .rating-section {
            background: #141624;
            border-radius: 12px;
            padding: 24px;
            margin: 30px 0;
            border: 1px solid #2a2d3e;
            text-align: center;
        }
        .rating-section h3 {
            color: #f0a500;
            margin-bottom: 16px;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 8px;
            direction: rtl;
            font-size: 2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0a500;
        }
        .rating-section .score-btn {
            margin-top: 16px;
            padding: 12px 32px;
            background: #f0a500;
            border: none;
            border-radius: 8px;
            color: #0b0c10;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-section .score-btn:hover {
            background: #ffd700;
        }
        .comments-section {
            background: #141624;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #2a2d3e;
        }
        .comments-section h3 {
            color: #f0a500;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #2a2d3e;
            border-radius: 8px;
            background: #1a1d2e;
            color: #fff;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
            outline: none;
            transition: border 0.2s;
        }
        .comment-form textarea:focus {
            border-color: #f0a500;
        }
        .comment-form .form-row {
            display: flex;
            gap: 14px;
            margin: 14px 0;
            flex-wrap: wrap;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 200px;
            padding: 12px 16px;
            border: 2px solid #2a2d3e;
            border-radius: 8px;
            background: #1a1d2e;
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .comment-form .form-row input:focus {
            border-color: #f0a500;
        }
        .comment-form .submit-btn {
            padding: 12px 32px;
            background: #f0a500;
            border: none;
            border-radius: 8px;
            color: #0b0c10;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .comment-form .submit-btn:hover {
            background: #ffd700;
        }
        .sidebar-links a {
            display: block;
            padding: 6px 0;
        }
        .site-footer {
            background: #0d0e16;
            border-top: 3px solid #f0a500;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-inner h4 {
            color: #f0a500;
            margin-bottom: 16px;
            font-size: 1.1rem;
        }
        .footer-inner p,
        .footer-inner a {
            color: #bbb;
            font-size: 0.95rem;
        }
        .footer-inner a:hover {
            color: #f0a500;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner li {
            margin-bottom: 10px;
        }
        friend-link {
            display: block;
            margin-top: 10px;
        }
        friend-link a {
            color: #f0a500;
        }
        friend-link a:hover {
            color: #ffd700;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #1f2233;
            color: #888;
            font-size: 0.9rem;
        }
        .copyright strong {
            color: #f0a500;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1f2233;
                padding: 16px 0;
                margin-top: 12px;
                border-top: 1px solid #2a2d3e;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 20px;
                width: 100%;
                text-align: center;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero .meta-info {
                flex-direction: column;
                gap: 8px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .content-body h2 {
                font-size: 1.6rem;
            }
            .content-body h3 {
                font-size: 1.3rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .comment-form .form-row input {
                min-width: unset;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .content-body p {
                font-size: 0.98rem;
            }
            .sidebar-card {
                padding: 16px;
            }
            .comments-section {
                padding: 18px;
            }
            .rating-section {
                padding: 16px;
            }
        }
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.6s ease forwards;
        }
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .schema-hidden {
            display: none;
        }
