:root {
            --primary-dark: #1a0a0a;
            --primary-red: #8b0000;
            --secondary-red: #b22222;
            --accent-blood: #dc143c;
            --text-light: #f5f5f5;
            --text-dim: #cccccc;
            --bg-card: #250909;
            --border-color: #3a1a1a;
            --transition-speed: 0.3s;
        }
        * {
            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(--text-light);
            background-color: var(--primary-dark);
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(139, 0, 0, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(220, 20, 60, 0.05) 0%, transparent 20%);
            overflow-x: hidden;
        }
        a {
            color: var(--accent-blood);
            text-decoration: none;
            transition: color var(--transition-speed) ease;
        }
        a:hover {
            color: #ff6b6b;
            text-shadow: 0 0 8px rgba(220, 20, 60, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(26, 10, 10, 0.95);
            border-bottom: 2px solid var(--primary-red);
            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;
        }
        .my-logo {
            font-family: 'Impact', 'Haettenschweiler', sans-serif;
            font-size: 2.8rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 
                0 0 10px var(--primary-red),
                2px 2px 0 var(--accent-blood),
                4px 4px 0 #000;
            transition: all 0.4s ease;
        }
        .my-logo:hover {
            text-shadow: 
                0 0 15px var(--accent-blood),
                3px 3px 0 var(--accent-blood),
                6px 6px 0 #000;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 30px;
            height: 3px;
            background-color: var(--text-light);
            margin: 4px 0;
            border-radius: 2px;
            transition: var(--transition-speed);
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--text-dim);
            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(--accent-blood);
            transition: width var(--transition-speed) ease;
        }
        .main-nav a:hover::after,
        .main-nav a.active::after {
            width: 100%;
        }
        .breadcrumb {
            padding: 1.5rem 0 1rem;
            font-size: 0.9rem;
            color: var(--text-dim);
        }
        .breadcrumb a {
            color: var(--text-dim);
        }
        .breadcrumb a:hover {
            color: var(--text-light);
        }
        .breadcrumb i {
            margin: 0 8px;
            font-size: 0.8rem;
        }
        main {
            padding: 2rem 0 4rem;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px dashed var(--border-color);
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            color: var(--text-light);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            color: var(--text-dim);
            font-size: 0.95rem;
        }
        .meta-item i {
            margin-right: 8px;
            color: var(--accent-blood);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            font-size: 1.1rem;
        }
        h2, h3, h4 {
            color: var(--text-light);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
            position: relative;
            padding-left: 15px;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--primary-red);
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.8rem;
            border-left: 4px solid var(--secondary-red);
            padding-top: 0.4rem;
            padding-bottom: 0.4rem;
        }
        h4 {
            font-size: 1.5rem;
            border-left: 3px solid var(--accent-blood);
            padding-top: 0.3rem;
            padding-bottom: 0.3rem;
        }
        p {
            margin-bottom: 1.8rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--text-dim);
            background: rgba(139, 0, 0, 0.08);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--accent-blood);
            margin-bottom: 2.5rem;
        }
        .highlight {
            background: linear-gradient(90deg, transparent 0%, rgba(139, 0, 0, 0.15) 50%, transparent 100%);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
        }
        em {
            color: var(--accent-blood);
            font-style: italic;
        }
        strong {
            color: var(--text-light);
            font-weight: 700;
        }
        blockquote {
            border-left: 4px solid var(--accent-blood);
            padding: 1.5rem 2rem;
            margin: 2.5rem 0;
            background: rgba(37, 9, 9, 0.7);
            font-style: italic;
            font-size: 1.2rem;
            border-radius: 0 8px 8px 0;
        }
        blockquote::before {
            content: '"';
            font-size: 4rem;
            color: var(--primary-red);
            opacity: 0.5;
            line-height: 0;
            vertical-align: -0.4em;
            margin-right: 0.2rem;
        }
        .image-container {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .article-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            border: 2px solid var(--border-color);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .article-image:hover {
            transform: scale(1.01);
            box-shadow: 0 15px 35px rgba(139, 0, 0, 0.4);
        }
        .image-caption {
            font-size: 0.9rem;
            color: var(--text-dim);
            margin-top: 0.8rem;
            font-style: italic;
        }
        .internal-links {
            background: rgba(37, 9, 9, 0.7);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            margin: 2.5rem 0;
        }
        .internal-links h4 {
            margin-top: 0;
            color: var(--accent-blood);
        }
        .internal-links ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            list-style: none;
        }
        .internal-links li {
            padding: 0.5rem 0;
            border-bottom: 1px dotted var(--border-color);
        }
        .internal-links li:last-child {
            border-bottom: none;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 1.8rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .widget-title {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--accent-blood);
            padding-bottom: 0.8rem;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget-title i {
            font-size: 1.1rem;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-right: none;
            border-radius: 6px 0 0 6px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
            border-color: var(--accent-blood);
            background: rgba(255, 255, 255, 0.08);
        }
        .search-button {
            background: var(--primary-red);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background var(--transition-speed);
            font-size: 1.1rem;
        }
        .search-button:hover {
            background: var(--accent-blood);
        }
        .rating-widget .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            justify-content: center;
        }
        .rating-widget .star {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .rating-widget .star.active,
        .rating-widget .star:hover,
        .rating-widget .star:hover ~ .star {
            color: gold;
        }
        .rating-widget .star:hover {
            transform: scale(1.2);
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-input {
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .rating-input:focus {
            outline: none;
            border-color: var(--accent-blood);
        }
        .rating-button {
            background: linear-gradient(to right, var(--primary-red), var(--secondary-red));
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: all var(--transition-speed);
        }
        .rating-button:hover {
            background: linear-gradient(to right, var(--secondary-red), var(--accent-blood));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
        }
        .comment-form textarea {
            width: 100%;
            min-height: 150px;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-light);
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: var(--accent-blood);
        }
        .comment-button {
            background: linear-gradient(to right, var(--primary-red), var(--secondary-red));
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: all var(--transition-speed);
            margin-top: 1rem;
            width: 100%;
        }
        .comment-button:hover {
            background: linear-gradient(to right, var(--secondary-red), var(--accent-blood));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
        }
        .site-footer {
            background-color: #120505;
            border-top: 2px solid var(--primary-red);
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            border-left: none;
            padding-left: 0;
            color: var(--accent-blood);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem 1rem;
            background: rgba(139, 0, 0, 0.1);
            border-radius: 6px;
            margin-bottom: 0.8rem;
            border: 1px solid transparent;
            transition: all var(--transition-speed);
        }
        friend-link:hover {
            background: rgba(139, 0, 0, 0.2);
            border-color: var(--border-color);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-dim);
            font-size: 0.9rem;
        }
        .copyright a {
            color: var(--text-dim);
        }
        .copyright a:hover {
            color: var(--accent-blood);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(26, 10, 10, 0.98);
                padding: 2rem;
                border-top: 1px solid var(--border-color);
                border-bottom: 2px solid var(--primary-red);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s ease;
                z-index: 999;
            }
            .main-nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }
            .main-nav a {
                font-size: 1.2rem;
                display: block;
                padding: 0.8rem 0;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 1rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        .text-center { text-align: center; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
