:root {
            --primary-blood: #8b0000;
            --secondary-gold: #daa520;
            --dark-abyss: #0a0a0f;
            --mid-grey: #222228;
            --light-text: #f0e6d6;
            --accent-cyan: #00ffff;
            --spacing-unit: 1rem;
            --border-radius: 4px;
            --transition-speed: 0.3s;
            --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-body: 'Georgia', 'Times New Roman', serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-body);
            background-color: var(--dark-abyss);
            color: var(--light-text);
            line-height: 1.8;
            overflow-x: hidden;
            background-image: linear-gradient(to bottom, #1a1a1f 0%, var(--dark-abyss) 100%);
        }
        a {
            color: var(--accent-cyan);
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        a:hover {
            color: var(--secondary-gold);
            text-shadow: 0 0 8px rgba(218, 165, 32, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-unit);
        }
        .site-header {
            background: linear-gradient(to bottom, #000000, var(--mid-grey));
            padding: 1rem 0;
            border-bottom: 3px solid var(--primary-blood);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 3px;
            background: linear-gradient(to right, var(--primary-blood), var(--secondary-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 10px rgba(139, 0, 0, 0.3);
        }
        .my-logo:hover {
            animation: logoGlow 1.5s ease-in-out infinite alternate;
        }
        @keyframes logoGlow {
            from { text-shadow: 0 0 10px rgba(139, 0, 0, 0.5); }
            to { text-shadow: 0 0 20px rgba(218, 165, 32, 0.8), 0 0 30px rgba(139, 0, 0, 0.6); }
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: bold;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            border: 1px solid transparent;
        }
        .main-nav a:hover {
            border-color: var(--primary-blood);
            background-color: rgba(139, 0, 0, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--light-text);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(34, 34, 40, 0.8);
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 0.75rem;
            color: var(--secondary-gold);
        }
        .search-module {
            background: var(--mid-grey);
            padding: 2rem;
            border-radius: var(--border-radius);
            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-form input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #444;
            background-color: #111;
            color: var(--light-text);
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(to bottom, var(--primary-blood), #600);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-weight: bold;
            transition: background var(--transition-speed);
        }
        .search-form button:hover {
            background: linear-gradient(to bottom, #a00, var(--primary-blood));
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(34, 34, 40, 0.7);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .sidebar {
            background: rgba(34, 34, 40, 0.7);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            color: var(--secondary-gold);
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 3.2rem;
            border-bottom: 3px solid var(--primary-blood);
            padding-bottom: 0.5rem;
            text-align: center;
            margin-top: 0;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--accent-cyan);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--light-text);
        }
        h4 {
            font-size: 1.4rem;
            color: #ccc;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .intro {
            font-size: 1.3rem;
            background: rgba(139, 0, 0, 0.1);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border: 1px dashed var(--primary-blood);
            margin-bottom: 2.5rem;
        }
        .highlight {
            background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.1), transparent);
            padding: 1.5rem;
            border-left: 4px solid var(--secondary-gold);
            margin: 2rem 0;
            font-style: italic;
        }
        .figure-container {
            float: right;
            margin: 0 0 2rem 2rem;
            max-width: 500px;
            border: 2px solid var(--mid-grey);
            padding: 0.5rem;
            background-color: #111;
        }
        .figure-container img {
            width: 100%;
        }
        .figcaption {
            text-align: center;
            font-size: 0.9rem;
            padding-top: 0.5rem;
            color: #aaa;
        }
        emoji {
            font-style: normal;
            margin-right: 0.3rem;
        }
        strong {
            color: var(--secondary-gold);
            font-weight: bold;
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
            margin: 2rem 0;
        }
        .tag {
            background-color: rgba(0, 100, 100, 0.3);
            padding: 0.4rem 0.9rem;
            border-radius: 20px;
            font-size: 0.9rem;
            border: 1px solid var(--accent-cyan);
        }
        .user-interaction {
            margin: 3rem 0;
            padding: 2rem;
            background: var(--mid-grey);
            border-radius: var(--border-radius);
        }
        .rating-module, .comment-module {
            margin-bottom: 2rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color var(--transition-speed), transform var(--transition-speed);
        }
        .star:hover,
        .star.active {
            color: var(--secondary-gold);
            transform: scale(1.2);
        }
        .interaction-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .interaction-form input,
        .interaction-form textarea {
            padding: 0.8rem;
            background-color: #111;
            border: 1px solid #444;
            border-radius: var(--border-radius);
            color: var(--light-text);
            font-family: inherit;
        }
        .interaction-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .interaction-form button {
            align-self: flex-start;
            background: linear-gradient(to right, var(--primary-blood), #a00);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: bold;
            transition: background var(--transition-speed);
        }
        .interaction-form button:hover {
            background: linear-gradient(to right, #c00, var(--primary-blood));
        }
        .site-footer {
            background: linear-gradient(to top, #000, var(--mid-grey));
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid var(--primary-blood);
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-section h3 {
            color: var(--accent-cyan);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #444;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: inline-block;
            background-color: rgba(0, 50, 50, 0.3);
            padding: 0.5rem 1rem;
            margin: 0.3rem;
            border-radius: var(--border-radius);
            border: 1px solid #0aa;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #444;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--dark-abyss);
                border-top: 1px solid #444;
                padding: 1rem;
                display: none;
                box-shadow: 0 10px 20px rgba(0,0,0,0.8);
            }
            .main-nav.active ul {
                display: flex;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            .figure-container {
                float: none;
                margin: 1rem auto;
                max-width: 100%;
            }
            .article-content {
                padding: 1.5rem;
            }
        }
