        * { 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: #333;
            background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
            color: #e0e0e0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s ease, transform 0.2s ease; }
        a:hover { color: #ffd43b; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .site-header {
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #333;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcf7f);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover { transform: scale(1.03); }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            border: 1px solid transparent;
        }
        .nav-desktop a:hover {
            border-color: #ffd43b;
            background: rgba(255, 212, 59, 0.1);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffd43b;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #1a1a2e;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 20px;
            border-top: 1px solid #333;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid #2a2a3e;
            font-size: 1.1rem;
        }
        .nav-mobile a:last-child { border-bottom: none; }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(26, 26, 46, 0.7);
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #ffd43b; }
        .breadcrumb span { color: #ffd43b; margin: 0 8px; }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
            flex: 1;
        }
        @media (max-width: 992px) {
            .main-grid { grid-template-columns: 1fr; }
        }
        .article-content {
            background: rgba(30, 30, 46, 0.8);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            color: #fff;
            line-height: 1.2;
            border-left: 5px solid #ff6b6b;
            padding-left: 20px;
        }
        h2 {
            font-size: 2.2rem;
            margin: 50px 0 20px;
            color: #ffd43b;
            padding-bottom: 10px;
            border-bottom: 2px dashed #444;
        }
        h3 {
            font-size: 1.7rem;
            margin: 35px 0 15px;
            color: #6bcf7f;
        }
        h4 {
            font-size: 1.3rem;
            margin: 25px 0 10px;
            color: #4dabf7;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #ccc;
            font-weight: 300;
            background: rgba(255, 107, 107, 0.05);
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid #ff6b6b;
        }
        .highlight-box {
            background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(40, 40, 60, 0.9));
            border: 1px solid #444;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: inset 0 0 15px rgba(0,0,0,0.3);
        }
        .quote {
            font-style: italic;
            font-size: 1.2rem;
            color: #aaa;
            border-left: 4px solid #ffd43b;
            padding-left: 25px;
            margin: 30px 0;
        }
        .film-poster {
            float: right;
            margin: 0 0 25px 25px;
            max-width: 400px;
            border-radius: 10px;
            box-shadow: 0 15px 25px rgba(0,0,0,0.7);
            border: 3px solid #444;
        }
        @media (max-width: 768px) {
            .film-poster { float: none; margin: 25px auto; display: block; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 1.9rem; }
            .article-content { padding: 25px; }
        }
        .sidebar {
            background: rgba(26, 26, 46, 0.8);
            border-radius: 15px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .widget {
            margin-bottom: 35px;
        }
        .widget h3 {
            font-size: 1.4rem;
            color: #ffd43b;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #444;
        }
        .search-form input {
            width: 100%;
            padding: 12px 15px;
            border-radius: 25px;
            border: 1px solid #555;
            background: #1a1a2e;
            color: #fff;
            margin-bottom: 10px;
        }
        .search-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
            color: white;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .search-form button:hover { transform: translateY(-3px); }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            justify-content: space-around;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
        }
        .stars .active { color: #ffd43b; }
        textarea, .rating-form input {
            width: 100%;
            padding: 12px;
            border-radius: 10px;
            border: 1px solid #555;
            background: #1a1a2e;
            color: #fff;
            resize: vertical;
        }
        .btn-submit {
            padding: 12px;
            background: linear-gradient(90deg, #6bcf7f, #4cd964);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .btn-submit:hover { background: linear-gradient(90deg, #5cbf6f, #3bc853); }
        .related-links a {
            display: block;
            padding: 12px 15px;
            margin-bottom: 10px;
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            border-left: 4px solid #4dabf7;
        }
        .related-links a:hover { background: rgba(255,255,255,0.1); border-left-color: #ffd43b; }
        .site-footer {
            background: #0a0a0f;
            padding: 50px 0 25px;
            margin-top: 60px;
            border-top: 1px solid #333;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h4 {
            color: #ffd43b;
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        friend-link {
            display: inline-block;
            background: rgba(255,255,255,0.05);
            padding: 10px 20px;
            margin: 5px 10px 5px 0;
            border-radius: 20px;
            border: 1px solid #444;
        }
        friend-link a { color: #aaa; }
        friend-link a:hover { color: #ffd43b; }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #333;
            color: #777;
            font-size: 0.9rem;
        }
        .update-time {
            color: #ff8e8e;
            font-weight: bold;
        }
        .text-center { text-align: center; }
        .mb-4 { margin-bottom: 2rem; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .keyword { background: rgba(255, 212, 59, 0.15); padding: 2px 6px; border-radius: 4px; font-weight: 600; }
