        * { 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: #f8f5f0;
            background-image: linear-gradient(to bottom, #f8f5f0 0%, #e8e1d6 100%);
            max-width: 120rem;
            margin: 0 auto;
            padding: 0 1rem;
        }
        a { color: #8b0000; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #5a0000; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        ul, ol { padding-left: 2rem; margin-bottom: 1.5rem; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        .site-header {
            background: #1a1a1a url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231a1a1a"/><path d="M20,20 L80,80 M80,20 L20,80" stroke="%238b0000" stroke-width="2"/></svg>') repeat;
            color: #ddd;
            padding: 1.5rem 0;
            border-bottom: 5px solid #8b0000;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.5rem;
            font-weight: bold;
            color: #c9a86a;
            text-shadow: 2px 2px 4px #000;
            letter-spacing: 2px;
            padding: 0.5rem 1rem;
            border: 2px solid #c9a86a;
            background: rgba(0,0,0,0.6);
            transition: all 0.4s;
        }
        .my-logo:hover {
            color: #f0d699;
            border-color: #f0d699;
            transform: scale(1.03);
            text-decoration: none;
        }
        .search-form {
            flex-grow: 1;
            max-width: 500px;
            margin: 0 2rem;
            position: relative;
        }
        .search-input {
            width: 100%;
            padding: 0.8rem 1rem 0.8rem 3rem;
            border-radius: 30px;
            border: 2px solid #5a0000;
            background: #fff;
            font-size: 1rem;
            color: #333;
        }
        .search-button {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #8b0000;
            cursor: pointer;
        }
        .menu-toggle {
            display: none;
            background: #8b0000;
            color: white;
            border: none;
            font-size: 1.8rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
        }
        .main-nav {
            background: #2c2c2c;
            padding: 0;
            border-bottom: 3px solid #5a0000;
        }
        .nav-list {
            display: flex;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-item {
            position: relative;
        }
        .nav-link {
            display: block;
            padding: 1rem 1.8rem;
            color: #ddd;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-right: 1px solid #444;
        }
        .nav-link:hover {
            background: #5a0000;
            color: #fff;
            text-decoration: none;
        }
        .nav-item:last-child .nav-link { border-right: none; }
        .breadcrumb {
            padding: 1rem 2rem;
            background: #e8e1d6;
            border-bottom: 1px solid #ccc;
            font-size: 0.95rem;
        }
        .breadcrumb a { color: #5a0000; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article {
            background: #fff;
            padding: 3rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-left: 8px solid #8b0000;
        }
        .article-header { margin-bottom: 3rem; }
        .article-header h1 {
            font-size: 3rem;
            color: #1a1a1a;
            margin-bottom: 1rem;
            border-bottom: 3px double #c9a86a;
            padding-bottom: 1rem;
        }
        .meta-info {
            display: flex;
            justify-content: space-between;
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        .last-updated::before { content: "🕒 "; }
        h2 {
            font-size: 2.2rem;
            color: #8b0000;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e8e1d6;
        }
        h3 {
            font-size: 1.8rem;
            color: #5a0000;
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #333;
            margin: 2rem 0 1rem;
            font-style: italic;
        }
        .lead {
            font-size: 1.3rem;
            color: #444;
            font-weight: 500;
            padding: 1.5rem;
            background: #f8f5f0;
            border-left: 5px solid #c9a86a;
            margin-bottom: 2.5rem;
            border-radius: 0 8px 8px 0;
        }
        .highlight {
            background: #fff8e1;
            padding: 2rem;
            border-radius: 8px;
            border: 2px dashed #c9a86a;
            margin: 2rem 0;
        }
        .actor-card {
            display: flex;
            gap: 2rem;
            background: #f9f9f9;
            padding: 2rem;
            border-radius: 10px;
            margin: 2.5rem 0;
            border-left: 6px solid #8b0000;
            align-items: center;
            flex-wrap: wrap;
        }
        .actor-img {
            flex: 0 0 180px;
            border-radius: 8px;
            overflow: hidden;
            border: 3px solid #c9a86a;
        }
        .actor-info { flex: 1; }
        .internal-links {
            background: #e8e1d6;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .internal-links ul {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            list-style: none;
            padding-left: 0;
            justify-content: center;
        }
        .internal-links a {
            background: #8b0000;
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 30px;
            font-weight: bold;
        }
        .internal-links a:hover {
            background: #5a0000;
            text-decoration: none;
        }
        emoji { font-size: 1.2em; margin-right: 0.5rem; }
        aside {
            background: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            align-self: start;
            position: sticky;
            top: 150px;
        }
        .widget {
            margin-bottom: 3rem;
        }
        .widget-title {
            font-size: 1.5rem;
            color: #8b0000;
            padding-bottom: 0.8rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #e8e1d6;
        }
        .comment-form, .rating-form {
            background: #f8f5f0;
            padding: 2rem;
            border-radius: 8px;
            margin-top: 2rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #444;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.9rem;
            border: 1px solid #bbb;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
        }
        textarea { min-height: 150px; resize: vertical; }
        .submit-btn {
            background: #8b0000;
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
            font-weight: bold;
        }
        .submit-btn:hover {
            background: #5a0000;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            margin: 1rem 0;
        }
        .star-rating .star:hover,
        .star-rating .star.active { color: #ffcc00; }
        footer {
            background: #1a1a1a;
            color: #ddd;
            padding: 3rem 2rem 2rem;
            margin-top: 4rem;
            border-top: 8px solid #8b0000;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
        }
        friend-link a {
            color: #c9a86a;
            padding: 0.5rem 0;
            display: inline-block;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: stretch; }
            .my-logo { align-self: flex-start; margin-bottom: 1rem; font-size: 2rem; }
            .search-form { margin: 1rem 0; max-width: 100%; order: 3; }
            .menu-toggle { display: block; align-self: flex-end; margin-top: -3.5rem; }
            .main-nav { display: none; }
            .main-nav.active { display: block; }
            .nav-list { flex-direction: column; }
            .nav-link { border-right: none; border-bottom: 1px solid #444; }
            .article-header h1 { font-size: 2.2rem; }
            article, aside { padding: 1.5rem; }
            .actor-card { flex-direction: column; }
            .actor-img { flex: 0 0 auto; width: 100%; max-width: 300px; }
        }
