:root {
            --primary-blood: #8B0000;
            --secondary-gold: #D4AF37;
            --dark-abyss: #0a0a0a;
            --mid-gray: #222;
            --light-bone: #f5f5f5;
            --accent-electric: #00a8ff;
            --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-body: 'Open Sans', Arial, sans-serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: var(--font-body);
            line-height: 1.7;
            color: var(--light-bone);
            background-color: var(--dark-abyss);
            background-image: radial-gradient(circle at 15% 50%, rgba(139, 0, 0, 0.15) 0%, transparent 20%), radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 20%);
            overflow-x: hidden;
        }
        a {
            color: var(--accent-electric);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--secondary-gold);
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
        }
        .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(10px);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--light-bone);
            text-shadow: 2px 2px 0 var(--primary-blood), 4px 4px 0 #000;
            transition: all 0.3s;
        }
        .my-logo:hover {
            text-shadow: 2px 2px 0 var(--secondary-gold), 4px 4px 0 var(--primary-blood), 6px 6px 0 #000;
            transform: translateY(-2px);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--light-bone);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            display: block;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: var(--primary-blood);
            color: var(--light-bone);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--light-bone);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(34, 34, 34, 0.8);
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: var(--secondary-gold);
        }
        .search-module {
            background: linear-gradient(to right, var(--mid-gray), #333);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
            border-left: 5px solid var(--primary-blood);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 1rem auto 0;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid var(--primary-blood);
            border-radius: 5px 0 0 5px;
            background: var(--dark-abyss);
            color: var(--light-bone);
            font-size: 1rem;
        }
        .search-btn {
            background: linear-gradient(to bottom, var(--primary-blood), #660000);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: linear-gradient(to bottom, #aa0000, var(--primary-blood));
        }
        .content-main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: rgba(20, 20, 20, 0.9);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
            border: 1px solid var(--mid-gray);
        }
        .sidebar {
            background-color: rgba(20, 20, 20, 0.9);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid var(--mid-gray);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            color: var(--secondary-gold);
            margin-top: 1.5em;
            margin-bottom: 0.5em;
            line-height: 1.3;
        }
        h1 {
            font-size: 3rem;
            border-bottom: 4px double var(--primary-blood);
            padding-bottom: 0.3em;
            text-align: center;
            text-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--primary-blood);
            padding-left: 15px;
            margin-top: 2em;
        }
        h3 {
            font-size: 1.8rem;
            color: #f0c420;
        }
        h4 {
            font-size: 1.4rem;
            color: #e0b410;
        }
        p {
            margin-bottom: 1.2em;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.3rem;
            color: #ccc;
            font-weight: 300;
            text-align: center;
            margin: 1.5em auto;
            max-width: 900px;
        }
        strong {
            color: var(--secondary-gold);
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(139,0,0,0.2), rgba(34,34,34,0.8));
            border-left: 5px solid var(--accent-electric);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .article-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            border: 3px solid var(--mid-gray);
            margin: 2rem auto;
            display: block;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            transition: transform 0.5s, box-shadow 0.5s;
        }
        .article-img:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: -1rem;
            margin-bottom: 2rem;
        }
        .rating-module, .comments-module {
            background-color: rgba(30, 30, 30, 0.9);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 3rem 0;
            border: 1px solid var(--mid-gray);
        }
        .stars {
            color: var(--secondary-gold);
            font-size: 1.5rem;
            margin: 0.5rem 0;
            cursor: pointer;
        }
        .stars i {
            margin-right: 5px;
            transition: color 0.2s, transform 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffd700;
            transform: scale(1.2);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #ccc;
        }
        .form-control {
            width: 100%;
            padding: 0.8rem;
            background-color: rgba(10,10,10,0.7);
            border: 1px solid var(--mid-gray);
            border-radius: 5px;
            color: var(--light-bone);
            font-family: var(--font-body);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, var(--primary-blood), #aa0000);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #cc0000, var(--primary-blood));
            box-shadow: 0 0 15px rgba(139, 0, 0, 0.7);
        }
        .site-footer {
            background-color: #111;
            border-top: 3px solid var(--primary-blood);
            margin-top: 4rem;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--light-bone);
            border-bottom: 2px solid var(--secondary-gold);
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--mid-gray);
            color: #888;
            font-size: 0.9rem;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #aaa;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed var(--mid-gray);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background-color: rgba(10, 10, 10, 0.98);
                transition: left 0.4s ease;
                padding: 2rem;
                z-index: 999;
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .content-main {
                gap: 2rem;
            }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-content, .sidebar, .rating-module, .comments-module {
            animation: fadeInUp 0.8s ease-out forwards;
        }
