:root {
            --primary-red: #9d0208;
            --secondary-red: #d00000;
            --accent-gold: #ffba08;
            --dark-bg: #0a0a0a;
            --darker-bg: #03071e;
            --light-text: #f8f9fa;
            --gray-text: #adb5bd;
            --section-padding: clamp(2rem, 5vw, 4rem);
            --content-width: min(1200px, 95%);
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }
        * {
            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(--light-text);
            background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
            min-height: 100vh;
            background-attachment: fixed;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-red);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: var(--content-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(10, 10, 10, 0.95);
            border-bottom: 3px solid var(--primary-red);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-family: 'Impact', 'Haettenschweiler', sans-serif;
            font-size: 2.2rem;
            color: var(--light-text);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .logo span {
            color: var(--primary-red);
        }
        .logo:hover {
            text-decoration: none;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--light-text);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-red);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--light-text);
            cursor: pointer;
            padding: 0.5rem;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--dark-bg);
            border-top: 1px solid #333;
            padding: 1rem;
            flex-direction: column;
            gap: 1rem;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: var(--light-text);
            font-size: 1.2rem;
            padding: 0.8rem;
            border-bottom: 1px solid #333;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(30, 30, 30, 0.8);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.5rem;
            color: var(--gray-text);
        }
        .breadcrumb a {
            color: var(--gray-text);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .search-section {
            padding: 2rem 0;
            text-align: center;
            background: rgba(20, 20, 20, 0.7);
            margin: 1rem 0;
            border-radius: var(--border-radius);
        }
        .search-section h2 {
            margin-bottom: 1rem;
            color: var(--accent-gold);
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 0;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem;
            border: 2px solid #444;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            background-color: #1a1a1a;
            color: var(--light-text);
            font-size: 1rem;
        }
        .search-button {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-button:hover {
            background-color: var(--secondary-red);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: var(--section-padding) 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: rgba(20, 20, 20, 0.8);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .article-header {
            margin-bottom: 2.5rem;
            border-bottom: 2px solid var(--primary-red);
            padding-bottom: 1.5rem;
        }
        .article-header h1 {
            font-size: clamp(2rem, 4vw, 3.2rem);
            color: var(--accent-gold);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            color: var(--gray-text);
            font-size: 0.95rem;
        }
        .meta-info span i {
            margin-right: 0.5rem;
            color: var(--primary-red);
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: var(--border-radius);
            border: 3px solid var(--primary-red);
            box-shadow: 0 10px 20px rgba(0,0,0,0.7);
            transition: transform 0.5s ease;
            width: 100%;
            max-height: 600px;
            object-fit: cover;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            margin-top: 0.8rem;
            font-style: italic;
            color: var(--gray-text);
            font-size: 0.9rem;
        }
        .article-body h2 {
            font-size: 2.2rem;
            color: var(--accent-gold);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #444;
        }
        .article-body h3 {
            font-size: 1.8rem;
            color: var(--light-text);
            margin: 2.5rem 0 1rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #e0e0e0;
            text-align: justify;
        }
        .article-body blockquote {
            border-left: 4px solid var(--primary-red);
            padding-left: 2rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--gray-text);
            background-color: rgba(157, 2, 8, 0.1);
            padding: 1.5rem 2rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .article-body ul, .article-body ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
            color: #e0e0e0;
        }
        .article-body li {
            margin-bottom: 0.8rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(157,2,8,0.2) 0%, rgba(208,0,0,0.1) 100%);
            border: 1px solid var(--primary-red);
            border-radius: var(--border-radius);
            padding: 2rem;
            margin: 2.5rem 0;
        }
        .highlight-box h3 {
            color: var(--accent-gold);
            margin-top: 0;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .character-card {
            background-color: #1a1a1a;
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid #333;
        }
        .character-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-red);
            box-shadow: 0 10px 20px rgba(157, 2, 8, 0.3);
        }
        .character-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .character-info {
            padding: 1.5rem;
        }
        .character-info h4 {
            color: var(--accent-gold);
            margin-bottom: 0.5rem;
        }
        .character-info p {
            font-size: 0.95rem;
            margin-bottom: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: rgba(20, 20, 20, 0.8);
            padding: 1.8rem;
            border-radius: var(--border-radius);
            border: 1px solid #333;
        }
        .sidebar-widget h3 {
            color: var(--accent-gold);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #444;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #444;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars .star {
            transition: var(--transition);
            margin: 0 2px;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent-gold);
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form select,
        .rating-form textarea {
            padding: 0.8rem;
            background-color: #1a1a1a;
            border: 1px solid #444;
            border-radius: var(--border-radius);
            color: var(--light-text);
            font-size: 1rem;
        }
        .rating-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .rating-form button {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background-color: var(--secondary-red);
        }
        .comment-widget .comment {
            border-bottom: 1px solid #333;
            padding: 1rem 0;
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: bold;
            color: var(--accent-gold);
        }
        .comment-date {
            font-size: 0.8rem;
            color: var(--gray-text);
        }
        .comment-text {
            margin-top: 0.5rem;
            color: #ccc;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            background-color: #1a1a1a;
            border: 1px solid #444;
            border-radius: var(--border-radius);
            color: var(--light-text);
            margin-bottom: 1rem;
            min-height: 120px;
        }
        .comment-form button {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: var(--secondary-red);
        }
        .footer-links {
            background-color: rgba(10, 10, 10, 0.95);
            padding: 3rem 0;
            border-top: 3px solid var(--primary-red);
            border-bottom: 1px solid #333;
        }
        .web-link {
            display: inline-block;
            margin: 0.8rem 1.5rem 0.8rem 0;
            padding: 0.6rem 1.2rem;
            background-color: #1a1a1a;
            border-radius: 30px;
            border: 1px solid #444;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: var(--primary-red);
            border-color: var(--primary-red);
        }
        .web-link a {
            color: var(--light-text);
            font-weight: 600;
        }
        .web-link:hover a {
            text-decoration: none;
            color: white;
        }
        .site-footer {
            background-color: #03071e;
            padding: 3rem 0 1.5rem;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
        .copyright {
            color: var(--gray-text);
            font-size: 0.9rem;
            border-top: 1px solid #333;
            padding-top: 1.5rem;
            width: 100%;
        }
        .copyright a {
            color: var(--accent-gold);
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-content,
            .sidebar-widget {
                padding: 1.5rem;
            }
            .character-grid {
                grid-template-columns: 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: var(--border-radius);
            }
            .search-button {
                border-radius: var(--border-radius);
                width: 100%;
            }
        }
