        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0c0c0c;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #f5e07a;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, #1a1a1a 0%, #0c0c0c 100%);
            border-bottom: 2px solid #3d2916;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #d4af37, #ad8c3d, #d4af37);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #d4af37;
            transition: width 0.3s ease;
        }
        .main-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #d4af37;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #141414;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child):after {
            content: '›';
            margin: 0 10px;
            color: #666;
        }
        .search-section {
            background-color: #1a1a1a;
            padding: 2rem 0;
            text-align: center;
            border-bottom: 1px solid #333;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: 1px solid #3d2916;
            background-color: #0c0c0c;
            color: #fff;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-button {
            padding: 0 1.5rem;
            background-color: #d4af37;
            color: #000;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .search-button:hover {
            background-color: #f5e07a;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: #141414;
            border-radius: 8px;
            padding: 2.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .article-content h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: #d4af37;
            line-height: 1.2;
            border-bottom: 2px solid #3d2916;
            padding-bottom: 0.5rem;
        }
        .article-content h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            color: #e0c068;
            padding-top: 1rem;
            border-top: 1px dashed #444;
        }
        .article-content h3 {
            font-size: 1.5rem;
            margin: 1.8rem 0 0.8rem;
            color: #ccb152;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content strong {
            color: #f5e07a;
            font-weight: 700;
        }
        .article-content em {
            color: #b3b3b3;
            font-style: italic;
        }
        .highlight-box {
            background-color: #1c1c1c;
            border-left: 4px solid #d4af37;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 4px 4px 0;
        }
        .mod-image {
            margin: 2.5rem auto;
            border: 3px solid #3d2916;
            border-radius: 8px;
            overflow: hidden;
            max-width: 800px;
        }
        .mod-image figcaption {
            text-align: center;
            padding: 0.8rem;
            background-color: #1a1a1a;
            font-style: italic;
            color: #aaa;
        }
        .sidebar {
            background-color: #141414;
            border-radius: 8px;
            padding: 2rem;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: #d4af37;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #333;
        }
        .sidebar ul {
            list-style: none;
            margin-bottom: 2rem;
        }
        .sidebar li {
            margin-bottom: 0.8rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .sidebar li:before {
            content: '•';
            color: #d4af37;
            position: absolute;
            left: 0;
        }
        .user-interaction {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 2px solid #333;
        }
        .interaction-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .rating-widget, .comment-widget {
            background-color: #1a1a1a;
            padding: 2rem;
            border-radius: 8px;
        }
        .rating-title, .comment-title {
            color: #d4af37;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .star {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .rating-form input, .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 0.9rem;
            margin-bottom: 1rem;
            background-color: #0c0c0c;
            border: 1px solid #444;
            color: #fff;
            border-radius: 4px;
        }
        .rating-form button, .comment-form button {
            width: 100%;
            padding: 0.9rem;
            background-color: #d4af37;
            color: #000;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover {
            background-color: #f5e07a;
        }
        .footer-links {
            background-color: #0c0c0c;
            padding: 3rem 0;
            border-top: 2px solid #3d2916;
            border-bottom: 1px solid #222;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: #141414;
            padding: 1.2rem;
            border-radius: 4px;
            border-left: 3px solid #d4af37;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-3px);
            background-color: #1c1c1c;
        }
        .site-footer {
            background-color: #0a0a0a;
            padding: 2rem 0;
            text-align: center;
            color: #777;
            font-size: 0.9rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #1a1a1a;
                padding: 1rem;
                border-top: 1px solid #333;
                box-shadow: 0 5px 10px rgba(0,0,0,0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            .header-container {
                flex-wrap: wrap;
            }
            .logo a {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .sidebar {
                position: static;
            }
        }
