* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #121212;
            color: #d0d0d0;
            line-height: 1.75;
        }
        a {
            color: #e8b84b;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #ffdd7a;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1e1e2e 0%, #2a2a3c 100%);
            border-bottom: 3px solid #e8b84b;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 12px 0;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #fff !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: #e8b84b;
            font-size: 2rem;
        }
        .nav-desktop {
            display: flex;
            gap: 0;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-desktop li a {
            display: block;
            padding: 10px 16px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #ccc;
            border-radius: 4px;
            transition: background 0.3s, color 0.3s;
        }
        .nav-desktop li a:hover {
            background: rgba(232, 184, 75, 0.15);
            color: #e8b84b;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #e8b84b;
            cursor: pointer;
            line-height: 1;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #1a1a2e;
            width: 100%;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .nav-mobile a {
            padding: 14px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            color: #ddd;
            font-weight: 500;
        }
        .nav-mobile a:hover {
            background: rgba(232, 184, 75, 0.08);
            color: #e8b84b;
        }
        .breadcrumb-wrap {
            background: #191919;
            padding: 10px 0;
            border-bottom: 1px solid #2a2a2a;
        }
        .breadcrumb {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            font-size: 0.85rem;
            gap: 6px;
            color: #888;
        }
        .breadcrumb a {
            color: #e8b84b;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 6px;
            color: #555;
        }
        .hero {
            text-align: center;
            padding: 50px 20px 30px;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 900;
            text-transform: uppercase;
            isplay: block;
            background: linear-gradient(90deg, #e8b84b, #f5d77a, #e8b84b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 12px;
            letter-spacing: 2px;
        }
        .hero .subtitle {
            font-size: 1.15rem;
            color: #999;
            max-width: 700px;
            margin: 0 auto;
        }
        .last-updated {
            display: inline-block;
            margin-top: 12px;
            background: #2a2a2a;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #aaa;
            border: 1px solid #3a3a3a;
        }
        .last-updated i {
            color: #e8b84b;
        }
        .content-wrap {
            display: grid;
            grid-template-columns: 260px 1fr;
            gap: 30px;
            margin: 30px 0;
        }
        .toc {
            position: sticky;
            top: 90px;
            align-self: start;
            background: #191919;
            border-radius: 12px;
            padding: 20px;
            border: 1px solid #2a2a2a;
        }
        .toc h3 {
            font-size: 1rem;
            color: #e8b84b;
            margin-bottom: 12px;
            border-bottom: 1px solid #2a2a2a;
            padding-bottom: 8px;
        }
        .toc ul {
            list-style: none;
            font-size: 0.85rem;
        }
        .toc li {
            margin: 6px 0;
        }
        .toc a {
            color: #aaa;
        }
        .toc a:hover {
            color: #e8b84b;
            padding-left: 4px;
        }
        .article {
            background: #161616;
            border-radius: 16px;
            padding: 35px;
            border: 1px solid #222;
        }
        .article h2 {
            font-size: 1.8rem;
            color: #e8b84b;
            margin: 40px 0 16px;
            border-left: 5px solid #e8b84b;
            padding-left: 15px;
        }
        .article h3 {
            font-size: 1.25rem;
            color: #f0c966;
            margin: 25px 0 10px;
        }
        .article h4 {
            font-size: 1rem;
            color: #ccc;
            margin: 15px 0 5px;
            font-weight: 600;
        }
        .article p {
            margin-bottom: 16px;
            text-align: justify;
        }
        .article ul,
        .article ol {
            margin-bottom: 20px;
            padding-left: 30px;
        }
        .article li {
            margin-bottom: 6px;
        }
        .article img {
            border-radius: 12px;
            margin: 25px 0;
            border: 1px solid #333;
            width: 100%;
        }
        .blockquote {
            background: #1e1e2e;
            border-left: 4px solid #e8b84b;
            padding: 16px 22px;
            font-style: italic;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
        .info-box {
            background: rgba(232, 184, 75, 0.08);
            border: 1px solid rgba(232, 184, 75, 0.3);
            border-radius: 8px;
            padding: 16px 20px;
            margin: 20px 0;
        }
        .table-responsive {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        th {
            background: #2a2a2a;
            color: #e8b84b;
            padding: 10px 12px;
            text-align: left;
        }
        td {
            border: 1px solid #2a2a2a;
            padding: 10px 12px;
        }
        tr:hover {
            background: #1e1e1e;
        }
        .widget-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .widget {
            background: #1a1a2e;
            border-radius: 12px;
            padding: 22px;
            text-align: center;
            border: 1px solid #2a2a2a;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .widget:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        .widget i {
            font-size: 2.2rem;
            color: #e8b84b;
            margin-bottom: 14px;
        }
        .search-section {
            background: #1a1a2e;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            margin: 40px 0;
        }
        .search-section form {
            display: flex;
            max-width: 480px;
            margin: 14px auto;
        }
        .search-section input {
            flex: 1;
            padding: 12px 18px;
            background: #121212;
            border: 1px solid #333;
            border-radius: 30px 0 0 30px;
            color: #eee;
            font-size: 1rem;
            outline: none;
        }
        .search-section button {
            background: #e8b84b;
            color: #111;
            border: none;
            padding: 0 20px;
            border-radius: 0 30px 30px 0;
            font-weight: bold;
            cursor: pointer;
        }
        .search-section button:hover {
            background: #f5d77a;
        }
        .comment-section {
            margin-top: 40px;
            background: #1a1a2e;
            border-radius: 16px;
            padding: 30px;
        }
        .comment-list .comment-item {
            background: #161620;
            padding: 16px;
            border-radius: 12px;
            margin-bottom: 14px;
            border-left: 3px solid #e8b84b;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px;
            background: #121212;
            border: 1px solid #333;
            border-radius: 8px;
            color: #eee;
            margin: 10px 0;
            min-height: 90px;
        }
        .comment-form input {
            width: 100%;
            padding: 10px 12px;
            background: #121212;
            border: 1px solid #333;
            border-radius: 8px;
            color: #eee;
            margin: 8px 0;
        }
        .btn {
            background: #e8b84b;
            border: none;
            padding: 10px 26px;
            border-radius: 30px;
            font-weight: 700;
            color: #2b1d06;
            cursor: pointer;
            display: inline-block;
            transition: background 0.3s;
            font-size: 0.9rem;
        }
        .btn:hover {
            background: #f5d77a;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            justify-content: center;
            margin: 10px 0;
        }
        .rating-stars i {
            color: #e8b84b;
            font-size: 1.5rem;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .score-form {
            text-align: center;
            margin: 20px 0;
        }
        .avg-score {
            font-size: 1.5rem;
            font-weight: bold;
            color: #e8b84b;
        }
        .faq-item {
            background: #191919;
            border-radius: 10px;
            margin: 15px 0;
            padding: 18px;
            border: 1px solid #222;
        }
        .faq-question {
            font-weight: 700;
            font-size: 1.05rem;
            color: #e8b84b;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .site-footer {
            background: #0e0e16;
            border-top: 3px solid #e8b84b;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        .site-footer h4 {
            color: #e8b84b;
            margin-bottom: 12px;
        }
        .site-footer ul {
            list-style: none;
        }
        .site-footer ul li {
            margin-bottom: 6px;
        }
        .site-footer ul a {
            color: #aaa;
            font-size: 0.9rem;
        }
        .site-footer ul a:hover {
            color: #e8b84b;
        }
        friend-link {
            display: block;
            background: #15151f;
            border-radius: 12px;
            padding: 18px 24px;
            margin: 20px 0;
            font-size: 0.9rem;
            border: 1px solid #1f1f2e;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            color: #e8b84b;
        }
        friend-link a:hover {
            color: #ffdd7a;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1a1a2e;
            margin-top: 30px;
            font-size: 0.85rem;
            color: #777;
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #e8b84b;
            color: #111;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            border: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: background 0.3s;
            z-index: 999;
        }
        .scroll-top:hover {
            background: #f5d77a;
        }
        @media (max-width: 992px) {
            .content-wrap {
                grid-template-columns: 1fr;
            }
            .toc {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-desktop {
                display: none;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .article {
                padding: 18px;
            }
            .header-inner {
                padding: 8px 0;
            }
        }
        @media (min-width: 769px) {
            .nav-mobile {
                display: none !important;
            }
        }
