        :root {
            --primary-dark: #2c1810;
            --primary-red: #8b0000;
            --primary-brown: #5d4037;
            --accent-gold: #d4af37;
            --light-bg: #f5f1e8;
            --dark-text: #333;
            --light-text: #f5f5f5;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
            --border-radius: 8px;
            --container-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--dark-text);
            background-color: var(--light-bg);
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f5f1e8"/><path d="M0 0L100 100M100 0L0 100" stroke="%23e8e0d1" stroke-width="1"/>');
            padding-top: 80px; 
        }
        a {
            color: var(--primary-red);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-gold);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: 700; }
        .highlight { color: var(--primary-red); font-weight: bold; }
        .emoji { font-size: 1.2em; }
        .site-header {
            background-color: var(--primary-dark);
            color: var(--light-text);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-family: 'Georgia', serif;
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--accent-gold);
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo a:hover {
            text-decoration: none;
            color: #fff;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: var(--light-text);
            font-weight: 500;
            padding: 5px 0;
            position: relative;
        }
        .main-nav a:hover {
            color: var(--accent-gold);
            text-decoration: none;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-gold);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: var(--light-text);
            cursor: pointer;
        }
        .header-search {
            display: flex;
            align-items: center;
        }
        .search-form {
            display: flex;
        }
        .search-form input[type="search"] {
            padding: 8px 12px;
            border: 1px solid var(--primary-brown);
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            min-width: 200px;
        }
        .search-form button {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--accent-gold);
            color: var(--primary-dark);
        }
        .breadcrumb {
            background-color: #e8e0d1;
            padding: 12px 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #d0c8b8;
        }
        .breadcrumb a { color: var(--primary-brown); }
        .breadcrumb a:hover { color: var(--primary-red); }
        .breadcrumb span { color: #777; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        .article-content {
            background: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary-dark);
            border-bottom: 2px solid var(--accent-gold);
            padding-bottom: 10px;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        .article-header {
            margin-bottom: 30px;
            border-bottom: 3px double var(--primary-brown);
            padding-bottom: 20px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--primary-dark);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .article-meta {
            color: #666;
            font-size: 0.95rem;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .article-meta i { margin-right: 5px; color: var(--primary-red); }
        .article-body h2 {
            font-size: 2rem;
            color: var(--primary-dark);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e0d8c8;
        }
        .article-body h3 {
            font-size: 1.6rem;
            color: var(--primary-brown);
            margin: 30px 0 15px;
        }
        .article-body p {
            margin-bottom: 1.5em;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-body blockquote {
            border-left: 4px solid var(--accent-gold);
            padding-left: 20px;
            margin: 25px 0;
            font-style: italic;
            color: #555;
            background-color: #f9f7f0;
            padding: 20px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .featured-image {
            margin: 30px 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border: 5px solid var(--primary-dark);
            margin: 0 auto;
        }
        .image-caption {
            font-size: 0.9rem;
            color: #666;
            margin-top: 10px;
            font-style: italic;
        }
        .interactive-section {
            margin-top: 50px;
            background: #f9f7f0;
            padding: 30px;
            border-radius: var(--border-radius);
            border: 1px solid #e0d8c8;
        }
        .interactive-section h2 {
            color: var(--primary-dark);
            margin-bottom: 25px;
        }
        .rating-widget, .comment-form {
            margin-bottom: 40px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--accent-gold);
        }
        .rating-form input, .rating-form button,
        .comment-form input, .comment-form textarea, .comment-form button {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: var(--border-radius);
            font-family: inherit;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating-form button, .comment-form button {
            background-color: var(--primary-red);
            color: white;
            border: none;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-form button:hover, .comment-form button:hover {
            background-color: var(--primary-dark);
        }
        .site-footer {
            background-color: var(--primary-dark);
            color: var(--light-text);
            padding-top: 50px;
            margin-top: 60px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            padding: 40px 20px;
            border-bottom: 1px solid #444;
        }
        .footer-links h3 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        .web-link-container {
            padding: 30px 20px;
            background-color: #1a110b;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        .web-link {
            background: var(--primary-brown);
            padding: 10px 20px;
            border-radius: 30px;
            transition: var(--transition);
        }
        .web-link a {
            color: var(--light-text);
            white-space: nowrap;
        }
        .web-link:hover {
            background: var(--accent-gold);
        }
        .web-link:hover a {
            color: var(--primary-dark);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding: 25px;
            color: #aaa;
            font-size: 0.9rem;
            border-top: 1px solid #444;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .main-nav ul {
                gap: 15px;
            }
            .search-form input[type="search"] {
                min-width: 150px;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .main-nav {
                order: 3;
                width: 100%;
                margin-top: 15px;
                display: none;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 10px;
            }
            .hamburger {
                display: block;
            }
            .header-search {
                order: 2;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .article-body h2 {
                font-size: 1.8rem;
            }
            .article-body h3 {
                font-size: 1.4rem;
            }
            .article-content, .sidebar-widget {
                padding: 25px;
            }
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
            body {
                padding-top: 120px; 
            }
        }
        @media (max-width: 576px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
            .article-header h1 {
                font-size: 1.8rem;
            }
            .web-link-container {
                flex-direction: column;
                align-items: center;
            }
            .web-link {
                width: 100%;
                text-align: center;
            }
        }
