* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0d0d0d;
            color: #e8e8e8;
            line-height: 1.7;
        }
        a {
            color: #f0b90b;
            text-decoration: none;
            transition: color .3s ease;
        }
        a:hover {
            color: #ffdd44;
        }
        .site-header {
            background: linear-gradient(135deg, #111 0%, #1a1a2e 100%);
            border-bottom: 2px solid #f0b90b;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .6);
        }
        .header-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 10px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #f0b90b, #ffdd88, #f0b90b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 2px;
            text-transform: uppercase;
            animation: shimmer 3s infinite;
        }
        @keyframes shimmer {
            0%,
            100% {
                filter: brightness(1);
            }
            50% {
                filter: brightness(1.3);
            }
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f0b90b;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
        }
        .nav-toggle:hover {
            background: rgba(240, 185, 11, .15);
        }
        .site-nav {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        .site-nav a {
            font-size: .95rem;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 30px;
            transition: background .3s, color .3s;
        }
        .site-nav a:hover {
            background: rgba(240, 185, 11, .2);
            color: #ffdd44;
        }
        .breadcrumb-wrap {
            background: #1a1a2e;
            border-bottom: 1px solid #333;
            padding: 8px 24px;
            font-size: .85rem;
        }
        .breadcrumb-wrap .inner {
            max-width: 1280px;
            margin: 0 auto;
        }
        .breadcrumb-wrap a {
            color: #aaa;
        }
        .breadcrumb-wrap a:hover {
            color: #f0b90b;
        }
        .breadcrumb-wrap span.sep {
            margin: 0 6px;
            color: #666;
        }
        .breadcrumb-wrap .current {
            color: #f0b90b;
            font-weight: 600;
        }
        .main-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 32px;
            padding: 32px 24px;
        }
        .article-content {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .article-content h1 {
            font-size: 2.4rem;
            color: #f0b90b;
            margin-bottom: 16px;
            line-height: 1.2;
            letter-spacing: 1px;
        }
        .article-content h2 {
            font-size: 1.8rem;
            color: #f0b90b;
            margin: 40px 0 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid #f0b90b33;
        }
        .article-content h3 {
            font-size: 1.3rem;
            color: #ffdd88;
            margin: 24px 0 12px;
        }
        .article-content h4 {
            font-size: 1.1rem;
            color: #eee;
            margin: 16px 0 8px;
            font-style: italic;
        }
        .article-content p {
            margin-bottom: 16px;
            font-size: 1rem;
            color: #d0d0d0;
        }
        .article-content ul,
        .article-content ol {
            margin: 0 0 16px 24px;
            color: #d0d0d0;
        }
        .article-content li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1a1a2e, #222244);
            border-left: 4px solid #f0b90b;
            border-radius: 8px;
            padding: 20px;
            margin: 24px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, .4);
        }
        .highlight-box .fa {
            color: #f0b90b;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin: 24px 0;
        }
        .feature-card {
            background: #1a1a2e;
            border-radius: 12px;
            padding: 24px;
            border: 1px solid #333;
            transition: transform .3s, box-shadow .3s, border-color .3s;
        }
        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 24px rgba(240, 185, 11, .2);
            border-color: #f0b90b;
        }
        .feature-card .icon {
            font-size: 2rem;
            color: #f0b90b;
            margin-bottom: 12px;
        }
        .feature-card h3 {
            color: #ffdd88;
            margin-bottom: 8px;
        }
        .feature-card p {
            font-size: .9rem;
            color: #bbb;
        }
        .image-wrapper {
            margin: 24px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
        }
        .image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
        }
        .image-caption {
            background: #111;
            padding: 10px 14px;
            font-size: .85rem;
            color: #aaa;
            text-align: center;
            border-top: 1px solid #333;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: .9rem;
        }
        .stats-table th {
            background: #1a1a2e;
            color: #f0b90b;
            padding: 12px 16px;
            text-align: left;
            border-bottom: 2px solid #f0b90b;
        }
        .stats-table td {
            padding: 10px 16px;
            border-bottom: 1px solid #333;
            color: #ccc;
        }
        .stats-table tr:hover td {
            background: #1a1a2e88;
        }
        .search-box {
            background: #1a1a2e;
            border-radius: 12px;
            padding: 24px;
            margin: 32px 0;
            border: 1px solid #333;
        }
        .search-box form {
            display: flex;
            gap: 8px;
        }
        .search-box input[type="text"] {
            flex: 1;
            padding: 12px 16px;
            border-radius: 30px;
            border: none;
            background: #222;
            color: #fff;
            font-size: 1rem;
            outline: none;
        }
        .search-box input[type="text"]:focus {
            box-shadow: 0 0 0 2px #f0b90b;
        }
        .search-box button {
            background: #f0b90b;
            color: #111;
            border: none;
            border-radius: 30px;
            padding: 12px 20px;
            font-weight: 700;
            cursor: pointer;
            transition: background .3s;
        }
        .search-box button:hover {
            background: #ffdd44;
        }
        .comments-section {
            background: #1a1a2e;
            border-radius: 12px;
            padding: 24px;
            margin: 32px 0;
            border: 1px solid #333;
        }
        .comments-section textarea {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            border: none;
            background: #222;
            color: #fff;
            font-family: inherit;
            font-size: .95rem;
            resize: vertical;
            min-height: 100px;
            margin-bottom: 12px;
        }
        .comments-section input[type="text"] {
            width: 100%;
            padding: 10px 14px;
            border-radius: 8px;
            border: none;
            background: #222;
            color: #fff;
            margin-bottom: 12px;
            font-size: .9rem;
        }
        .comments-section .btn-submit {
            background: #f0b90b;
            color: #111;
            border: none;
            border-radius: 30px;
            padding: 10px 24px;
            font-weight: 700;
            cursor: pointer;
            transition: background .3s;
        }
        .comments-section .btn-submit:hover {
            background: #ffdd44;
        }
        .rating-section {
            background: #1a1a2e;
            border-radius: 12px;
            padding: 24px;
            margin: 32px 0;
            border: 1px solid #333;
            text-align: center;
        }
        .rating-stars {
            font-size: 2rem;
            color: #666;
            cursor: pointer;
            margin: 12px 0;
            display: flex;
            justify-content: center;
            gap: 4px;
        }
        .rating-stars .fa-star {
            transition: color .2s;
        }
        .rating-stars .fa-star.active,
        .rating-stars .fa-star:hover {
            color: #f0b90b;
        }
        .rating-section .btn-score {
            background: #f0b90b;
            color: #111;
            border: none;
            border-radius: 30px;
            padding: 10px 24px;
            font-weight: 700;
            cursor: pointer;
            margin-top: 8px;
        }
        .rating-section .btn-score:hover {
            background: #ffdd44;
        }
        .sidebar-card {
            background: #1a1a2e;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 24px;
            border: 1px solid #333;
        }
        .sidebar-card h3 {
            color: #f0b90b;
            font-size: 1.1rem;
            margin-bottom: 12px;
            border-bottom: 1px solid #333;
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
        }
        .sidebar-card li {
            margin-bottom: 10px;
        }
        .sidebar-card li a {
            font-size: .9rem;
            line-height: 1.3;
        }
        .sidebar-card li a:hover {
            color: #ffdd44;
        }
        .sidebar-card .fa {
            margin-right: 6px;
            color: #f0b90b;
            width: 16px;
            text-align: center;
        }
        .site-footer {
            background: linear-gradient(135deg, #111, #1a1a2e);
            border-top: 2px solid #f0b90b;
            padding: 40px 24px 20px;
            margin-top: 48px;
        }
        .footer-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        .footer-col h3 {
            color: #f0b90b;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .footer-col p {
            font-size: .85rem;
            color: #aaa;
            line-height: 1.6;
        }
        .footer-col a {
            font-size: .85rem;
        }
        friend-link {
            display: block;
            background: #1a1a2e;
            border: 1px solid #333;
            border-radius: 8px;
            padding: 16px;
            margin-top: 16px;
            font-size: .85rem;
            color: #ccc;
        }
        friend-link a {
            margin: 0 4px;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            margin-top: 32px;
            border-top: 1px solid #222;
            color: #888;
            font-size: .8rem;
        }
        @media (max-width: 900px) {
            .main-container {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .site-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0;
                padding-top: 8px;
                background: #111;
                border-top: 1px solid #333;
            }
            .site-nav.open {
                display: flex;
            }
            .site-nav a {
                display: block;
                padding: 12px 16px;
                border-radius: 0;
                border-bottom: 1px solid #222;
            }
            .article-content h1 {
                font-size: 1.8rem;
            }
            .article-content h2 {
                font-size: 1.4rem;
            }
            .header-inner {
                padding: 8px 16px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
            .stats-table {
                font-size: .75rem;
            }
            .stats-table th,
            .stats-table td {
                padding: 6px 8px;
            }
        }
        @media (max-width: 480px) {
            .main-container {
                padding: 16px;
            }
            .breadcrumb-wrap {
                padding: 6px 12px;
            }
            .article-content p {
                font-size: .9rem;
            }
        }
        @media print {
            .site-header,
            .site-footer,
            .sidebar,
            .breadcrumb-wrap,
            .search-box,
            .comments-section,
            .rating-section {
                display: none !important;
            }
            .main-container {
                display: block;
                padding: 0;
            }
            body {
                background: #fff;
                color: #000;
            }
            .article-content p {
                color: #000;
            }
        }
