        * { 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: #333;
            background: #fefefe;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a { color: #d35400; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #a04000; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        h1 { font-size: 2.8rem; margin-bottom: 1.5rem; color: #8b4513; line-height: 1.2; }
        h2 { font-size: 2.2rem; margin: 2.5rem 0 1rem; color: #a0522d; border-bottom: 2px solid #f0d9b5; padding-bottom: 0.5rem; }
        h3 { font-size: 1.8rem; margin: 2rem 0 0.8rem; color: #cd853f; }
        h4 { font-size: 1.4rem; margin: 1.5rem 0 0.6rem; color: #d2691e; }
        p, li { margin-bottom: 1.2rem; font-size: 1.125rem; }
        .lead { font-size: 1.3rem; color: #555; font-weight: 300; }
        strong { color: #8b4513; }
        em { font-style: italic; color: #777; }
        blockquote {
            border-left: 4px solid #f0d9b5;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #666;
        }
        .container { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; }
        @media (max-width: 992px) {
            .container { grid-template-columns: 1fr; }
        }
        header { padding: 2rem 0; border-bottom: 1px solid #eee; margin-bottom: 2rem; }
        .header-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .logo a { font-size: 2.5rem; font-weight: 900; color: #d35400; text-decoration: none; }
        .logo a:hover { color: #a04000; text-decoration: none; }
        .logo .tagline { font-size: 1rem; color: #888; margin-top: 0.25rem; }
        nav { background: #8b4513; border-radius: 8px; margin: 1.5rem 0; }
        .nav-desktop { display: flex; flex-wrap: wrap; list-style: none; }
        .nav-desktop li { flex: 1; min-width: 120px; }
        .nav-desktop a {
            display: block;
            padding: 1rem 1.5rem;
            color: white;
            text-align: center;
            font-weight: 500;
        }
        .nav-desktop a:hover { background: #a0522d; text-decoration: none; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #8b4513;
            cursor: pointer;
            padding: 0.5rem;
        }
        .nav-mobile { display: none; flex-direction: column; list-style: none; background: #f9f3ec; border-radius: 8px; padding: 1rem; margin-top: 1rem; }
        .nav-mobile.active { display: flex; }
        .nav-mobile li { margin-bottom: 0.5rem; }
        .nav-mobile a { display: block; padding: 0.75rem; color: #8b4513; border-radius: 4px; }
        .nav-mobile a:hover { background: #f0d9b5; }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .header-top { flex-direction: column; align-items: flex-start; }
            .logo { margin-bottom: 1rem; }
        }
        .breadcrumb { padding: 0.75rem 0; color: #777; font-size: 0.9rem; margin-bottom: 1.5rem; }
        .breadcrumb a { color: #d35400; }
        main { grid-column: 1; }
        article { padding-right: 1rem; }
        .article-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px dashed #ddd; color: #888; font-size: 0.95rem; }
        .author { display: flex; align-items: center; gap: 0.5rem; }
        .author img { width: 40px; height: 40px; border-radius: 50%; }
        aside { grid-column: 2; }
        @media (max-width: 992px) { aside { grid-column: 1; } }
        .sidebar-widget {
            background: #f9f3ec;
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border: 1px solid #f0d9b5;
        }
        .sidebar-widget h3 { font-size: 1.3rem; margin-top: 0; }
        .btn {
            display: inline-block;
            background: #d35400;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease, transform 0.2s ease;
        }
        .btn:hover {
            background: #a04000;
            text-decoration: none;
            transform: translateY(-2px);
        }
        .featured-image {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            margin: 2.5rem 0;
            box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
        }
        .featured-image img { transition: transform 0.5s ease; }
        .featured-image:hover img { transform: scale(1.02); }
        .caption { text-align: center; font-style: italic; color: #666; margin-top: 0.5rem; font-size: 0.95rem; }
        .form-group { margin-bottom: 1.5rem; }
        .form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: #555; }
        .form-control {
            width: 100%;
            padding: 0.875rem;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        .form-control:focus { border-color: #d35400; outline: none; }
        .rating { display: flex; gap: 0.5rem; margin: 1rem 0; }
        .rating i { color: #ddd; cursor: pointer; font-size: 1.5rem; transition: color 0.2s; }
        .rating i:hover,
        .rating i.active { color: #ffc107; }
        .comment { background: #f9f9f9; padding: 1.5rem; border-radius: 8px; margin-bottom: 1.5rem; border-left: 4px solid #d35400; }
        .comment-header { display: flex; justify-content: space-between; margin-bottom: 0.75rem; font-size: 0.9rem; color: #777; }
        footer {
            background: #2c1810;
            color: #f0d9b5;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
            border-radius: 12px 12px 0 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 { color: #f0d9b5; border-bottom: none; font-size: 1.3rem; }
        .footer-section a { color: #e6c7a3; }
        friend-link {
            display: block;
            background: #3e2419;
            padding: 1rem;
            border-radius: 6px;
            margin: 0.5rem 0;
            text-align: center;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #4a2e20;
            font-size: 0.9rem;
            color: #c9b08b;
        }
        .text-center { text-align: center; }
        .mt-4 { margin-top: 2rem; }
        .mb-4 { margin-bottom: 2rem; }
        .p-3 { padding: 1.5rem; }
        .highlight { background: #fff9e6; padding: 1.5rem; border-radius: 8px; border: 1px solid #ffecb3; }
        .emoji { font-size: 1.2em; }
