:root {
            --primary-blood: #8b0000;
            --secondary-gold: #d4af37;
            --dark-void: #0a0a0a;
            --gray-mid: #333;
            --gray-light: #555;
            --gray-bg: #f5f5f5;
            --text-light: #eee;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-heading: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
            --shadow-heavy: 0 5px 15px rgba(139, 0, 0, 0.3);
            --shadow-light: 0 2px 5px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-main);
            line-height: 1.7;
            color: var(--text-light);
            background-color: var(--dark-void);
            background-image: radial-gradient(circle at 10% 20%, rgba(139, 0, 0, 0.1) 0%, transparent 20%), radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 20%);
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffcc00;
            text-shadow: 0 0 8px rgba(255, 204, 0, 0.7);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 5px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(10, 10, 10, 0.95);
            border-bottom: 3px solid var(--primary-blood);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-light);
            text-shadow: 2px 2px 0 var(--primary-blood), 4px 4px 0 #000;
        }
        .logo a {
            color: inherit;
        }
        .logo span {
            color: var(--secondary-gold);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-blood);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .nav-desktop a:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--gray-mid);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow-heavy);
            border-top: 1px solid var(--primary-blood);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid var(--gray-light);
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--gray-light);
            background: rgba(51, 51, 51, 0.3);
            margin-top: 5px;
            border-radius: 4px;
            padding-left: 1rem;
        }
        .breadcrumb a {
            color: var(--secondary-gold);
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 900px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(30, 30, 30, 0.9);
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow-heavy);
            border-left: 5px solid var(--primary-blood);
        }
        .article-header {
            margin-bottom: 2rem;
            border-bottom: 2px solid var(--secondary-gold);
            padding-bottom: 1.5rem;
        }
        h1 {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            color: var(--secondary-gold);
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px #000;
        }
        h2 {
            font-size: 2rem;
            color: var(--text-light);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed var(--gray-light);
            position: relative;
        }
        h2::before {
            content: '⚔️';
            margin-right: 10px;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--secondary-gold);
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: rgba(139, 0, 0, 0.2);
            border-left: 4px solid var(--primary-blood);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 5px 5px 0;
        }
        .feature-img {
            width: 100%;
            margin: 2rem auto;
            border: 3px solid var(--gray-mid);
            box-shadow: 0 0 25px rgba(139, 0, 0, 0.5);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: var(--gray-light);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        ul, ol {
            padding-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        blockquote {
            font-style: italic;
            padding: 1.5rem;
            background: rgba(51, 51, 51, 0.5);
            border-radius: 8px;
            margin: 2rem 0;
            border-left: 5px solid var(--secondary-gold);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(30, 30, 30, 0.9);
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow-light);
            border-top: 3px solid var(--primary-blood);
        }
        .widget h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i {
            color: var(--primary-blood);
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 12px;
            border: 1px solid var(--gray-mid);
            background: var(--dark-void);
            color: var(--text-light);
            border-radius: 4px 0 0 4px;
        }
        .search-btn {
            background: var(--primary-blood);
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background: #a30000;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: var(--secondary-gold);
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 2px;
            transition: var(--transition);
        }
        .stars i:hover,
        .stars i.active {
            color: #ffcc00;
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 12px;
            background: var(--dark-void);
            border: 1px solid var(--gray-mid);
            color: var(--text-light);
            border-radius: 4px;
            margin-bottom: 1rem;
            min-height: 120px;
            resize: vertical;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group input {
            width: 100%;
            padding: 12px;
            background: var(--dark-void);
            border: 1px solid var(--gray-mid);
            color: var(--text-light);
            border-radius: 4px;
        }
        .submit-btn {
            width: 100%;
            padding: 12px;
            background: linear-gradient(to right, var(--primary-blood), #a30000);
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            letter-spacing: 1px;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #a30000, var(--primary-blood));
            box-shadow: 0 0 10px rgba(139, 0, 0, 0.7);
        }
        .web-links-container {
            background: rgba(10, 10, 10, 0.9);
            padding: 2rem;
            margin: 2rem 0;
            border-radius: 10px;
            border-top: 3px solid var(--secondary-gold);
        }
        .web-links-container h2 {
            text-align: center;
            border: none;
            font-size: 1.8rem;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .web-link {
            background: rgba(51, 51, 51, 0.5);
            padding: 1rem;
            border-radius: 6px;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .web-link:hover {
            border-color: var(--secondary-gold);
            background: rgba(51, 51, 51, 0.8);
            transform: translateY(-3px);
        }
        .site-footer {
            background-color: #000;
            color: var(--gray-light);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 5px solid var(--primary-blood);
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: var(--secondary-gold);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links a {
            display: block;
            margin-bottom: 0.8rem;
            color: #aaa;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--gray-mid);
            font-size: 0.9rem;
            color: #777;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-desktop {
                display: none;
            }
            .main-content, .footer-content {
                padding: 0 15px;
            }
            article {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .web-links-grid {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .widget {
            animation: fadeIn 0.8s ease-out;
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(139, 0, 0, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(139, 0, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(139, 0, 0, 0); }
        }
