* { 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, #f5f7fa 0%, #c3cfe2 100%); }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        header { background: #2d3436; color: #fff; padding: 1rem 0; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
        .header-top { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 2.2rem; font-weight: 800; color: #00cec9; text-transform: uppercase; letter-spacing: 1px; }
        .logo:hover { color: #81ecec; transform: scale(1.05); }
        .hamburger { display: none; background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; }
        nav ul { display: flex; gap: 2rem; }
        nav a { padding: 0.5rem 1rem; border-radius: 4px; font-weight: 600; }
        nav a:hover { background: #00cec9; color: #2d3436; }
        .breadcrumb { background: #636e72; padding: 0.8rem; margin-top: 1rem; border-radius: 4px; font-size: 0.9rem; }
        .breadcrumb a { color: #dfe6e9; }
        .breadcrumb a:hover { color: #00cec9; }
        .breadcrumb span { color: #fff; }
        .search-section { background: #fff; padding: 2rem 0; margin: 1rem 0; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        .search-form { display: flex; max-width: 700px; margin: 0 auto; }
        .search-form input { flex: 1; padding: 1rem; border: 2px solid #00cec9; border-radius: 8px 0 0 8px; font-size: 1rem; }
        .search-form button { background: #00cec9; color: #2d3436; border: none; padding: 1rem 2rem; border-radius: 0 8px 8px 0; font-weight: bold; cursor: pointer; }
        .search-form button:hover { background: #0984e3; color: #fff; }
        main { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; margin: 2rem 0; }
        article { background: #fff; padding: 2.5rem; border-radius: 12px; box-shadow: 0 8px 25px rgba(0,0,0,0.08); }
        h1 { font-size: 2.8rem; color: #2d3436; margin-bottom: 1.5rem; border-bottom: 3px solid #00cec9; padding-bottom: 0.5rem; }
        h2 { font-size: 2.2rem; color: #0984e3; margin: 2rem 0 1rem; }
        h3 { font-size: 1.8rem; color: #00b894; margin: 1.5rem 0 0.8rem; }
        p { margin-bottom: 1.2rem; font-size: 1.1rem; color: #555; }
        .highlight { background: #ffeaa7; padding: 0.2rem 0.5rem; border-radius: 3px; font-weight: bold; }
        .emoji { font-size: 1.2rem; margin-right: 0.3rem; }
        figure { margin: 2rem 0; text-align: center; }
        figure img { border-radius: 10px; border: 5px solid #dfe6e9; transition: transform 0.5s; }
        figure img:hover { transform: scale(1.02); }
        figcaption { font-style: italic; color: #636e72; margin-top: 0.5rem; }
        aside { background: #fff; padding: 1.5rem; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); align-self: start; }
        .sidebar-widget { margin-bottom: 2rem; }
        .sidebar-widget h3 { font-size: 1.5rem; color: #2d3436; border-left: 4px solid #00cec9; padding-left: 0.5rem; }
        .rating-section, .comments-section { background: #f8f9fa; padding: 1.5rem; border-radius: 10px; margin: 2rem 0; }
        .stars { display: flex; direction: rtl; justify-content: center; margin-bottom: 1rem; }
        .stars input { display: none; }
        .stars label { color: #ddd; font-size: 2rem; cursor: pointer; padding: 0 0.2rem; }
        .stars input:checked ~ label,
        .stars label:hover,
        .stars label:hover ~ label { color: #f1c40f; }
        .rating-section button, .comments-section button { background: #00b894; color: white; border: none; padding: 0.8rem 1.5rem; border-radius: 6px; cursor: pointer; font-weight: bold; display: block; margin: 1rem auto 0; }
        .rating-section button:hover, .comments-section button:hover { background: #00a085; }
        .comments-section textarea { width: 100%; padding: 1rem; border: 2px solid #b2bec3; border-radius: 8px; resize: vertical; font-family: inherit; }
        .web-links { background: #2d3436; padding: 2.5rem 0; margin-top: 2rem; }
        .web-links h4 { color: #fff; text-align: center; font-size: 1.8rem; margin-bottom: 1.5rem; }
        .links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.2rem; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .web-link { background: #636e72; padding: 1.2rem; border-radius: 8px; text-align: center; transition: all 0.3s; }
        .web-link:hover { background: #00cec9; transform: translateY(-5px); }
        .web-link a { color: #fff; font-weight: 600; }
        .copyright { background: #1a1a1a; color: #b2bec3; text-align: center; padding: 1.5rem; font-size: 0.9rem; }
        .copyright a { color: #00cec9; }
        .copyright a:hover { text-decoration: underline; }
        @media (max-width: 992px) {
            main { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            nav ul { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: #2d3436; z-index: 1000; padding: 1rem; }
            nav ul.show { display: flex; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .search-form { flex-direction: column; }
            .search-form input, .search-form button { border-radius: 8px; margin-bottom: 0.5rem; }
        }
