        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #f0f0f0;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #f8c555; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #ffdd87; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header { background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px); border-bottom: 2px solid #b8860b; position: sticky; top: 0; z-index: 1000; }
        .header-top { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
        .logo a { font-size: 2.2rem; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; background: linear-gradient(to right, #d4af37, #f8c555, #ffdd87); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .search-form { display: flex; flex-grow: 0.4; }
        .search-form input { flex-grow: 1; padding: 12px 20px; border: 1px solid #444; border-radius: 30px 0 0 30px; background: #222; color: #fff; font-size: 1rem; }
        .search-form button { background: linear-gradient(to right, #b8860b, #d4af37); border: none; border-radius: 0 30px 30px 0; padding: 0 25px; cursor: pointer; color: #000; font-weight: bold; transition: opacity 0.3s; }
        .search-form button:hover { opacity: 0.9; }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: #f8c555; }
        nav { background: rgba(26, 26, 46, 0.98); padding: 10px 0; }
        .nav-list { display: flex; justify-content: center; list-style: none; gap: 30px; }
        .nav-list a { font-size: 1.1rem; font-weight: 600; padding: 8px 16px; border-radius: 4px; }
        .nav-list a:hover { background: rgba(184, 134, 11, 0.2); }
        .breadcrumb { padding: 15px 0; font-size: 0.9rem; color: #aaa; }
        .breadcrumb a { color: #d4af37; }
        main { flex: 1; padding: 30px 0; }
        article { background: rgba(30, 30, 46, 0.8); border-radius: 15px; padding: 40px; margin-bottom: 40px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
        h1 { font-size: 3.2rem; margin-bottom: 25px; color: #f8c555; text-align: center; line-height: 1.2; }
        h2 { font-size: 2.2rem; margin: 40px 0 20px; color: #ffdd87; border-left: 5px solid #b8860b; padding-left: 15px; }
        h3 { font-size: 1.6rem; margin: 30px 0 15px; color: #d4af37; }
        p { margin-bottom: 20px; font-size: 1.15rem; text-align: justify; }
        .intro { font-size: 1.3rem; color: #ccc; font-weight: 300; margin-bottom: 35px; text-align: center; }
        .highlight { background: rgba(184, 134, 11, 0.15); border-left: 4px solid #f8c555; padding: 20px; margin: 25px 0; border-radius: 0 8px 8px 0; }
        .feature-img { width: 100%; border-radius: 10px; border: 3px solid #b8860b; margin: 30px auto; box-shadow: 0 5px 20px rgba(0,0,0,0.7); }
        .img-caption { text-align: center; font-style: italic; color: #aaa; margin-top: 10px; }
        .content-block { margin-bottom: 35px; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin: 30px 0; }
        .stat-card { background: rgba(10,10,20,0.7); padding: 20px; border-radius: 10px; text-align: center; border: 1px solid #333; transition: transform 0.3s; }
        .stat-card:hover { transform: scale(1.03); border-color: #b8860b; }
        .stat-card i { font-size: 2.5rem; color: #f8c555; margin-bottom: 15px; }
        .stat-card h4 { font-size: 1.8rem; color: #ffdd87; margin-bottom: 10px; }
        .quote { font-size: 1.4rem; font-style: italic; color: #ccc; text-align: center; padding: 30px; margin: 40px 0; background: rgba(184, 134, 11, 0.1); border-radius: 15px; border-top: 2px solid #d4af37; border-bottom: 2px solid #d4af37; }
        .user-feedback { background: rgba(40, 40, 60, 0.9); padding: 30px; border-radius: 15px; margin-top: 50px; }
        .feedback-title { text-align: center; margin-bottom: 30px; }
        .feedback-form { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
        .form-group { display: flex; flex-direction: column; }
        .form-group label { margin-bottom: 8px; font-weight: 600; color: #d4af37; }
        .form-group input, .form-group textarea, .form-group select { padding: 14px; border-radius: 8px; border: 1px solid #555; background: #222; color: #fff; font-size: 1rem; }
        .form-group textarea { min-height: 150px; resize: vertical; }
        .full-width { grid-column: 1 / -1; }
        .stars { display: flex; gap: 10px; direction: rtl; }
        .stars input { display: none; }
        .stars label { font-size: 2rem; color: #444; cursor: pointer; transition: color 0.2s; }
        .stars label:hover, .stars label:hover ~ label, .stars input:checked ~ label { color: #f8c555; }
        .submit-btn { background: linear-gradient(to right, #b8860b, #d4af37); color: #000; border: none; padding: 16px; border-radius: 8px; font-size: 1.2rem; font-weight: bold; cursor: pointer; transition: opacity 0.3s; }
        .submit-btn:hover { opacity: 0.9; }
        .internal-links { background: rgba(20, 20, 35, 0.95); padding: 40px 0; margin-top: 50px; }
        .web-link { display: inline-block; margin: 10px 15px; padding: 12px 25px; background: rgba(184, 134, 11, 0.15); border-radius: 30px; border: 1px solid #444; transition: all 0.3s; }
        .web-link:hover { background: rgba(184, 134, 11, 0.3); border-color: #f8c555; transform: translateY(-5px); }
        footer { background: #0a0a0a; text-align: center; padding: 30px 0; border-top: 2px solid #b8860b; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 25px; margin-bottom: 25px; }
        .footer-links a { color: #aaa; }
        .footer-links a:hover { color: #f8c555; }
        .copyright { color: #777; font-size: 0.95rem; }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2rem; }
            .feedback-form { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .header-top { flex-wrap: wrap; }
            .search-form { order: 3; width: 100%; margin-top: 20px; }
            .hamburger { display: block; }
            nav { display: none; }
            nav.active { display: block; }
            .nav-list { flex-direction: column; align-items: center; gap: 15px; }
            .stat-card { padding: 15px; }
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.8rem; }
            article { padding: 25px; }
            .stats-grid { grid-template-columns: 1fr; }
        }
