        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f0f0f;
            color: #e0e0e0;
            line-height: 1.7;
            background-image: linear-gradient(rgba(15, 15, 15, 0.97), rgba(15, 15, 15, 0.97)), url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%231a1a1a"/><path d="M0 50L50 0L100 50L50 100Z" fill="%23222222" opacity="0.3"/>');
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 5px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(20, 20, 20, 0.95);
            border-bottom: 2px solid #3a2810;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #b8860b, #d4af37, #daa520);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: #8b0000;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #d4af37;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #d4af37;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px solid #333;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #d4af37;
        }
        .breadcrumb i {
            margin: 0 0.5rem;
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        article {
            background: rgba(30, 30, 30, 0.7);
            border-radius: 10px;
            padding: 2.5rem;
            border: 1px solid #444;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            color: #d4af37;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 5px solid #8b0000;
            padding-left: 1rem;
        }
        .article-meta {
            color: #aaa;
            margin-bottom: 2rem;
            font-size: 0.95rem;
            display: flex;
            gap: 1.5rem;
        }
        .article-meta i {
            margin-right: 0.5rem;
        }
        h2, h3 {
            color: #e8c469;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid #3a2810;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.6rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, #3a2810, #5a3c1a);
            border-left: 4px solid #d4af37;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .inline-link {
            font-weight: 700;
            border-bottom: 1px dashed #d4af37;
        }
        .feature-img {
            width: 100%;
            margin: 2.5rem auto;
            border: 3px solid #3a2810;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
        }
        .feature-img figcaption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        aside {
            background: rgba(30, 30, 30, 0.7);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid #444;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h4 {
            color: #d4af37;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #444;
        }
        .search-box {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-box input {
            flex-grow: 1;
            padding: 0.8rem;
            background: #222;
            border: 1px solid #444;
            border-right: none;
            border-radius: 5px 0 0 5px;
            color: #fff;
        }
        .search-box button {
            background: #8b0000;
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #a52a2a;
        }
        .rating-widget, .comment-widget {
            background: rgba(40, 40, 40, 0.8);
            padding: 1.5rem;
            border-radius: 8px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #555;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffd700;
            transform: scale(1.1);
        }
        .rating-widget button, .comment-widget button {
            width: 100%;
            padding: 0.8rem;
            background: linear-gradient(to bottom, #3a2810, #2a1800);
            color: #e8c469;
            border: 1px solid #5a3c1a;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        .rating-widget button:hover, .comment-widget button:hover {
            background: linear-gradient(to bottom, #4a3810, #3a2800);
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
        }
        .comment-widget textarea {
            width: 100%;
            height: 120px;
            padding: 0.8rem;
            background: #222;
            border: 1px solid #444;
            border-radius: 5px;
            color: #fff;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #444;
        }
        .related-links li:last-child {
            border-bottom: none;
        }
        .related-links a {
            display: block;
            padding: 0.3rem 0;
        }
        .related-links a:hover {
            padding-left: 5px;
        }
        .footer-links-section {
            background: rgba(20, 20, 20, 0.9);
            padding: 3rem 0;
            margin-top: 3rem;
            border-top: 2px solid #3a2810;
            border-bottom: 2px solid #3a2810;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(40, 40, 40, 0.6);
            padding: 1.2rem;
            border-radius: 5px;
            border-left: 3px solid #8b0000;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(50, 50, 50, 0.8);
        }
        footer {
            text-align: center;
            padding: 2rem 0;
            color: #aaa;
            font-size: 0.9rem;
            background: rgba(10, 10, 10, 0.95);
        }
        .copyright {
            margin-top: 1rem;
            border-top: 1px solid #333;
            padding-top: 1rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(20, 20, 20, 0.98);
                flex-direction: column;
                padding: 1rem;
                border-top: 1px solid #444;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            article {
                padding: 1.5rem;
            }
        }
