:root {
            --primary: #8B0000;
            --primary-dark: #5a0000;
            --secondary: #D4AF37;
            --dark: #1a1a1a;
            --light: #f5f5f5;
            --gray: #333;
            --gray-light: #666;
            --border: #444;
            --shadow: 0 4px 12px rgba(0, 0, 0, 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;
            line-height: 1.7;
            color: var(--light);
            background-color: var(--dark);
            overflow-x: hidden;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(26, 26, 26, 0.95);
            border-bottom: 2px solid var(--primary);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--primary);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: var(--light);
            font-weight: 600;
            padding: 5px 0;
            position: relative;
        }
        .desktop-nav a:hover {
            text-decoration: none;
        }
        .desktop-nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary);
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }
        .desktop-nav a:hover:after {
            width: 100%;
        }
        .search-box {
            display: flex;
            background: var(--gray);
            border-radius: 4px;
            overflow: hidden;
        }
        .search-box input {
            padding: 10px 15px;
            background: transparent;
            border: none;
            color: var(--light);
            width: 200px;
        }
        .search-box button {
            background: var(--primary);
            border: none;
            color: white;
            padding: 10px 15px;
            cursor: pointer;
        }
        .search-box button:hover {
            background: var(--primary-dark);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: var(--gray);
            padding: 20px;
            border-top: 1px solid var(--border);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            color: var(--light);
            font-weight: 600;
            display: block;
            padding: 10px;
            border-left: 3px solid transparent;
        }
        .mobile-nav a:hover {
            border-left-color: var(--secondary);
            background: rgba(255, 255, 255, 0.05);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--gray-light);
            border-bottom: 1px solid var(--border);
        }
        .breadcrumb a {
            color: var(--gray-light);
        }
        .breadcrumb a:hover {
            color: var(--secondary);
        }
        main {
            padding: 40px 0;
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: var(--secondary);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: var(--gray-light);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .meta-info i {
            margin-right: 5px;
        }
        .article-image {
            margin: 40px 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }
        .article-image img {
            width: 100%;
            height: auto;
        }
        .image-caption {
            padding: 10px;
            background: rgba(0, 0, 0, 0.7);
            font-size: 0.9rem;
            color: var(--gray-light);
            text-align: center;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            font-size: 1.1rem;
        }
        article p {
            margin-bottom: 25px;
            text-align: justify;
        }
        article h2 {
            color: var(--secondary);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
            font-size: 2rem;
        }
        article h3 {
            color: var(--light);
            margin: 30px 0 15px;
            font-size: 1.5rem;
        }
        article ul, article ol {
            margin-bottom: 25px;
            padding-left: 20px;
        }
        article li {
            margin-bottom: 10px;
        }
        .highlight-box {
            background: rgba(139, 0, 0, 0.1);
            border-left: 4px solid var(--primary);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 4px 4px 0;
        }
        .highlight-box p {
            margin-bottom: 0;
            font-style: italic;
        }
        .related-links {
            margin: 40px 0;
            padding: 20px;
            background: var(--gray);
            border-radius: 8px;
        }
        .related-links h3 {
            color: var(--secondary);
            margin-bottom: 15px;
        }
        .related-links ul {
            list-style: none;
            padding-left: 0;
        }
        .related-links li {
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px dashed var(--border);
        }
        .related-links li:last-child {
            border-bottom: none;
        }
        aside {
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        .sidebar-widget {
            background: var(--gray);
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar-widget h3 i {
            color: var(--primary);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #ccc;
            margin-bottom: 15px;
            cursor: pointer;
        }
        .stars span {
            margin: 0 2px;
            transition: var(--transition);
        }
        .stars span:hover,
        .stars span.active {
            color: var(--secondary);
        }
        .rating-count {
            color: var(--gray-light);
            font-size: 0.9rem;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border);
            border-radius: 4px;
            color: var(--light);
            margin-bottom: 15px;
            resize: vertical;
            min-height: 150px;
        }
        .comment-form input {
            width: 100%;
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border);
            border-radius: 4px;
            color: var(--light);
            margin-bottom: 15px;
        }
        .comment-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            width: 100%;
        }
        .comment-form button:hover {
            background: var(--primary-dark);
        }
        .newsletter-widget input {
            width: 100%;
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border);
            border-radius: 4px;
            color: var(--light);
            margin-bottom: 15px;
        }
        .web-links {
            background: var(--gray);
            padding: 40px 0;
            margin-top: 60px;
        }
        .web-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(0, 0, 0, 0.2);
            padding: 15px;
            border-radius: 4px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(0, 0, 0, 0.4);
            transform: translateY(-3px);
        }
        .web-link a {
            color: var(--light);
            font-weight: 600;
        }
        footer {
            background: #000;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: var(--gray-light);
        }
        .footer-links a:hover {
            color: var(--secondary);
        }
        .copyright {
            color: var(--gray-light);
            font-size: 0.9rem;
            border-top: 1px solid var(--border);
            padding-top: 20px;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav, .search-box {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .header-top {
                padding: 10px 0;
            }
            .article-header h1 {
                font-size: 1.8rem;
            }
            .meta-info {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
            .footer-links {
                flex-direction: column;
                gap: 10px;
            }
        }
