:root {
            --primary: #cc0000;
            --secondary: #ffcc00;
            --dark: #0a0a16;
            --light: #f5f5f7;
            --gray: #6c757d;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            --border-radius: 8px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #a30000;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to right, var(--dark) 70%, #1a1a2e);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            background: linear-gradient(to right, var(--secondary), #ff9900);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: unset;
        }
        .search-form {
            display: flex;
            flex-grow: 0.5;
            max-width: 400px;
        }
        .search-input {
            flex-grow: 1;
            padding: 12px 20px;
            border: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
            background-color: rgba(255,255,255,0.1);
            color: white;
        }
        .search-input::placeholder {
            color: #aaa;
        }
        .search-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #a30000;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .main-nav {
            margin-top: 1rem;
            background-color: rgba(0,0,0,0.8);
            border-radius: var(--border-radius);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }
        .main-nav li {
            position: relative;
        }
        .main-nav a {
            display: block;
            padding: 15px 25px;
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .main-nav a:hover,
        .main-nav .active a {
            background-color: var(--primary);
            color: var(--secondary);
        }
        .breadcrumb {
            padding: 10px 0;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        article {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .article-header {
            margin-bottom: 30px;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 20px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            color: var(--dark);
            margin-bottom: 15px;
        }
        .meta {
            display: flex;
            gap: 20px;
            color: var(--gray);
            font-size: 0.95rem;
        }
        .meta i {
            margin-right: 5px;
        }
        .article-image {
            margin: 30px 0;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }
        .article-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .article-image:hover img {
            transform: scale(1.03);
        }
        .article-image figcaption {
            padding: 15px;
            background: var(--dark);
            color: white;
            font-style: italic;
            text-align: center;
        }
        .content h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: var(--primary);
            padding-bottom: 10px;
            border-bottom: 2px dashed var(--secondary);
        }
        .content h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: #333;
        }
        .content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .content blockquote {
            border-left: 5px solid var(--primary);
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            color: #555;
            background: #f9f9f9;
            padding: 20px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.2);
            padding: 5px 10px;
            border-radius: 4px;
            font-weight: bold;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .character-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: var(--transition);
            border-top: 5px solid var(--primary);
        }
        .character-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .character-img {
            height: 200px;
            background-color: #ddd;
            background-size: cover;
            background-position: center;
        }
        .character-info {
            padding: 20px;
        }
        .character-info h4 {
            color: var(--dark);
            margin-bottom: 10px;
        }
        .character-info p {
            font-size: 0.95rem;
            color: var(--gray);
            margin-bottom: 0;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: white;
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .widget-title {
            font-size: 1.4rem;
            color: var(--dark);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
        }
        .related-links a {
            display: block;
            padding: 10px 15px;
            background: #f8f9fa;
            border-radius: var(--border-radius);
            border-left: 4px solid transparent;
        }
        .related-links a:hover {
            background: #e9ecef;
            border-left-color: var(--primary);
        }
        .interaction {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #eee;
        }
        .rating-widget {
            text-align: center;
            margin-bottom: 40px;
        }
        .stars {
            font-size: 2.5rem;
            color: #ddd;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--secondary);
        }
        .comment-form, .rating-form {
            background: #f8f9fa;
            padding: 30px;
            border-radius: var(--border-radius);
            margin-bottom: 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ced4da;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(204,0,0,0.1);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn:hover {
            background: #a30000;
            transform: translateY(-3px);
        }
        .web-links-section {
            background: var(--dark);
            color: white;
            padding: 40px 0;
            margin-top: 40px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
        }
        .web-link a {
            color: #ddd;
            display: block;
        }
        .web-link a:hover {
            color: var(--secondary);
        }
        .site-footer {
            background: #0a0a16;
            color: #aaa;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-col {
            flex: 1;
            min-width: 250px;
        }
        .footer-col h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .social-links {
            display: flex;
            gap: 15px;
            justify-content: center;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
        }
        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        .copyright {
            padding-top: 20px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #777;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
            .main-nav ul {
                flex-direction: column;
                display: none;
            }
            .main-nav.active ul {
                display: flex;
            }
            .mobile-toggle {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 20px;
            }
            .search-form {
                width: 100%;
                max-width: 100%;
            }
            .character-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            .article {
                padding: 25px;
            }
        }
        @media (max-width: 480px) {
            .character-grid {
                grid-template-columns: 1fr;
            }
            .meta {
                flex-direction: column;
                gap: 5px;
            }
        }
