        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #1a0a1a; 
            --secondary-accent: #8a2be2; 
            --accent-blood: #c41e3a; 
            --text-primary: #f0e6f6; 
            --text-secondary: #c9b3d6; 
            --card-bg: #2d1b2d; 
            --border-color: #4a2c4a;
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-primary);
            line-height: 1.8;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 15% 50%, rgba(138, 43, 226, 0.05) 0%, transparent 20%), radial-gradient(circle at 85% 30%, rgba(196, 30, 58, 0.03) 0%, transparent 20%);
        }
        a {
            color: var(--secondary-accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-blood);
            text-shadow: 0 0 8px rgba(196, 30, 58, 0.5);
        }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
        .site-header {
            background-color: rgba(26, 10, 26, 0.95);
            border-bottom: 2px solid var(--border-color);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--secondary-accent), var(--accent-blood));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
            font-family: 'Palatino Linotype', 'Book Antiqua', serif;
        }
        .logo a:hover { text-shadow: 0 0 15px rgba(138, 43, 226, 0.7); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
            font-size: 1.05rem;
        }
        .main-nav a:hover, .main-nav a:focus {
            background-color: rgba(138, 43, 226, 0.15);
            outline: 1px solid var(--secondary-accent);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 2rem;
        }
        .breadcrumb a { color: var(--text-secondary); }
        .breadcrumb a:hover { color: var(--text-primary); }
        .breadcrumb span { margin: 0 0.5rem; color: #666; }
        .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 {
            background-color: rgba(45, 27, 45, 0.7);
            border-radius: 12px;
            padding: 2.5rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px dashed var(--border-color);
        }
        .article-header h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            background: linear-gradient(135deg, var(--text-primary) 30%, var(--secondary-accent) 70%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-family: 'Georgia', serif;
        }
        .article-header .lead {
            font-size: 1.3rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
        }
        .last-updated {
            display: inline-block;
            margin-top: 1.5rem;
            font-size: 0.95rem;
            color: #aaa;
            background-color: rgba(0,0,0,0.3);
            padding: 0.5rem 1rem;
            border-radius: 20px;
        }
        .last-updated i { margin-right: 0.5rem; }
        h2 {
            font-size: 2.3rem;
            margin: 3rem 0 1.5rem 0;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--secondary-accent);
            color: var(--text-primary);
        }
        h3 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem 0;
            color: var(--text-secondary);
        }
        h4 {
            font-size: 1.4rem;
            margin: 2rem 0 0.75rem 0;
            color: #d8bfd8;
        }
        p, li {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
            color: var(--text-primary);
        }
        strong { color: var(--accent-blood); font-weight: 700; }
        em { color: var(--text-secondary); font-style: italic; }
        .highlight-box {
            background: linear-gradient(to right, rgba(138, 43, 226, 0.1), rgba(45, 27, 45, 0.7));
            border-left: 5px solid var(--secondary-accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .image-container img {
            border-radius: 8px;
            border: 3px solid var(--border-color);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 35px rgba(138, 43, 226, 0.4);
        }
        .image-caption {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-top: 0.75rem;
            font-style: italic;
        }
        ul, ol { padding-left: 2rem; margin-bottom: 1.5rem; }
        li { margin-bottom: 0.75rem; }
        .sidebar {
            background-color: rgba(45, 27, 45, 0.7);
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid var(--border-color);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            color: var(--text-primary);
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .search-form {
            display: flex;
        }
        .search-form input[type="search"] {
            flex-grow: 1;
            padding: 0.9rem 1rem;
            background-color: rgba(26, 10, 26, 0.8);
            border: 1px solid var(--border-color);
            border-right: none;
            border-radius: 8px 0 0 8px;
            color: var(--text-primary);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--secondary-accent);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.2rem;
        }
        .search-form button:hover {
            background-color: var(--accent-blood);
        }
        .quick-links ul {
            list-style: none;
            padding-left: 0;
        }
        .quick-links li {
            margin-bottom: 0.85rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .quick-links li:before {
            content: '➣';
            position: absolute;
            left: 0;
            color: var(--secondary-accent);
        }
        .user-interaction-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .user-interaction-widget textarea,
        .user-interaction-widget input[type="text"],
        .user-interaction-widget select {
            width: 100%;
            padding: 0.9rem;
            background-color: rgba(26, 10, 26, 0.8);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-primary);
            font-size: 1rem;
        }
        .user-interaction-widget .star-rating {
            display: flex;
            justify-content: space-between;
            font-size: 1.8rem;
            color: #555;
            margin: 0.5rem 0;
            direction: rtl;
        }
        .star-rating input { display: none; }
        .star-rating label {
            cursor: pointer;
            color: #555;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: gold;
        }
        .form-actions {
            display: flex;
            gap: 1rem;
        }
        .form-actions button {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
        }
        .btn-comment {
            background-color: var(--secondary-accent);
            color: white;
        }
        .btn-score {
            background-color: transparent;
            color: var(--text-primary);
            border: 2px solid var(--border-color);
        }
        .btn-comment:hover { background-color: var(--accent-blood); }
        .btn-score:hover { border-color: var(--secondary-accent); background-color: rgba(138, 43, 226, 0.1); }
        footer {
            background-color: rgba(20, 5, 20, 0.98);
            border-top: 2px solid var(--border-color);
            margin-top: 4rem;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo .logo a { font-size: 1.8rem; }
        .footer-links h4 {
            color: var(--text-primary);
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li { margin-bottom: 0.6rem; }
        friend-link {
            display: block;
            margin: 1rem 0;
            padding: 0.8rem;
            background-color: rgba(138, 43, 226, 0.1);
            border-radius: 6px;
            border: 1px dashed var(--secondary-accent);
            text-align: center;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--primary-dark);
                border-top: 1px solid var(--border-color);
                padding: 1rem;
                transform: translateY(-150%);
                opacity: 0;
                visibility: hidden;
                transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
                z-index: 999;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
                border-radius: 6px;
                border: 1px solid transparent;
            }
            .main-nav a:hover {
                border-color: var(--secondary-accent);
            }
            .article-header h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            .main-content, .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .sidebar { position: static; }
            .form-actions { flex-direction: column; }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .sidebar, .image-container {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        .highlight-box, .image-container img:hover {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(138, 43, 226, 0); }
            100% { box-shadow: 0 0 0 0 rgba(138, 43, 226, 0); }
        }
