        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f2e9 0%, #e8dfca 100%);
            min-height: 100vh;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4 {
            font-family: 'Georgia', serif;
            color: #8B4513;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid #D4A76A;
            padding-bottom: 0.5rem;
            margin-top: 1.5rem;
            text-align: center;
        }
        h2 {
            font-size: 2.2rem;
            color: #A0522D;
            margin-top: 2.5rem;
            border-left: 5px solid #D4A76A;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #B8860B;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #CD853F;
            margin-top: 1.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        strong {
            color: #8B4513;
            font-weight: 700;
        }
        em {
            color: #5D4037;
            font-style: italic;
        }
        a {
            color: #8B4513;
            text-decoration: none;
            transition: all 0.3s ease;
            border-bottom: 1px dotted transparent;
        }
        a:hover {
            color: #5D2906;
            border-bottom: 1px dotted #8B4513;
        }
        .site-header {
            background: linear-gradient(to right, #3E2723, #5D4037);
            color: #fff;
            padding: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 700;
            color: #D4A76A;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            font-size: 2.5rem;
        }
        .my-logo:hover {
            color: #FFD700;
            border-bottom: none;
        }
        .breadcrumb {
            background-color: #EFEBE9;
            padding: 0.8rem 20px;
            margin-bottom: 2rem;
            font-size: 0.9rem;
            border-radius: 0 0 8px 8px;
        }
        .breadcrumb a {
            color: #8B4513;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #D4A76A;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .main-nav a:hover {
            background-color: rgba(212, 167, 106, 0.2);
            border-bottom: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #D4A76A;
            cursor: pointer;
        }
        .hero {
            background: linear-gradient(rgba(62, 39, 35, 0.8), rgba(93, 64, 55, 0.8)), url('https://images.unsplash.com/photo-1546422904-90eab23c3d7e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 3rem 2rem;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 3rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .hero h1 {
            color: #FFD700;
            border: none;
            margin-top: 0;
        }
        .search-box {
            max-width: 700px;
            margin: 2rem auto 0;
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-box button {
            background: #D4A76A;
            color: #3E2723;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0 50px 50px 0;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #FFD700;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 900px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        }
        .intro {
            font-size: 1.3rem;
            color: #5D4037;
            background-color: #F5F0E6;
            padding: 1.5rem;
            border-left: 5px solid #D4A76A;
            margin-bottom: 2.5rem;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border: 8px solid #EFEBE9;
        }
        .highlight-box {
            background: linear-gradient(to right, #FFF8E1, #FFECB3);
            border-left: 6px solid #FFB300;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .link-list {
            background: #F5F5F5;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2.5rem 0;
        }
        .link-list ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            list-style: none;
        }
        .link-list li {
            background: white;
            padding: 0.8rem 1rem;
            border-radius: 6px;
            transition: transform 0.3s;
        }
        .link-list li:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            background: #8B4513;
            color: white;
            padding: 0.8rem 1rem;
            border-radius: 6px;
            margin-top: 0;
            text-align: center;
        }
        .rating-widget, .comment-widget {
            margin-bottom: 2.5rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #FFD700;
        }
        .stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            padding: 0.8rem 1rem;
            border: 1px solid #D4A76A;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn-submit {
            background: #8B4513;
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .btn-submit:hover {
            background: #5D2906;
        }
        .site-footer {
            background: linear-gradient(to right, #3E2723, #5D4037);
            color: #D4A76A;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 6px;
            margin-bottom: 0.8rem;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(212, 167, 106, 0.3);
        }
        friend-link a {
            color: #FFD700;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(212, 167, 106, 0.3);
            font-size: 0.95rem;
            color: #D4A76A;
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #795548;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 0.5rem;
        }
        .divider {
            height: 2px;
            background: linear-gradient(to right, transparent, #D4A76A, transparent);
            margin: 2.5rem 0;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.5rem;
            }
            .main-nav ul {
                flex-direction: column;
                width: 100%;
                gap: 0.5rem;
                display: none;
            }
            .main-nav.active ul {
                display: flex;
                margin-top: 1rem;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 20px;
            }
            .hero {
                padding: 2rem 1rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .sidebar {
                position: static;
            }
        }
