:root {
            --primary: #8B0000;
            --secondary: #FFD700;
            --dark: #1a1a1a;
            --light: #f8f9fa;
            --gray: #6c757d;
            --transition: all 0.3s ease;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
        }
        * {
            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.6;
            color: #333;
            background-color: #fff;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background-color: var(--dark);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo span {
            color: var(--primary);
        }
        .logo:hover {
            transform: scale(1.05);
            transition: var(--transition);
        }
        .nav-desktop ul {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .nav-desktop a:hover {
            background-color: var(--primary);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            flex-direction: column;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid #444;
            transition: var(--transition);
        }
        .nav-mobile a:hover {
            background-color: var(--primary);
            color: white;
            padding-left: 1.5rem;
        }
        .breadcrumb {
            background-color: #f1f1f1;
            padding: 0.75rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        .search-box {
            margin: 2rem 0;
            text-align: center;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            box-shadow: var(--shadow);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
        }
        .search-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #a30000;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .article-header {
            padding: 2rem;
            background: linear-gradient(135deg, var(--dark), var(--primary));
            color: white;
        }
        .article-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 1rem;
            color: #ddd;
            font-size: 0.9rem;
        }
        .article-body {
            padding: 2rem;
            font-size: 1.1rem;
        }
        .article-body > * + * {
            margin-top: 1.5rem;
        }
        .article-body h2 {
            color: var(--primary);
            border-bottom: 2px solid var(--secondary);
            padding-bottom: 0.5rem;
            margin-top: 2.5rem;
            font-size: 1.8rem;
        }
        .article-body h3 {
            color: var(--dark);
            margin-top: 2rem;
            font-size: 1.5rem;
        }
        .article-body p {
            text-align: justify;
            line-height: 1.8;
        }
        .article-body strong {
            color: var(--primary);
            font-weight: 700;
        }
        .highlight-box {
            background-color: #fff8e1;
            border-left: 4px solid var(--secondary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .image-container {
            margin: 2rem 0;
            text-align: center;
        }
        .featured-image {
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            max-width: 800px;
            margin: 0 auto;
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 0.5rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .widget-title {
            color: var(--primary);
            border-bottom: 2px solid #eee;
            padding-bottom: 0.75rem;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ffc107;
        }
        .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover {
            transform: scale(1.2);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-label {
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-input, .form-textarea {
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0.75rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background-color: #a30000;
            transform: translateY(-2px);
        }
        .comments-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-height: 400px;
            overflow-y: auto;
            padding-right: 0.5rem;
        }
        .comment {
            padding: 1rem;
            background-color: #f9f9f9;
            border-radius: var(--border-radius);
            border-left: 3px solid var(--primary);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .comment-author {
            font-weight: 600;
            color: var(--dark);
        }
        .footer-links {
            background-color: #f8f9fa;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: white;
            padding: 1.2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-left: 4px solid transparent;
        }
        .web-link:hover {
            transform: translateY(-5px);
            border-left-color: var(--primary);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }
        .web-link a {
            color: var(--dark);
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: var(--primary);
        }
        .footer {
            background-color: var(--dark);
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-title {
                font-size: 2rem;
            }
            .main-content {
                gap: 2rem;
            }
        }
