:root {
            --primary-color: #cc0000;
            --secondary-color: #ffcc00;
            --dark-bg: #0a0a0f;
            --light-bg: #1a1a23;
            --text-light: #f0f0f0;
            --text-muted: #aaa;
            --accent-blue: #0066cc;
            --accent-orange: #ff6600;
            --border-radius: 8px;
            --transition: all 0.3s ease;
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            --gradient: linear-gradient(135deg, var(--primary-color), var(--accent-orange));
        }
        * {
            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.6;
            color: var(--text-light);
            background-color: var(--dark-bg);
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary-color);
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
        }
        .logo span {
            color: var(--primary-color);
        }
        .logo:hover {
            transform: scale(1.05);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: var(--border-radius);
        }
        .nav-links a:hover {
            background-color: rgba(204, 0, 0, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--secondary-color);
            border-radius: 2px;
            transition: var(--transition);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: var(--light-bg);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:last-of-type {
            color: var(--secondary-color);
        }
        .breadcrumb i {
            margin: 0 10px;
            color: var(--text-muted);
        }
        main {
            padding: 30px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 3px solid var(--primary-color);
        }
        h1 {
            font-size: 3.2rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: var(--text-muted);
            margin-bottom: 25px;
            flex-wrap: wrap;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .lead {
            font-size: 1.4rem;
            max-width: 900px;
            margin: 0 auto 40px;
            color: var(--text-muted);
            text-align: center;
            line-height: 1.8;
        }
        .featured-image {
            width: 100%;
            max-height: 600px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin: 30px 0;
            box-shadow: var(--box-shadow);
            border: 3px solid var(--secondary-color);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background-color: var(--light-bg);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }
        h2 {
            color: var(--primary-color);
            font-size: 2.2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-blue);
        }
        h3 {
            color: var(--secondary-color);
            font-size: 1.8rem;
            margin: 30px 0 15px;
        }
        h4 {
            color: var(--accent-orange);
            font-size: 1.4rem;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(204,0,0,0.1), rgba(255,204,0,0.1));
            border-left: 5px solid var(--primary-color);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .highlight p {
            margin-bottom: 0;
            font-style: italic;
            font-size: 1.2rem;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        li {
            margin-bottom: 10px;
            line-height: 1.7;
        }
        strong {
            color: var(--secondary-color);
            font-weight: 700;
        }
        em {
            color: var(--accent-orange);
        }
        .inline-link {
            font-weight: 700;
            border-bottom: 2px dotted var(--secondary-color);
        }
        .inline-link:hover {
            border-bottom-style: solid;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .character-card {
            background: rgba(255,255,255,0.05);
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid rgba(255,204,0,0.3);
        }
        .character-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0,0,0,0.5);
            border-color: var(--secondary-color);
        }
        .character-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .character-card h4 {
            padding: 15px;
            margin: 0;
            background-color: rgba(0,0,0,0.5);
        }
        .character-card p {
            padding: 0 15px 15px;
            font-size: 1rem;
            margin: 0;
        }
        aside {
            background-color: var(--light-bg);
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 35px;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            color: var(--primary-color);
            padding-bottom: 10px;
            border-bottom: 1px solid var(--accent-blue);
        }
        .search-form {
            display: flex;
            margin-bottom: 25px;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid var(--primary-color);
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            background-color: rgba(255,255,255,0.1);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            background: var(--gradient);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-weight: 700;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: linear-gradient(135deg, var(--accent-orange), var(--primary-color));
        }
        .rating-widget {
            text-align: center;
            padding: 20px;
            background: rgba(0,0,0,0.3);
            border-radius: var(--border-radius);
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: var(--text-muted);
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover,
        .stars i.active {
            color: var(--secondary-color);
            transform: scale(1.2);
        }
        .rating-widget button {
            background-color: var(--accent-blue);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 700;
            margin-top: 15px;
            transition: var(--transition);
        }
        .rating-widget button:hover {
            background-color: var(--primary-color);
        }
        .quick-links ul {
            list-style: none;
            margin-left: 0;
        }
        .quick-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dotted rgba(255,255,255,0.1);
        }
        .quick-links li:last-child {
            border-bottom: none;
        }
        .quick-links a {
            display: block;
            padding: 8px 0;
        }
        .comments-section {
            background-color: var(--light-bg);
            padding: 40px;
            border-radius: var(--border-radius);
            margin-top: 40px;
            box-shadow: var(--box-shadow);
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 30px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--secondary-color);
        }
        .form-group input,
        .form-group textarea {
            padding: 15px;
            border-radius: var(--border-radius);
            border: 2px solid rgba(255,255,255,0.2);
            background-color: rgba(255,255,255,0.05);
            color: var(--text-light);
            font-size: 1rem;
            font-family: inherit;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .comment-form button {
            background: var(--gradient);
            color: white;
            border: none;
            padding: 18px;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
            align-self: flex-start;
            min-width: 200px;
        }
        .comment-form button:hover {
            background: linear-gradient(135deg, var(--accent-orange), var(--primary-color));
            transform: translateY(-3px);
        }
        .internal-links {
            background-color: var(--light-bg);
            padding: 40px 0;
            margin-top: 60px;
            border-top: 3px solid var(--primary-color);
            border-bottom: 3px solid var(--primary-color);
        }
        .web-link {
            display: inline-block;
            margin: 10px 20px;
            padding: 12px 25px;
            background-color: rgba(255,255,255,0.05);
            border-radius: 50px;
            border: 1px solid rgba(255,204,0,0.3);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(204,0,0,0.2);
            border-color: var(--primary-color);
            transform: translateY(-5px);
        }
        footer {
            text-align: center;
            padding: 40px 0;
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            max-width: 800px;
            margin: 0 auto;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            h1 {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 90px;
                right: -100%;
                flex-direction: column;
                background-color: var(--dark-bg);
                width: 100%;
                text-align: center;
                transition: 0.5s;
                box-shadow: var(--box-shadow);
                padding: 30px 0;
                gap: 0;
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links li {
                margin: 15px 0;
            }
            .nav-links a {
                display: block;
                padding: 15px;
                font-size: 1.2rem;
            }
            .hamburger {
                display: flex;
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }
            .hamburger.active span:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }
            h1 {
                font-size: 2.2rem;
            }
            .lead {
                font-size: 1.2rem;
            }
            article, .comments-section {
                padding: 25px;
            }
            .character-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 10px;
            }
            .character-grid {
                grid-template-columns: 1fr;
            }
        }
