:root {
            --primary-red: #9d0208;
            --dark-bg: #0a0a0a;
            --card-bg: #1a1a1a;
            --text-light: #f5f5f5;
            --text-gray: #b0b0b0;
            --accent-gold: #ffd700;
            --border-color: #333;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--primary-red);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(10, 10, 10, 0.95);
            border-bottom: 2px solid var(--primary-red);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(to right, var(--accent-gold), var(--primary-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: var(--primary-red);
        }
        .search-form {
            display: flex;
            width: 300px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 10px 15px;
            border: 1px solid var(--border-color);
            background: var(--card-bg);
            color: var(--text-light);
            border-radius: 5px 0 0 5px;
            outline: none;
        }
        .search-form button {
            background: var(--primary-red);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #6d0105;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            background-color: var(--card-bg);
            border-radius: 5px;
            overflow: hidden;
        }
        nav ul li a {
            display: block;
            padding: 15px 25px;
            color: var(--text-light);
            font-weight: 600;
            border-right: 1px solid var(--border-color);
            transition: all 0.3s;
        }
        nav ul li:last-child a {
            border-right: none;
        }
        nav ul li a:hover,
        nav ul li a.active {
            background-color: var(--primary-red);
            color: white;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        main {
            padding: 30px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: var(--accent-gold);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        .meta span i {
            margin-right: 5px;
        }
        .article-image {
            width: 100%;
            max-height: 600px;
            object-fit: cover;
            border-radius: 10px;
            margin: 30px 0;
            border: 3px solid var(--primary-red);
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        article h2 {
            color: var(--primary-red);
            margin: 25px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
            font-size: 1.8rem;
        }
        article h3 {
            color: var(--accent-gold);
            margin: 20px 0 10px;
            font-size: 1.4rem;
        }
        article p {
            margin-bottom: 20px;
            text-align: justify;
        }
        article strong {
            color: var(--accent-gold);
        }
        .actor-card {
            background: #222;
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
            border-left: 5px solid var(--primary-red);
            display: grid;
            grid-template-columns: 150px 1fr;
            gap: 20px;
            align-items: start;
        }
        .actor-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent-gold);
        }
        .actor-info h4 {
            color: var(--primary-red);
            font-size: 1.5rem;
            margin-bottom: 5px;
        }
        .actor-role {
            color: var(--text-gray);
            font-style: italic;
            margin-bottom: 10px;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .sidebar-widget {
            background: var(--card-bg);
            padding: 25px;
            border-radius: 10px;
            border-top: 4px solid var(--primary-red);
        }
        .sidebar-widget h3 {
            color: var(--accent-gold);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 1.8rem;
            color: #444;
            margin: 10px 0;
        }
        .stars label {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars input {
            display: none;
        }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label {
            color: var(--accent-gold);
        }
        .rating-widget input,
        .rating-widget textarea,
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 12px;
            background: #222;
            border: 1px solid var(--border-color);
            color: var(--text-light);
            border-radius: 5px;
            outline: none;
        }
        .rating-widget button,
        .comment-form button {
            background: var(--primary-red);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .rating-widget button:hover,
        .comment-form button:hover {
            background: #6d0105;
        }
        .web-links {
            background: var(--card-bg);
            padding: 40px 0;
            margin-top: 50px;
            border-top: 2px solid var(--primary-red);
            border-bottom: 2px solid var(--primary-red);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        .web-link {
            background: #222;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: var(--primary-red);
            transform: translateY(-5px);
        }
        .web-link a {
            color: var(--text-light);
            font-weight: 600;
        }
        footer {
            text-align: center;
            padding: 30px 0;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
            .web-links-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                width: 100%;
                margin-top: 15px;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 15px;
                border-radius: 5px;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li a {
                border-right: none;
                border-bottom: 1px solid var(--border-color);
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .actor-card {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .actor-img {
                justify-self: center;
            }
            .web-links-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .web-links-container {
                grid-template-columns: 1fr;
            }
            .meta {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
        }
