* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0d0d1a;
            color: #e6e6e6;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #ffd700;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffec80;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #0a0a1a 0%, #1a1a3e 100%);
            border-bottom: 3px solid #ffd700;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
        }
        .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, #ffd700, #ffb800);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
            -webkit-text-fill-color: transparent;
        }
        .my-logo a:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            letter-spacing: 2px;
            font-weight: 300;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #ffd700;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
            transition: transform 0.3s;
        }
        .nav-toggle:hover {
            transform: scale(1.1);
        }
        nav {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            background: rgba(255, 215, 0, 0.08);
            border: 1px solid rgba(255, 215, 0, 0.15);
            transition: all 0.3s ease;
            color: #e6e6e6;
        }
        nav a:hover {
            background: rgba(255, 215, 0, 0.2);
            border-color: #ffd700;
            color: #ffd700;
            text-decoration: none;
            transform: translateY(-2px);
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 12px 0 4px 0;
            font-size: 0.85rem;
            color: #999;
            width: 100%;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 10px;
            color: #ffd700;
        }
        .breadcrumb a {
            color: #bbb;
        }
        .breadcrumb a:hover {
            color: #ffd700;
        }
        .breadcrumb .active {
            color: #ffd700;
        }
        .hero {
            padding: 40px 0 20px 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffd700, #ffaa00, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 15px;
            text-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
        }
        .hero p {
            font-size: 1.2rem;
            color: #ccc;
            max-width: 800px;
            margin: 0 auto 20px auto;
        }
        .hero .update-badge {
            display: inline-block;
            background: rgba(255, 215, 0, 0.12);
            border: 1px solid rgba(255, 215, 0, 0.25);
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            color: #ffd700;
        }
        .hero .update-badge i {
            margin-right: 8px;
        }
        main {
            padding: 20px 0 50px 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
        }
        .content-body h2 {
            font-size: 2rem;
            color: #ffd700;
            margin: 40px 0 15px 0;
            border-left: 5px solid #ffd700;
            padding-left: 18px;
        }
        .content-body h3 {
            font-size: 1.5rem;
            color: #f0e6d0;
            margin: 30px 0 12px 0;
        }
        .content-body h4 {
            font-size: 1.2rem;
            color: #ddd;
            margin: 20px 0 10px 0;
            font-weight: 600;
        }
        .content-body p {
            margin-bottom: 18px;
            color: #d0d0d0;
            font-size: 1.02rem;
        }
        .content-body ul,
        .content-body ol {
            margin: 0 0 20px 30px;
            color: #ccc;
        }
        .content-body li {
            margin-bottom: 8px;
        }
        .content-body .highlight-box {
            background: rgba(255, 215, 0, 0.06);
            border-left: 4px solid #ffd700;
            padding: 20px 25px;
            border-radius: 0 12px 12px 0;
            margin: 25px 0;
        }
        .content-body .highlight-box strong {
            color: #ffd700;
        }
        .content-body .emoji-big {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.9rem;
            color: #999;
            padding: 10px 0 0 0;
            font-style: italic;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 215, 0, 0.12);
            border-radius: 16px;
            padding: 24px 20px;
            margin-bottom: 25px;
            transition: border-color 0.3s;
        }
        .sidebar-card:hover {
            border-color: rgba(255, 215, 0, 0.3);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            color: #ffd700;
            margin-bottom: 15px;
            border-bottom: 1px solid rgba(255, 215, 0, 0.15);
            padding-bottom: 10px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 6px 0;
        }
        .sidebar-card ul li a {
            color: #ccc;
            font-size: 0.95rem;
        }
        .sidebar-card ul li a:hover {
            color: #ffd700;
            padding-left: 4px;
        }
        .search-form {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 16px;
            border-radius: 30px;
            border: 1px solid rgba(255, 215, 0, 0.2);
            background: rgba(0, 0, 0, 0.4);
            color: #fff;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input:focus {
            border-color: #ffd700;
        }
        .search-form button {
            background: #ffd700;
            border: none;
            border-radius: 50%;
            width: 48px;
            height: 48px;
            color: #0d0d1a;
            font-size: 1.2rem;
            cursor: pointer;
            transition: transform 0.3s, background 0.3s;
        }
        .search-form button:hover {
            transform: scale(1.05);
            background: #ffec80;
        }
        .comment-rating-section {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 215, 0, 0.15);
        }
        .comment-rating-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        .comment-box,
        .rating-box {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 215, 0, 0.1);
            border-radius: 16px;
            padding: 25px;
        }
        .comment-box h3,
        .rating-box h3 {
            color: #ffd700;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        .comment-box textarea {
            width: 100%;
            padding: 14px;
            border-radius: 12px;
            border: 1px solid rgba(255, 215, 0, 0.15);
            background: rgba(0, 0, 0, 0.3);
            color: #fff;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border 0.3s;
        }
        .comment-box textarea:focus {
            border-color: #ffd700;
        }
        .comment-box input[type="text"] {
            width: 100%;
            padding: 12px 14px;
            border-radius: 12px;
            border: 1px solid rgba(255, 215, 0, 0.15);
            background: rgba(0, 0, 0, 0.3);
            color: #fff;
            font-size: 0.95rem;
            margin: 10px 0;
            outline: none;
            transition: border 0.3s;
        }
        .comment-box input[type="text"]:focus {
            border-color: #ffd700;
        }
        .comment-box button,
        .rating-box button {
            background: #ffd700;
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 700;
            color: #0d0d1a;
            cursor: pointer;
            font-size: 1rem;
            transition: transform 0.3s, background 0.3s;
            margin-top: 10px;
        }
        .comment-box button:hover,
        .rating-box button:hover {
            transform: scale(1.02);
            background: #ffec80;
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            margin: 10px 0;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating i {
            transition: color 0.3s, transform 0.2s;
        }
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #ffd700;
            transform: scale(1.1);
        }
        .star-rating .active {
            color: #ffd700;
        }
        footer {
            background: #08081a;
            border-top: 2px solid rgba(255, 215, 0, 0.15);
            padding: 40px 0 20px 0;
            margin-top: 40px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }
        footer h4 {
            color: #ffd700;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        footer p,
        footer a {
            color: #bbb;
            font-size: 0.95rem;
        }
        footer a:hover {
            color: #ffd700;
        }
        friend-link {
            display: block;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 215, 0, 0.08);
            border-bottom: 1px solid rgba(255, 215, 0, 0.08);
            margin: 20px 0;
        }
        friend-link span {
            font-weight: 700;
            color: #ffd700;
            display: block;
            margin-bottom: 10px;
            font-size: 1rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            padding: 4px 12px;
            border-radius: 20px;
            background: rgba(255, 215, 0, 0.06);
            border: 1px solid rgba(255, 215, 0, 0.1);
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        friend-link a:hover {
            background: rgba(255, 215, 0, 0.15);
            border-color: #ffd700;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            color: #777;
            font-size: 0.85rem;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: relative;
                top: 0;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .sidebar .sidebar-card {
                margin-bottom: 0;
            }
            footer .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 15px;
                gap: 6px;
                background: rgba(10, 10, 30, 0.95);
                padding: 15px 10px;
                border-radius: 16px;
                border: 1px solid rgba(255, 215, 0, 0.1);
            }
            nav.open {
                display: flex;
            }
            nav a {
                width: 100%;
                text-align: center;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .comment-rating-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            footer .footer-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .content-body h2 {
                font-size: 1.5rem;
            }
            .content-body h3 {
                font-size: 1.2rem;
            }
            .search-form input {
                padding: 10px 14px;
                font-size: 0.85rem;
            }
            .search-form button {
                width: 42px;
                height: 42px;
                font-size: 1rem;
            }
        }
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.7s ease forwards;
        }
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #ffd700, transparent);
            margin: 40px 0;
            opacity: 0.3;
        }
        .tag {
            display: inline-block;
            background: rgba(255, 215, 0, 0.1);
            padding: 2px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #ffd700;
            margin-right: 6px;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0d1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #ffd700;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ffec80;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        .table-wrap table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            overflow: hidden;
        }
        .table-wrap th,
        .table-wrap td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 215, 0, 0.08);
        }
        .table-wrap th {
            background: rgba(255, 215, 0, 0.1);
            color: #ffd700;
            font-weight: 600;
        }
        .table-wrap tr:hover td {
            background: rgba(255, 215, 0, 0.03);
        }
