* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.8; color: #2c3e50; background: #f8f9fa; }
        a { text-decoration: none; color: #27ae60; transition: color 0.3s; }
        a:hover { color: #2ecc71; text-decoration: underline; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: linear-gradient(135deg, #1e5631, #2ecc71); color: white; padding: 15px 0; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .logo a { font-size: 2.2rem; font-weight: 800; color: white; letter-spacing: 1px; }
        .nav-desktop { display: flex; list-style: none; }
        .nav-desktop li { margin-left: 25px; }
        .nav-desktop a { color: white; font-weight: 600; padding: 8px 15px; border-radius: 5px; }
        .nav-desktop a:hover { background: rgba(255,255,255,0.2); }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; }
        .nav-mobile { display: none; flex-direction: column; background: #1e5631; position: absolute; top: 80px; right: 20px; width: 250px; border-radius: 10px; padding: 15px; z-index: 1000; }
        .nav-mobile.show { display: flex; }
        .nav-mobile a { color: white; padding: 10px; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .breadcrumb { padding: 15px 0; background: #ecf0f1; font-size: 0.95rem; }
        .breadcrumb a { color: #27ae60; }
        main { display: grid; grid-template-columns: 1fr; gap: 30px; padding: 30px 0; }
        article { background: white; padding: 30px; border-radius: 15px; box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
        h1 { font-size: 2.8rem; color: #1e5631; margin-bottom: 20px; border-left: 6px solid #2ecc71; padding-left: 15px; }
        h2 { font-size: 2rem; color: #27ae60; margin: 25px 0 15px; }
        h3 { font-size: 1.6rem; color: #2c3e50; margin: 20px 0 10px; }
        p { margin-bottom: 20px; text-align: justify; font-size: 1.1rem; }
        emoji { font-size: 1.3rem; margin-right: 5px; }
        .highlight { background: #e8f6f3; padding: 15px; border-left: 4px solid #2ecc71; margin: 20px 0; border-radius: 0 8px 8px 0; }
        img { max-width: 100%; height: auto; border-radius: 12px; margin: 25px auto; display: block; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
        .function-section { background: white; padding: 25px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
        .search-form, .comment-form, .rating-form { display: grid; gap: 15px; margin-top: 15px; }
        input, textarea, select { padding: 12px; border: 2px solid #bdc3c7; border-radius: 8px; font-size: 1rem; }
        input:focus, textarea:focus { border-color: #2ecc71; outline: none; }
        button { padding: 14px 25px; background: linear-gradient(to right, #27ae60, #2ecc71); color: white; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; }
        button:hover { transform: translateY(-3px); box-shadow: 0 6px 12px rgba(39, 174, 96, 0.3); }
        .stars { display: flex; direction: ltr; justify-content: center; margin: 15px 0; }
        .stars input { display: none; }
        .stars label { font-size: 2rem; color: #ddd; cursor: pointer; margin: 0 5px; }
        .stars label:hover, .stars label:hover ~ label, .stars input:checked ~ label { color: #f1c40f; }
        .internal-links { background: #e8f5e9; padding: 30px; border-radius: 12px; margin: 30px 0; }
        .web-link { background: white; margin: 12px 0; padding: 15px; border-radius: 8px; border-left: 5px solid #27ae60; }
        .web-link a { font-weight: bold; font-size: 1.1rem; }
        footer { background: #1e5631; color: white; text-align: center; padding: 30px; margin-top: 40px; }
        .footer-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 25px; }
        .footer-links a { color: #bdc3c7; }
        .copyright { font-size: 0.9rem; color: #95a5a6; margin-top: 20px; }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .header-content { flex-wrap: wrap; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            main { padding: 20px 0; }
            article, .function-section { padding: 20px; }
            .footer-links { grid-template-columns: 1fr; }
        }
        @media (min-width: 769px) {
            .nav-mobile { display: none; }
        }
