        * { 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.6;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
        }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i { color: #FFD700; }
        .nav-desktop { display: flex; gap: 2rem; }
        .nav-desktop a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .nav-desktop a:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }
        .hamburger { display: none; font-size: 1.5rem; cursor: pointer; }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #6a11cb;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 10px 15px rgba(0,0,0,0.2);
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a { color: white; padding: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.1); text-decoration: none; }
        .breadcrumb {
            max-width: 1200px;
            margin: 1rem auto;
            padding: 0 20px;
            font-size: 0.9rem;
            color: #666;
        }
        .breadcrumb a { color: #2575fc; text-decoration: none; }
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        main { background: white; border-radius: 15px; padding: 2rem; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); }
        article h1 { color: #2d3748; font-size: 2.5rem; margin-bottom: 1rem; border-bottom: 3px solid #6a11cb; padding-bottom: 0.5rem; }
        .meta-info { color: #718096; margin-bottom: 2rem; font-style: italic; }
        article h2 { color: #4a5568; margin-top: 2.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid #cbd5e0; }
        article h3 { color: #5a67d8; margin-top: 1.8rem; }
        article h4 { color: #718096; margin-top: 1.5rem; }
        article p { margin-bottom: 1.2rem; text-align: justify; }
        article a { color: #4299e1; text-decoration: underline; }
        article a:hover { color: #2b6cb0; }
        .highlight { background: #e6fffa; padding: 1.5rem; border-left: 5px solid #38b2ac; margin: 1.5rem 0; border-radius: 0 8px 8px 0; }
        .cinematic-image {
            float: right;
            margin: 0 0 1rem 2rem;
            max-width: 400px;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            border: 5px solid white;
        }
        .link-list { background: #f7fafc; padding: 1.5rem; border-radius: 10px; margin: 2rem 0; }
        .link-list ul { columns: 2; list-style: none; }
        .link-list li { margin-bottom: 0.8rem; }
        .link-list a { text-decoration: none; font-weight: 600; }
        aside { background: white; border-radius: 15px; padding: 1.5rem; box-shadow: 0 5px 15px rgba(0,0,0,0.05); align-self: start; }
        .search-box { margin-bottom: 2rem; }
        .search-box form { display: flex; }
        .search-box input { flex: 1; padding: 0.8rem; border: 2px solid #cbd5e0; border-radius: 8px 0 0 8px; }
        .search-box button { background: #4299e1; color: white; border: none; padding: 0.8rem 1.2rem; border-radius: 0 8px 8px 0; cursor: pointer; }
        .rating-widget, .comment-widget { margin-bottom: 2rem; }
        .stars { color: #FFD700; font-size: 1.5rem; margin: 0.5rem 0; }
        .stars i { cursor: pointer; }
        .comment-widget textarea { width: 100%; padding: 0.8rem; border: 2px solid #cbd5e0; border-radius: 8px; margin-bottom: 0.8rem; min-height: 120px; }
        .btn { background: #48bb78; color: white; border: none; padding: 0.8rem 1.5rem; border-radius: 8px; cursor: pointer; font-weight: bold; width: 100%; }
        .btn:hover { background: #38a169; }
        footer {
            background: #2d3748;
            color: #cbd5e0;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        friend-link {
            display: block;
            background: #4a5568;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            transition: transform 0.3s;
        }
        friend-link:hover { transform: translateX(5px); background: #5a67d8; }
        friend-link a { color: #90cdf4; text-decoration: none; font-weight: 600; }
        .copyright { text-align: center; padding-top: 2rem; border-top: 1px solid #4a5568; margin-top: 2rem; grid-column: 1 / -1; }
        @media (max-width: 992px) {
            .container { grid-template-columns: 1fr; }
            .cinematic-image { float: none; margin: 1rem auto; max-width: 100%; }
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .link-list ul { columns: 1; }
            article h1 { font-size: 2rem; }
        }
