        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0a0a1a;
            color: #e8e8f0;
            line-height: 1.75;
            min-height: 100vh;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffdd77;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #fff;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.25rem;
            border-bottom: 3px solid #f5c842;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.75rem;
            border-left: 5px solid #f5c842;
            padding-left: 0.75rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 1.75rem;
        }
        h4 {
            font-size: 1.1rem;
            color: #f5c842;
            margin-top: 1.25rem;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0d0d2b 0%, #1a1a3e 100%);
            border-bottom: 2px solid #f5c84233;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 1.25rem;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #f5c842;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f5c842, #ffdd77);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: opacity 0.3s;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.75rem;
            display: block;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            letter-spacing: 2px;
            font-weight: 300;
        }
        .nav-desktop {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-desktop li a {
            color: #ddd;
            font-weight: 500;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s, color 0.3s;
            font-size: 0.95rem;
        }
        .nav-desktop li a:hover {
            border-bottom-color: #f5c842;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5c842;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        .nav-mobile {
            display: none;
            width: 100%;
            background: #0d0d2b;
            border-top: 1px solid #f5c84222;
            padding: 1rem 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        .nav-mobile.open {
            max-height: 600px;
            display: block;
        }
        .nav-mobile ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .nav-mobile ul li a {
            display: block;
            padding: 0.75rem 1.25rem;
            color: #ddd;
            border-bottom: 1px solid #222;
            font-weight: 500;
        }
        .nav-mobile ul li a:hover {
            background: #1a1a3e;
            color: #f5c842;
            text-decoration: none;
        }
        .breadcrumb {
            background: #12122a;
            padding: 0.6rem 0;
            border-bottom: 1px solid #222;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin: 0 0.4rem;
            color: #666;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .breadcrumb .current {
            color: #f5c842;
        }
        .search-section {
            background: #12122a;
            padding: 1.25rem 0;
            border-bottom: 1px solid #222;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            gap: 0.5rem;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 2px solid #333;
            border-radius: 8px;
            background: #0a0a1a;
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5c842;
        }
        .search-form button {
            padding: 0.75rem 1.5rem;
            background: #f5c842;
            border: none;
            border-radius: 8px;
            color: #0a0a1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        .article-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-widget {
            background: #12122a;
            border-radius: 12px;
            padding: 1.25rem;
            margin-bottom: 1.5rem;
            border: 1px solid #222;
        }
        .sidebar-widget h3 {
            font-size: 1.1rem;
            margin-top: 0;
            margin-bottom: 0.75rem;
            border-bottom: 1px solid #333;
            padding-bottom: 0.5rem;
            color: #f5c842;
        }
        .sidebar-widget ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-widget ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #1a1a2e;
        }
        .sidebar-widget ul li a {
            color: #ccc;
            font-size: 0.9rem;
        }
        .sidebar-widget ul li a:hover {
            color: #f5c842;
        }
        .featured-image {
            margin: 1.5rem 0;
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid #222;
            background: #111;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.75rem 1rem;
            font-size: 0.85rem;
            color: #aaa;
            background: #0d0d1a;
            border-top: 1px solid #222;
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0;
            padding: 1.5rem;
            background: #12122a;
            border-radius: 12px;
            border: 1px solid #222;
        }
        .feedback-section h3 {
            margin-top: 0;
            grid-column: 1 / -1;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form select,
        .rating-form input {
            width: 100%;
            padding: 0.6rem 0.8rem;
            margin-bottom: 0.75rem;
            border: 2px solid #333;
            border-radius: 6px;
            background: #0a0a1a;
            color: #fff;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form select:focus {
            border-color: #f5c842;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-section button {
            padding: 0.6rem 1.5rem;
            background: #f5c842;
            border: none;
            border-radius: 6px;
            color: #0a0a1a;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .feedback-section button:hover {
            background: #ffdd77;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 0.25rem;
            font-size: 1.6rem;
            color: #444;
            cursor: pointer;
            margin-bottom: 0.75rem;
        }
        .star-rating i {
            transition: color 0.2s;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #f5c842;
        }
        .link-list-inline {
            background: #12122a;
            border-left: 4px solid #f5c842;
            padding: 1rem 1.25rem;
            margin: 1.25rem 0;
            border-radius: 0 8px 8px 0;
        }
        .link-list-inline ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .link-list-inline ul li {
            padding: 0.3rem 0;
        }
        .link-list-inline ul li a {
            font-weight: 500;
        }
        friend-link {
            display: block;
            background: #12122a;
            border-top: 2px solid #f5c84233;
            padding: 1.5rem 1.25rem;
            margin-top: 2rem;
            border-radius: 12px;
        }
        friend-link h3 {
            margin-top: 0;
            font-size: 1.2rem;
            color: #f5c842;
        }
        friend-link ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem 1.5rem;
        }
        friend-link ul li a {
            color: #ccc;
            font-size: 0.9rem;
        }
        friend-link ul li a:hover {
            color: #f5c842;
        }
        .site-footer {
            background: #0d0d1a;
            border-top: 2px solid #f5c84222;
            padding: 2rem 0;
            margin-top: 2rem;
            text-align: center;
            font-size: 0.85rem;
            color: #888;
        }
        .site-footer .copyright {
            letter-spacing: 0.5px;
        }
        .site-footer a {
            color: #aaa;
        }
        .site-footer a:hover {
            color: #f5c842;
        }
        @media (max-width: 900px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .feedback-section {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.75rem;
            }
            h2 {
                font-size: 1.35rem;
            }
        }
        @media (max-width: 700px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .nav-mobile {
                display: block;
            }
            .header-inner {
                padding: 0.5rem 1rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
            }
            friend-link ul {
                flex-direction: column;
                gap: 0.5rem;
            }
        }
        @media (min-width: 701px) {
            .nav-mobile {
                display: none !important;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0a0a1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #333;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
        .text-gold {
            color: #f5c842;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .highlight-box {
            background: #1a1a3e;
            border-radius: 8px;
            padding: 1.25rem;
            border: 1px solid #f5c84222;
            margin: 1.25rem 0;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.25rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #12122a;
            border-radius: 8px;
            overflow: hidden;
        }
        table th,
        table td {
            padding: 0.6rem 0.8rem;
            text-align: left;
            border-bottom: 1px solid #222;
        }
        table th {
            background: #1a1a3e;
            color: #f5c842;
            font-weight: 600;
        }
        table tr:hover td {
            background: #1a1a2e;
        }
