:root {
            --primary-dark: #1a1a2e;
            --primary-accent: #8b4513;
            --secondary-accent: #d4af37;
            --text-primary: #f0e6d2;
            --text-secondary: #c9b18b;
            --background-card: #252544;
            --border-color: #3a2c1f;
            --hover-glow: rgba(139, 69, 19, 0.4);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            background: linear-gradient(to bottom, #0c0c1a, var(--primary-dark));
            min-height: 100vh;
            padding-bottom: 40px;
        }
        a {
            color: var(--secondary-accent);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-shadow: 0 0 8px var(--hover-glow);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(26, 26, 46, 0.95);
            border-bottom: 2px solid var(--primary-accent);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--secondary-accent);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            letter-spacing: 1.5px;
        }
        .logo a {
            color: inherit;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover,
        .desktop-nav a.active {
            border-bottom-color: var(--secondary-accent);
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--primary-dark);
            border-top: 1px solid var(--border-color);
            padding: 20px;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            font-size: 1.2rem;
            padding: 10px;
            border-left: 3px solid transparent;
        }
        .mobile-nav a:hover {
            border-left-color: var(--secondary-accent);
            background: rgba(255, 255, 255, 0.05);
        }
        .breadcrumb {
            padding: 15px 0;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--text-primary);
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        .article-container {
            background: var(--background-card);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--border-color);
        }
        .article-header {
            margin-bottom: 30px;
            border-bottom: 2px solid var(--primary-accent);
            padding-bottom: 25px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--secondary-accent);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 20px;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .article-meta i {
            margin-right: 5px;
        }
        .article-body {
            font-size: 1.1rem;
        }
        .article-body h2 {
            font-size: 2rem;
            color: var(--secondary-accent);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px dashed var(--border-color);
        }
        .article-body h3 {
            font-size: 1.6rem;
            color: var(--text-primary);
            margin: 30px 0 15px;
        }
        .article-body p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .article-body emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(139, 69, 19, 0.15), rgba(212, 175, 55, 0.1));
            border-left: 4px solid var(--secondary-accent);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            width: 100%;
            margin: 30px 0;
            text-align: center;
        }
        .featured-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            border: 2px solid var(--border-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: var(--background-card);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid var(--border-color);
        }
        .sidebar-widget h3 {
            color: var(--secondary-accent);
            margin-bottom: 20px;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--border-color);
            border-right: none;
            border-radius: 6px 0 0 6px;
            color: var(--text-primary);
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary-accent);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #a0522d;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 15px;
            font-size: 1.8rem;
            color: #555;
        }
        .star {
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .star:hover,
        .star.active {
            color: var(--secondary-accent);
            transform: scale(1.1);
        }
        .rating-form button {
            background: transparent;
            border: 1px solid var(--secondary-accent);
            color: var(--secondary-accent);
            padding: 10px 25px;
            border-radius: 6px;
            cursor: pointer;
            margin-top: 10px;
            transition: all 0.3s;
        }
        .rating-form button:hover {
            background: var(--secondary-accent);
            color: var(--primary-dark);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-primary);
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
            margin-bottom: 15px;
        }
        .comment-form button {
            background: var(--primary-accent);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            cursor: pointer;
            width: 100%;
            font-weight: 600;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #a0522d;
        }
        .internal-links {
            margin: 50px 0;
            padding: 30px;
            background: var(--background-card);
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }
        .internal-links h2 {
            color: var(--secondary-accent);
            margin-bottom: 25px;
            text-align: center;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 6px;
            border-left: 3px solid var(--primary-accent);
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.1);
        }
        .site-footer {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid var(--border-color);
            text-align: center;
            color: var(--text-secondary);
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 30px;
        }
        .copyright {
            font-size: 0.9rem;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .article-container {
                padding: 25px;
            }
            .article-body h2 {
                font-size: 1.8rem;
            }
            .article-body h3 {
                font-size: 1.4rem;
            }
            .web-links-grid {
                grid-template-columns: 1fr;
            }
            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-container, .sidebar-widget, .internal-links {
            animation: fadeIn 0.8s ease-out;
        }
        @media print {
            .site-header, .sidebar, .internal-links, .site-footer, .search-form, .rating-widget, .comment-form {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
            .container {
                max-width: 100%;
                padding: 0;
            }
            .article-container {
                box-shadow: none;
                border: none;
                padding: 0;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
