        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #fef9e7;
            color: #333;
            line-height: 1.7;
            max-width: 120rem;
            margin: 0 auto;
            box-shadow: 0 0 20px rgba(0,0,0,0.05);
        }
        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;
        }
        .container {
            width: 95%;
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .text-center { text-align: center; }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .bold { font-weight: 700; }
        .highlight {
            background-color: #fff3cd;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            border-left: 4px solid #ffc107;
        }
        .site-header {
            background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
            color: #fff;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .my-logo span {
            color: #ffcc33;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .main-nav a {
            color: #ffebcd;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 5px;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            text-decoration: none;
        }
        .breadcrumb {
            background-color: #ffeaa7;
            padding: 0.8rem 1rem;
            font-size: 0.9rem;
            border-bottom: 1px solid #fdcb6e;
        }
        .breadcrumb a {
            color: #e17055;
        }
        .breadcrumb span {
            color: #636e72;
            margin: 0 0.5rem;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 1rem;
            background-color: #fff;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            overflow-wrap: break-word;
        }
        article h1 {
            font-size: 2.8rem;
            color: #8b4513;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #fdcb6e;
            padding-bottom: 0.5rem;
        }
        article h2 {
            font-size: 2rem;
            color: #a04000;
            margin: 2.5rem 0 1rem;
            padding-top: 1rem;
            border-top: 1px dashed #ddd;
        }
        article h3 {
            font-size: 1.5rem;
            color: #d35400;
            margin: 2rem 0 1rem;
        }
        article h4 {
            font-size: 1.2rem;
            color: #e67e22;
            margin: 1.5rem 0 0.8rem;
        }
        article p {
            margin-bottom: 1.2rem;
            text-align: justify;
            hyphens: auto;
        }
        article ul, article ol {
            margin-bottom: 1.2rem;
            padding-left: 2rem;
        }
        article li {
            margin-bottom: 0.5rem;
        }
        .article-img {
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            max-width: 800px;
        }
        .article-img img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .article-img img:hover {
            transform: scale(1.02);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 0.5rem;
            background-color: #f9f9f9;
            font-size: 0.9rem;
        }
        .sidebar {
            background-color: #fffaf0;
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid #f8c471;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar h3 {
            color: #8b4513;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #fdcb6e;
        }
        .search-box, .comment-form, .rating-form {
            background: #fff;
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #eee;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        .search-box h3, .comment-form h3, .rating-form h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #555;
        }
        .form-control {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #d35400;
            box-shadow: 0 0 0 2px rgba(211, 84, 0, 0.2);
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, #e67e22, #d35400);
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn:hover {
            background: linear-gradient(to right, #d35400, #a04000);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(211, 84, 0, 0.3);
            text-decoration: none;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ffcc00;
        }
        .star-rating i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .site-footer {
            background-color: #2d3436;
            color: #dfe6e9;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #fdcb6e;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            list-style: none;
            padding: 0;
        }
        .friend-links a {
            color: #74b9ff;
            padding: 0.3rem 0.7rem;
            background-color: rgba(255,255,255,0.05);
            border-radius: 4px;
        }
        .friend-links a:hover {
            background-color: rgba(255,255,255,0.1);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #636e72;
            color: #b2bec3;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: #8b4513;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease-in-out;
                z-index: 999;
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav ul {
                flex-direction: column;
                padding: 2rem;
                gap: 0;
            }
            .main-nav li {
                margin-bottom: 0.8rem;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.7rem;
            }
            .sidebar {
                position: static;
            }
        }
