*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0b0b0b;
            color: #e6dccb;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
            border-bottom: 3px solid #f5c542;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f5c542, #d4a017);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(245, 197, 66, 0.3);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.55rem;
            display: block;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            letter-spacing: 1px;
            font-weight: 300;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5c542;
            color: #f5c542;
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f5c542;
            color: #0b0b0b;
        }
        .main-nav {
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            font-size: 0.95rem;
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            color: #d9cdb5;
        }
        .main-nav a:hover {
            border-bottom-color: #f5c542;
            color: #f5c542;
            text-decoration: none;
        }
        .main-nav .active {
            color: #f5c542;
            border-bottom-color: #f5c542;
        }
        .breadcrumb {
            background: #141414;
            padding: 10px 0;
            border-bottom: 1px solid #2a2a2a;
            font-size: 0.85rem;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #887b64;
        }
        .breadcrumb a {
            color: #b8a98c;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb .current {
            color: #f5c542;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #1e1a14 0%, #0b0b0b 70%);
            padding: 50px 0 40px;
            border-bottom: 2px solid #f5c54230;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5c542, #e6b422);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.2rem;
            color: #c4b89e;
            max-width: 800px;
            margin: 0 auto 12px;
        }
        .hero .meta-info {
            font-size: 0.9rem;
            color: #887b64;
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-top: 16px;
        }
        .hero .meta-info i {
            margin-right: 6px;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            background: #141414;
            border-radius: 12px;
            padding: 24px 20px;
            border: 1px solid #2a2a2a;
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            color: #f5c542;
            font-size: 1.2rem;
            margin-bottom: 16px;
            border-bottom: 1px solid #2a2a2a;
            padding-bottom: 10px;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 10px;
        }
        .sidebar li a {
            color: #c4b89e;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: 0.2s;
        }
        .sidebar li a:hover {
            color: #f5c542;
            transform: translateX(4px);
        }
        .sidebar li a i {
            width: 18px;
            color: #f5c542;
            font-size: 0.8rem;
        }
        article h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 18px;
            color: #f5c542;
            border-left: 5px solid #f5c542;
            padding-left: 18px;
        }
        article h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 36px 0 14px;
            color: #e6d4b5;
        }
        article h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #d4bf9a;
        }
        article p {
            margin-bottom: 18px;
            color: #d9cdb5;
            font-size: 1.05rem;
        }
        article ul,
        article ol {
            margin: 12px 0 20px 24px;
            color: #d9cdb5;
        }
        article li {
            margin-bottom: 8px;
        }
        article .highlight-box {
            background: #1e1a14;
            border-left: 4px solid #f5c542;
            padding: 18px 24px;
            border-radius: 6px;
            margin: 24px 0;
        }
        article .highlight-box strong {
            color: #f5c542;
        }
        article .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        article .stat-card {
            background: #1a1a1a;
            border-radius: 10px;
            padding: 20px 16px;
            text-align: center;
            border: 1px solid #2a2a2a;
            transition: 0.3s;
        }
        article .stat-card:hover {
            border-color: #f5c542;
            transform: translateY(-4px);
        }
        article .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #f5c542;
            display: block;
        }
        article .stat-card .label {
            font-size: 0.9rem;
            color: #a89c84;
            margin-top: 4px;
        }
        .featured-image {
            border-radius: 12px;
            overflow: hidden;
            margin: 32px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .featured-image figcaption {
            background: #141414;
            padding: 10px 16px;
            font-size: 0.85rem;
            color: #887b64;
            border-top: 1px solid #2a2a2a;
        }
        .form-section {
            background: #141414;
            border-radius: 12px;
            padding: 28px 24px;
            margin: 40px 0;
            border: 1px solid #2a2a2a;
        }
        .form-section h3 {
            color: #f5c542;
            font-size: 1.4rem;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: #c4b89e;
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            background: #0b0b0b;
            border: 1px solid #2a2a2a;
            border-radius: 8px;
            color: #e6dccb;
            font-size: 1rem;
            transition: 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #f5c542;
            outline: none;
            box-shadow: 0 0 0 3px rgba(245, 197, 66, 0.15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #f5c542;
            color: #0b0b0b;
            font-weight: 700;
            padding: 12px 32px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background: #ffd966;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(245, 197, 66, 0.3);
        }
        .btn-secondary {
            background: transparent;
            border: 2px solid #f5c542;
            color: #f5c542;
        }
        .btn-secondary:hover {
            background: #f5c542;
            color: #0b0b0b;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #3a3a3a;
            cursor: pointer;
        }
        .rating-stars i {
            transition: 0.2s;
        }
        .rating-stars i.active,
        .rating-stars i:hover {
            color: #f5c542;
        }
        .comment-item {
            background: #1a1a1a;
            border-radius: 8px;
            padding: 16px 20px;
            margin-bottom: 14px;
            border-left: 3px solid #f5c542;
        }
        .comment-item .meta {
            font-size: 0.8rem;
            color: #887b64;
            display: flex;
            gap: 16px;
            margin-bottom: 6px;
        }
        .comment-item .name {
            font-weight: 600;
            color: #f5c542;
        }
        .comment-item .text {
            color: #d9cdb5;
        }
        .site-footer {
            background: #0a0a0a;
            border-top: 3px solid #f5c54220;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .site-footer h4 {
            color: #f5c542;
            font-size: 1.1rem;
            margin-bottom: 14px;
        }
        .site-footer a {
            color: #a89c84;
            display: block;
            margin-bottom: 6px;
            font-size: 0.9rem;
        }
        .site-footer a:hover {
            color: #f5c542;
        }
        friend-link {
            display: block;
            background: #141414;
            border-radius: 8px;
            padding: 16px 20px;
            border: 1px solid #2a2a2a;
            margin-bottom: 16px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            color: #c4b89e;
        }
        friend-link a:hover {
            color: #f5c542;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1a1a1a;
            font-size: 0.85rem;
            color: #665d4e;
        }
        .copyright a {
            color: #887b64;
        }
        @media (max-width: 900px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: -1;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: #111;
                padding: 16px 0;
                border-top: 1px solid #2a2a2a;
                margin-top: 10px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 20px;
                border-bottom: 1px solid #1a1a1a;
            }
            .nav-toggle {
                display: block;
            }
            .header-inner {
                align-items: center;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero p {
                font-size: 1rem;
            }
            article h2 {
                font-size: 1.5rem;
            }
            article h3 {
                font-size: 1.2rem;
            }
            .form-section {
                padding: 18px 14px;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #141414;
            border-radius: 8px;
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #2a2a2a;
        }
        th {
            background: #1e1a14;
            color: #f5c542;
            font-weight: 600;
        }
        td {
            color: #c4b89e;
        }
        .tag {
            display: inline-block;
            background: #f5c54220;
            color: #f5c542;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .back-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #f5c542;
            color: #0b0b0b;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 16px rgba(245, 197, 66, 0.3);
            transition: 0.3s;
            z-index: 999;
            border: none;
            cursor: pointer;
        }
        .back-top:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(245, 197, 66, 0.5);
        }
