:root {
            --primary-dark: #0a0a12;
            --secondary-dark: #1a1a2e;
            --accent-gold: #d4af37;
            --accent-red: #8b0000;
            --text-primary: #f0f0f0;
            --text-secondary: #b0b0c0;
            --border-color: #2a2a3e;
            --shadow-glow: 0 0 15px rgba(212, 175, 55, 0.3);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #fff;
            text-shadow: var(--shadow-glow);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--secondary-dark);
            border-bottom: 2px solid var(--accent-gold);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px #000;
        }
        .logo span {
            color: var(--accent-red);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--accent-gold);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--secondary-dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid var(--border-color);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 1.2rem;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(26, 26, 46, 0.8);
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .breadcrumb span {
            color: var(--text-secondary);
            margin: 0 8px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-container {
            background-color: var(--secondary-dark);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .article-header {
            margin-bottom: 30px;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 20px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: var(--accent-gold);
            line-height: 1.2;
        }
        .meta-info {
            display: flex;
            gap: 20px;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .meta-info i {
            margin-right: 5px;
        }
        .article-image {
            margin: 30px 0;
            border-radius: 8px;
            overflow: hidden;
            border: 3px solid var(--border-color);
            box-shadow: var(--shadow-glow);
        }
        .article-image figcaption {
            padding: 10px;
            background-color: rgba(0, 0, 0, 0.5);
            font-style: italic;
            color: var(--text-secondary);
            text-align: center;
        }
        .article-body h2 {
            font-size: 2rem;
            color: var(--accent-gold);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        .article-body h3 {
            font-size: 1.6rem;
            color: #e0e0ff;
            margin: 30px 0 15px;
        }
        .article-body p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-body strong {
            color: #fff;
            font-weight: 700;
        }
        .article-body em {
            color: var(--accent-gold);
            font-style: italic;
        }
        .tip-box {
            background-color: rgba(26, 40, 60, 0.7);
            border-left: 5px solid var(--accent-gold);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .warning-box {
            background-color: rgba(139, 0, 0, 0.2);
            border-left: 5px solid var(--accent-red);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .loot-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background-color: rgba(0, 0, 0, 0.3);
        }
        .loot-table th, .loot-table td {
            border: 1px solid var(--border-color);
            padding: 12px 15px;
            text-align: left;
        }
        .loot-table th {
            background-color: var(--accent-red);
            color: white;
            font-weight: 600;
        }
        .loot-table tr:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.05);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: var(--secondary-dark);
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        }
        .sidebar-widget h3 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
            font-size: 1.4rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            background-color: rgba(0, 0, 0, 0.5);
            border: 1px solid var(--border-color);
            border-right: none;
            border-radius: 5px 0 0 5px;
            color: var(--text-primary);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #a00;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            gap: 5px;
            direction: rtl;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: var(--transition);
        }
        .stars label:hover,
        .stars label:hover ~ label,
        .stars input:checked ~ label {
            color: var(--accent-gold);
        }
        .rating-widget textarea,
        .rating-widget input[type="text"],
        .rating-widget input[type="email"] {
            width: 100%;
            padding: 12px;
            background-color: rgba(0, 0, 0, 0.5);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-primary);
            font-size: 1rem;
        }
        .rating-widget button {
            background-color: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            padding: 12px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-widget button:hover {
            background-color: #e6c158;
        }
        .comment-list {
            max-height: 400px;
            overflow-y: auto;
            padding-right: 10px;
        }
        .comment {
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: bold;
            color: var(--accent-gold);
        }
        .comment-date {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-left: 10px;
        }
        .comment-text {
            margin-top: 8px;
        }
        .footer-links {
            background-color: var(--secondary-dark);
            padding: 40px 0;
            margin-top: 50px;
            border-top: 2px solid var(--accent-red);
            border-bottom: 2px solid var(--accent-red);
        }
        .links-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        @media (max-width: 768px) {
            .links-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background-color: rgba(0, 0, 0, 0.3);
            padding: 15px;
            border-radius: 5px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(212, 175, 55, 0.1);
            transform: translateY(-3px);
        }
        .web-link a {
            display: block;
            font-weight: 600;
        }
        .site-footer {
            text-align: center;
            padding: 30px 0;
            color: var(--text-secondary);
            font-size: 0.9rem;
            background-color: #000;
        }
        .footer-links a {
            color: var(--text-secondary);
        }
        .footer-links a:hover {
            color: var(--accent-gold);
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .main-content {
                gap: 25px;
            }
            .article-container, .sidebar-widget {
                padding: 20px;
            }
            .meta-info {
                flex-direction: column;
                gap: 10px;
            }
        }
        @media print {
            .site-header, .sidebar, .footer-links, .site-footer, .breadcrumb, .search-form, .rating-widget {
                display: none;
            }
            body {
                background-color: white;
                color: black;
            }
            .article-container {
                box-shadow: none;
                padding: 0;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
