* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0f0f1a;
            color: #e8e8f0;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #f0c040;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd866;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
            border-bottom: 2px solid #f0c040;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(8px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0c040, #f7d96a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(240, 192, 64, 0.25);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f0c040;
            font-size: 2rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-menu {
            display: flex;
            gap: 24px;
            align-items: center;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-menu li a {
            color: #d0d0e0;
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .nav-menu li a:hover {
            color: #f0c040;
            border-bottom-color: #f0c040;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.7rem;
            color: #f0c040;
            cursor: pointer;
            padding: 4px 8px;
        }
        .breadcrumb {
            background: #1a1a2e;
            padding: 10px 0;
            border-bottom: 1px solid #2a2a40;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 10px;
            color: #888;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #f0c040;
        }
        .breadcrumb .active {
            color: #f0c040;
            font-weight: 600;
        }
        .hero {
            padding: 50px 0 40px;
            text-align: center;
            background: radial-gradient(ellipse at top, #1e1e38 0%, #0f0f1a 70%);
        }
        .hero h1 {
            font-size: 2.9rem;
            color: #f0c040;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            text-shadow: 0 0 40px rgba(240, 192, 64, 0.15);
        }
        .hero p {
            font-size: 1.15rem;
            color: #c0c0d0;
            max-width: 800px;
            margin: 0 auto 20px;
        }
        .hero-meta {
            font-size: 0.9rem;
            color: #999;
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .hero-meta i {
            margin-right: 6px;
            color: #f0c040;
        }
        .search-section {
            background: #1a1a2e;
            padding: 28px 0;
            border-top: 1px solid #2a2a40;
            border-bottom: 1px solid #2a2a40;
        }
        .search-form {
            display: flex;
            gap: 12px;
            max-width: 600px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 50px;
            border: 2px solid #333;
            background: #0f0f1a;
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }
        .search-form input:focus {
            border-color: #f0c040;
        }
        .search-form button {
            padding: 14px 34px;
            border-radius: 50px;
            border: none;
            background: linear-gradient(135deg, #f0c040, #d4a830);
            color: #1a1a2e;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 0 30px rgba(240, 192, 64, 0.3);
        }
        .content-wrap {
            padding: 40px 0 50px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .main-article h2 {
            font-size: 2rem;
            color: #f0c040;
            margin: 48px 0 18px;
            border-left: 5px solid #f0c040;
            padding-left: 18px;
        }
        .main-article h3 {
            font-size: 1.45rem;
            color: #f7d96a;
            margin: 36px 0 14px;
        }
        .main-article h4 {
            font-size: 1.15rem;
            color: #e0c050;
            margin: 24px 0 10px;
        }
        .main-article p {
            margin-bottom: 18px;
            color: #d0d0e0;
        }
        .main-article ul,
        .main-article ol {
            margin: 14px 0 22px 24px;
            color: #d0d0e0;
        }
        .main-article li {
            margin-bottom: 8px;
        }
        .main-article strong {
            color: #fff;
        }
        .main-article .highlight-box {
            background: #1a1a2e;
            border-left: 6px solid #f0c040;
            padding: 20px 26px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .main-article .highlight-box p {
            margin-bottom: 4px;
        }
        .main-article .stat-badge {
            display: inline-block;
            background: #2a2a40;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #f0c040;
            font-weight: 600;
            margin-right: 6px;
        }
        .featured-image {
            margin: 28px 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(240, 192, 64, 0.08);
        }
        .featured-image figcaption {
            padding: 12px 0 4px;
            font-size: 0.85rem;
            color: #999;
            text-align: center;
            font-style: italic;
        }
        .sidebar {
            background: #1a1a2e;
            border-radius: 16px;
            padding: 28px 24px;
            border: 1px solid #2a2a40;
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar h3 {
            font-size: 1.3rem;
            color: #f0c040;
            margin-bottom: 18px;
            border-bottom: 2px solid #2a2a40;
            padding-bottom: 10px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar ul li {
            margin-bottom: 10px;
            padding: 6px 0;
            border-bottom: 1px solid #222;
        }
        .sidebar ul li a {
            color: #c0c0d0;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar ul li a:hover {
            color: #f0c040;
        }
        .sidebar ul li a i {
            width: 20px;
            color: #f0c040;
            font-size: 0.85rem;
        }
        .interaction-section {
            background: #1a1a2e;
            border-radius: 16px;
            padding: 32px 30px;
            margin-top: 50px;
            border: 1px solid #2a2a40;
        }
        .interaction-section h3 {
            color: #f0c040;
            font-size: 1.5rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 700px;
        }
        .comment-form input,
        .comment-form textarea,
        .rating-form input,
        .rating-form select {
            padding: 14px 18px;
            border-radius: 10px;
            border: 2px solid #333;
            background: #0f0f1a;
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
            font-family: inherit;
        }
        .comment-form input:focus,
        .comment-form textarea:focus,
        .rating-form input:focus,
        .rating-form select:focus {
            border-color: #f0c040;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            padding: 14px 34px;
            border-radius: 50px;
            border: none;
            background: linear-gradient(135deg, #f0c040, #d4a830);
            color: #1a1a2e;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
            align-self: flex-start;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 0 30px rgba(240, 192, 64, 0.3);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
        }
        .rating-stars i.active {
            color: #f0c040;
        }
        .rating-stars i:hover {
            color: #f0c040;
            transform: scale(1.1);
        }
        friend-link {
            display: block;
            background: #1a1a2e;
            padding: 30px 0;
            border-top: 2px solid #2a2a40;
            border-bottom: 2px solid #2a2a40;
            margin-top: 20px;
        }
        friend-link .friend-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px 32px;
            justify-content: center;
        }
        friend-link .friend-inner a {
            color: #c0c0d0;
            font-weight: 500;
            padding: 6px 16px;
            background: #222;
            border-radius: 30px;
            transition: 0.2s;
            font-size: 0.9rem;
        }
        friend-link .friend-inner a:hover {
            background: #f0c040;
            color: #1a1a2e;
            text-decoration: none;
        }
        friend-link .friend-label {
            text-align: center;
            font-size: 0.85rem;
            color: #888;
            margin-bottom: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        footer {
            background: #0a0a14;
            padding: 36px 0 24px;
            text-align: center;
            border-top: 1px solid #1a1a2e;
        }
        footer p {
            color: #888;
            font-size: 0.85rem;
            margin-bottom: 4px;
        }
        footer a {
            color: #f0c040;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                margin-top: 40px;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 8px;
                padding: 18px 0 8px;
                border-top: 1px solid #2a2a40;
                margin-top: 12px;
            }
            .nav-menu.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .search-form input {
                min-width: 160px;
            }
            .interaction-section {
                padding: 20px 18px;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
            .main-article h2 {
                font-size: 1.6rem;
            }
            .main-article h3 {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .hero-meta {
                flex-direction: column;
                gap: 6px;
            }
            .search-form button {
                width: 100%;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
                gap: 4px 8px;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo i {
                font-size: 1.4rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0f0f1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #333;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #f0c040;
        }
        .text-gold {
            color: #f0c040;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-2 {
            margin-top: 10px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .gap-2 {
            gap: 8px;
        }
        .btn-sm {
            padding: 6px 18px;
            border-radius: 30px;
            border: 1px solid #f0c040;
            background: transparent;
            color: #f0c040;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.8rem;
        }
        .btn-sm:hover {
            background: #f0c040;
            color: #1a1a2e;
        }
