        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary: #8B4513; 
            --secondary: #FFD700; 
            --accent: #228B22; 
            --dark: #1a1a1a;
            --light: #f5f5f5;
            --gray: #666;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #fdf6e3 0%, #fff 100%);
            max-width: 100%;
            overflow-x: hidden;
        }
        a { color: var(--accent); text-decoration: none; transition: var(--transition); }
        a:hover { color: var(--primary); text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header { background: var(--dark); color: white; padding: 1rem 0; box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; }
        .my-logo { font-size: 2rem; font-weight: bold; color: var(--secondary); text-shadow: 2px 2px 4px rgba(0,0,0,0.5); font-family: 'Copperplate', fantasy; }
        .my-logo:hover { text-decoration: none; color: #fff; }
        nav { display: flex; align-items: center; }
        .nav-links { display: flex; list-style: none; gap: 1.5rem; }
        .nav-links a { color: white; font-weight: 500; padding: 0.5rem; border-radius: 4px; }
        .nav-links a:hover { background: rgba(255,215,0,0.2); text-decoration: none; }
        .hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--secondary); }
        .breadcrumb { background: #eee; padding: 0.8rem 0; margin-bottom: 2rem; font-size: 0.9rem; }
        .breadcrumb a { color: var(--gray); }
        .breadcrumb a:hover { color: var(--primary); }
        main { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; padding: 2rem 0; }
        @media (max-width: 992px) { main { grid-template-columns: 1fr; } }
        article { background: white; padding: 2rem; border-radius: 12px; box-shadow: var(--shadow); }
        h1 { color: var(--primary); font-size: 2.8rem; margin-bottom: 1.5rem; line-height: 1.2; border-bottom: 3px solid var(--secondary); padding-bottom: 0.5rem; }
        h2 { color: var(--accent); font-size: 2rem; margin: 2rem 0 1rem; padding-top: 1rem; border-top: 1px dashed #ccc; }
        h3 { color: var(--dark); font-size: 1.5rem; margin: 1.5rem 0 0.8rem; }
        h4 { color: var(--gray); font-size: 1.2rem; margin: 1.2rem 0 0.6rem; }
        p { margin-bottom: 1.2rem; text-align: justify; }
        strong { color: var(--primary); }
        em { color: var(--accent); }
        .highlight { background-color: #fffacd; padding: 0.2rem 0.4rem; border-radius: 3px; }
        .lead { font-size: 1.3rem; color: var(--dark); font-weight: 500; }
        ul, ol { margin-left: 1.5rem; margin-bottom: 1.5rem; }
        li { margin-bottom: 0.5rem; }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary), var(--accent));
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: bold;
            text-align: center;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 8px rgba(139, 69, 19, 0.3);
        }
        .btn:hover { transform: translateY(-3px); box-shadow: 0 6px 12px rgba(139, 69, 19, 0.5); text-decoration: none; color: var(--secondary); }
        .card {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow);
            border-left: 5px solid var(--secondary);
        }
        .info-box { background: #e7f3ff; border-left: 5px solid #0066cc; padding: 1rem; margin: 1.5rem 0; }
        .warning-box { background: #fff4e6; border-left: 5px solid #ff9900; padding: 1rem; margin: 1.5rem 0; }
        aside { background: #f8f9fa; padding: 1.5rem; border-radius: 12px; box-shadow: var(--shadow); align-self: start; position: sticky; top: 120px; }
        .widget { margin-bottom: 2rem; }
        .widget-title { font-size: 1.3rem; color: var(--primary); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--secondary); }
        form { display: flex; flex-direction: column; gap: 1rem; }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.2); }
        .rating { display: flex; gap: 0.5rem; font-size: 1.8rem; color: #ddd; cursor: pointer; }
        .rating span:hover, .rating span.active { color: var(--secondary); }
        .comment { background: #f9f9f9; padding: 1rem; border-radius: 8px; margin-bottom: 1rem; border-left: 3px solid #ccc; }
        .comment-author { font-weight: bold; color: var(--primary); }
        .comment-date { font-size: 0.85rem; color: var(--gray); }
        footer { background: var(--dark); color: #bbb; padding: 3rem 0 1.5rem; margin-top: 3rem; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
        .footer-title { color: var(--secondary); font-size: 1.3rem; margin-bottom: 1.2rem; }
        friend-link { display: block; margin-bottom: 0.7rem; }
        friend-link a { color: #bbb; }
        friend-link a:hover { color: white; }
        .copyright { text-align: center; padding-top: 1.5rem; border-top: 1px solid #444; font-size: 0.9rem; color: #888; }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.7rem; }
            .hamburger { display: block; }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--dark);
                padding: 1rem;
                box-shadow: var(--shadow);
            }
            .nav-links.active { display: flex; }
            .header-inner { flex-wrap: wrap; }
        }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        article, aside { animation: fadeIn 0.8s ease-out; }
        .pulse { animation: pulse 2s infinite; }
        @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
