:root {
            --primary-color: #1a1a1a;
            --secondary-color: #d4af37;
            --accent-color: #8b0000;
            --text-light: #e6e6e6;
            --text-dark: #333;
            --bg-dark: #0a0a0a;
            --bg-card: #141414;
            --border-color: #333;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s ease;
            font-size: 16px;
        }
        * {
            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.8;
            color: var(--text-light);
            background-color: var(--bg-dark);
            background-image: radial-gradient(circle at 15% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 20%), radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 20%);
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffd700;
            text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .site-header {
            background-color: rgba(10, 10, 10, 0.95);
            border-bottom: 2px solid var(--accent-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            padding: 1rem 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.5rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--secondary-color);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }
        .logo span {
            color: var(--accent-color);
        }
        .logo:hover {
            transform: scale(1.02);
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            color: var(--secondary-color);
            cursor: pointer;
            background: none;
            border: none;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(20, 20, 20, 0.8);
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 0.5rem;
            color: var(--secondary-color);
        }
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1589256469067-ea99122bbdc4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 4rem 0;
            text-align: center;
            border-bottom: 3px solid var(--accent-color);
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3.5rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #ccc;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .main-content {
            background-color: var(--bg-card);
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: var(--bg-card);
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
        }
        .widget h3 {
            color: var(--secondary-color);
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        h1, h2, h3, h4 {
            color: var(--secondary-color);
            margin-top: 2.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--accent-color);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #ddd;
            background-color: rgba(139, 0, 0, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--secondary-color);
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.1);
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .term {
            color: var(--secondary-color);
            font-weight: bold;
            font-style: italic;
        }
        blockquote {
            border-left: 4px solid var(--accent-color);
            padding: 1.5rem 2rem;
            margin: 2.5rem 0;
            background-color: rgba(20, 20, 20, 0.8);
            font-style: italic;
            font-size: 1.2rem;
            position: relative;
        }
        blockquote::before {
            content: "“";
            font-size: 4rem;
            color: var(--accent-color);
            position: absolute;
            top: -1rem;
            left: 0.5rem;
            opacity: 0.5;
        }
        .article-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2.5rem 0;
            border: 2px solid var(--border-color);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .article-image:hover {
            transform: scale(1.01);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: -1.5rem;
            margin-bottom: 2.5rem;
            font-size: 0.95rem;
        }
        .interactive-section {
            margin: 3rem 0;
            padding: 2rem;
            background-color: rgba(20, 20, 20, 0.8);
            border-radius: 10px;
            border: 1px solid var(--border-color);
        }
        .interactive-section h3 {
            margin-top: 0;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #ccc;
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            background-color: #222;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--secondary-color);
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
        }
        .btn {
            padding: 0.9rem 2rem;
            background: linear-gradient(135deg, var(--accent-color), #5a0000);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            align-self: flex-start;
        }
        .btn:hover {
            background: linear-gradient(135deg, #9e0000, var(--accent-color));
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(139, 0, 0, 0.4);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background-color: var(--bg-card);
            padding: 1.2rem;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        .web-link:hover {
            border-color: var(--secondary-color);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        .web-link a {
            font-weight: 600;
            display: block;
        }
        .site-footer {
            background-color: #050505;
            padding: 3rem 0 1.5rem;
            border-top: 2px solid var(--accent-color);
            text-align: center;
        }
        .copyright {
            color: #888;
            font-size: 0.9rem;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .footer-links {
                grid-template-columns: repeat(3, 1fr);
            }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .hero h1 { font-size: 2.8rem; }
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(10, 10, 10, 0.98);
                padding: 1rem;
                transform: translateY(-150%);
                transition: transform 0.4s ease;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
                z-index: 999;
            }
            .main-nav.active {
                transform: translateY(0);
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 1.1rem; }
            .main-content { padding: 1.5rem; }
        }
        @media (max-width: 576px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .container { padding: 0 1rem; }
        }
