        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: #121212;
            background-image: radial-gradient(circle at 15% 50%, rgba(33, 33, 33, 0.9) 0%, rgba(18, 18, 18, 1) 100%);
            overflow-x: hidden;
        }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s ease, text-shadow 0.3s ease; }
        a:hover { color: #74c0fc; text-shadow: 0 0 8px rgba(116, 192, 252, 0.5); }
        img { max-width: 100%; height: auto; display: block; border-radius: 4px; }
        .container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        .site-header {
            background: linear-gradient(to bottom, #1a1a1a 0%, #0d0d0d 100%);
            border-bottom: 1px solid #333;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b00, #f9cb28);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
            font-family: 'Tahoma', sans-serif;
        }
        .logo a:hover { text-shadow: 0 0 15px rgba(249, 203, 40, 0.6); }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-desktop a {
            color: #ccc;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(90deg, #ff6b00, #f9cb28);
            transition: width 0.4s ease;
        }
        .nav-desktop a:hover:after { width: 100%; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ccc;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .nav-mobile {
            display: none;
            background: #1a1a1a;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            border-top: 1px solid #333;
            padding: 1rem 0;
        }
        .nav-mobile.active { display: block; }
        .nav-mobile ul { list-style: none; }
        .nav-mobile li { margin: 0.8rem 0; }
        .nav-mobile a {
            display: block;
            padding: 0.8rem 20px;
            color: #ccc;
            border-left: 3px solid transparent;
        }
        .nav-mobile a:hover {
            border-left-color: #ff6b00;
            background: #222;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #151515;
            border-bottom: 1px solid #2a2a2a;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb span { color: #ff6b00; }
        .search-section {
            background: #1a1a1a;
            padding: 2rem 0;
            text-align: center;
            border-bottom: 1px solid #333;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            background: #2d2d2d;
            color: #fff;
            font-size: 1rem;
        }
        .search-input::placeholder { color: #888; }
        .search-button {
            background: linear-gradient(90deg, #ff6b00, #f9cb28);
            color: #000;
            border: none;
            padding: 0 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .search-button:hover { transform: scale(1.05); }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-content h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, #fff, #ffa94d);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .article-meta {
            color: #aaa;
            font-size: 0.95rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #333;
        }
        .article-meta i { margin-right: 0.5rem; color: #ff6b00; }
        .lead-paragraph {
            font-size: 1.3rem;
            color: #f0f0f0;
            margin-bottom: 2.5rem;
            padding: 1.5rem;
            background: rgba(255, 107, 0, 0.05);
            border-left: 4px solid #ff6b00;
            border-radius: 0 8px 8px 0;
        }
        .article-content h2 {
            font-size: 2rem;
            margin: 3rem 0 1.5rem;
            color: #ffa94d;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #333;
        }
        .article-content h3 {
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            color: #f9cb28;
        }
        .article-content p {
            margin-bottom: 1.8rem;
            text-align: justify;
            color: #d0d0d0;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            padding: 2rem;
            border-radius: 10px;
            margin: 2.5rem 0;
            border-left: 5px solid #4dabf7;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .trailer-image {
            margin: 2.5rem auto;
            text-align: center;
        }
        .trailer-image img {
            box-shadow: 0 15px 30px rgba(0,0,0,0.5);
            border: 2px solid #444;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            cursor: zoom-in;
        }
        .trailer-image img:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2);
        }
        .img-caption {
            color: #aaa;
            font-style: italic;
            margin-top: 0.8rem;
            font-size: 0.9rem;
        }
        blockquote {
            border-left: 4px solid #f9cb28;
            padding-left: 2rem;
            margin: 2.5rem 0;
            color: #ccc;
            font-style: italic;
            background: rgba(249, 203, 40, 0.05);
            padding: 1.5rem 2rem;
            border-radius: 0 8px 8px 0;
        }
        .keywords {
            background: #1a1a1a;
            padding: 1rem;
            border-radius: 8px;
            margin: 2rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .keyword-tag {
            background: #333;
            color: #ffa94d;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            border: 1px solid #555;
        }
        .keyword-tag:hover { background: #444; }
        .sidebar {
            background: #1a1a1a;
            border-radius: 10px;
            padding: 1.5rem;
            align-self: start;
            border: 1px solid #333;
        }
        .sidebar h3 {
            color: #ffa94d;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #333;
        }
        .sidebar ul {
            list-style: none;
            margin-bottom: 2rem;
        }
        .sidebar li {
            margin-bottom: 0.8rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .sidebar li:before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #ff6b00;
        }
        .sidebar a { color: #ccc; }
        .sidebar-widget {
            background: #222;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
        }
        .user-interaction {
            background: #1a1a1a;
            padding: 3rem 0;
            border-top: 1px solid #333;
            border-bottom: 1px solid #333;
            margin: 3rem 0;
        }
        .rating-form, .comment-form {
            max-width: 800px;
            margin: 2rem auto;
            background: #222;
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid #444;
        }
        .rating-stars {
            direction: rtl;
            unicode-bidi: bidi-override;
            text-align: center;
            margin: 1.5rem 0;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 2.5rem;
            color: #444;
            cursor: pointer;
            padding: 0 0.2rem;
            transition: color 0.3s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover ~ label,
        .rating-stars input:checked ~ label {
            color: #f9cb28;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #ccc;
        }
        .form-control {
            width: 100%;
            padding: 1rem;
            background: #2d2d2d;
            border: 1px solid #555;
            border-radius: 5px;
            color: #fff;
            font-size: 1rem;
        }
        .submit-button {
            background: linear-gradient(90deg, #ff6b00, #f9cb28);
            color: #000;
            border: none;
            padding: 1rem 2.5rem;
            font-weight: bold;
            border-radius: 50px;
            cursor: pointer;
            display: block;
            margin: 1.5rem auto 0;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 107, 0, 0.3);
        }
        .footer-links {
            background: #151515;
            padding: 3rem 0;
            border-top: 1px solid #333;
            border-bottom: 1px solid #333;
        }
        .web-link {
            display: inline-block;
            margin: 0.8rem 1.5rem;
            padding: 0.8rem 1.5rem;
            background: #222;
            border-radius: 5px;
            border: 1px solid #333;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: #2a2a2a;
            border-color: #ff6b00;
            transform: translateY(-3px);
        }
        .site-footer {
            background: #0d0d0d;
            padding: 2rem 0;
            text-align: center;
            color: #888;
            font-size: 0.9rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .copyright { line-height: 1.6; }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            .article-content h1 { font-size: 2.2rem; }
            .article-content h2 { font-size: 1.8rem; }
            .search-form { flex-direction: column; border-radius: 10px; }
            .search-input, .search-button { border-radius: 0; padding: 1.2rem; }
            .web-link { display: block; margin: 0.8rem 0; }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-content > * { animation: fadeInUp 0.6s ease forwards; }
        .article-content > *:nth-child(2) { animation-delay: 0.1s; }
        .article-content > *:nth-child(3) { animation-delay: 0.2s; }
