        * { 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: #333;
            background: linear-gradient(135deg, #0c2461 0%, #1e3799 30%, #4a69bd 100%);
            background-attachment: fixed;
            color: #f1f1f1;
        }
        a { color: #ffd32a; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #ffdd59; text-shadow: 0 0 8px rgba(255, 221, 89, 0.7); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        main.container { background-color: rgba(25, 42, 86, 0.92); border-radius: 10px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); margin-top: 20px; margin-bottom: 30px; padding: 30px; }
        .site-header { background: rgba(12, 36, 97, 0.95); padding: 15px 0; border-bottom: 3px solid #ffd32a; position: sticky; top: 0; z-index: 1000; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; }
        .my-logo { font-family: 'Impact', 'Arial Black', sans-serif; font-size: 2.8rem; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; }
        .my-logo a { color: #ffd32a; text-shadow: 0 0 15px rgba(255, 211, 42, 0.8); }
        .my-logo a:hover { color: #fff; text-shadow: 0 0 20px rgba(255, 211, 42, 1); }
        .breadcrumb { padding: 15px 0; font-size: 0.9rem; color: #aaa; }
        .breadcrumb a { color: #ffd32a; }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span { color: #ddd; }
        .main-nav { display: flex; align-items: center; }
        .nav-links { display: flex; list-style: none; }
        .nav-links li { margin-left: 25px; }
        .nav-links a { font-weight: 600; font-size: 1.1rem; padding: 8px 5px; position: relative; }
        .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #ffd32a; transition: width 0.3s; }
        .nav-links a:hover::after { width: 100%; }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: #ffd32a; }
        .search-module { margin: 25px 0; padding: 20px; background: rgba(255, 255, 255, 0.08); border-radius: 10px; text-align: center; }
        .search-form { display: flex; max-width: 600px; margin: 0 auto; }
        .search-input { flex: 1; padding: 15px; border: none; border-radius: 5px 0 0 5px; font-size: 1.1rem; }
        .search-btn { padding: 15px 25px; background: #ffd32a; color: #333; border: none; border-radius: 0 5px 5px 0; cursor: pointer; font-weight: bold; transition: background 0.3s; }
        .search-btn:hover { background: #ffdd59; }
        h1, h2, h3, h4 { color: #ffd32a; margin-top: 1.5em; margin-bottom: 0.7em; line-height: 1.3; }
        h1 { font-size: 3.2rem; border-bottom: 3px solid #ffd32a; padding-bottom: 15px; text-align: center; }
        h2 { font-size: 2.5rem; border-left: 5px solid #4a69bd; padding-left: 15px; }
        h3 { font-size: 2rem; }
        h4 { font-size: 1.6rem; color: #ffdd59; }
        p { margin-bottom: 1.5em; font-size: 1.2rem; text-align: justify; }
        .lead { font-size: 1.5rem; font-weight: 300; color: #ddd; margin-bottom: 2em; text-align: center; }
        .highlight { background: rgba(255, 211, 42, 0.15); border-left: 4px solid #ffd32a; padding: 20px; margin: 25px 0; border-radius: 0 10px 10px 0; }
        strong { color: #ffdd59; font-weight: 700; }
        em { color: #a5b1c2; }
        .content-img { float: right; margin: 15px 0 20px 30px; border-radius: 10px; border: 3px solid #ffd32a; max-width: 45%; box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
        .clearfix::after { content: ""; clear: both; display: table; }
        .user-interactive { margin: 40px 0; padding: 30px; background: rgba(30, 55, 153, 0.7); border-radius: 15px; }
        .interactive-title { text-align: center; margin-bottom: 25px; }
        .rating { text-align: center; margin: 20px 0; }
        .stars { font-size: 2.5rem; cursor: pointer; }
        .stars i { margin: 0 5px; color: #555; transition: color 0.2s, transform 0.2s; }
        .stars i:hover, .stars i.active { color: #ffd32a; transform: scale(1.2); }
        .comment-form, .rating-form { display: grid; gap: 15px; max-width: 800px; margin: 0 auto; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: bold; }
        .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 15px; border-radius: 5px; border: 1px solid #444; background: rgba(255,255,255,0.1); color: #fff; font-size: 1rem; }
        .form-group textarea { min-height: 150px; resize: vertical; }
        .submit-btn { padding: 15px 30px; background: #ffd32a; color: #222; border: none; border-radius: 5px; font-size: 1.2rem; font-weight: bold; cursor: pointer; transition: all 0.3s; }
        .submit-btn:hover { background: #ffdd59; box-shadow: 0 0 15px rgba(255, 221, 89, 0.5); }
        .related-links { margin: 40px 0; padding: 25px; background: rgba(255, 255, 255, 0.05); border-radius: 10px; }
        .related-links h3 { text-align: center; }
        .links-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 15px; margin-top: 20px; }
        .links-grid a { display: block; padding: 12px 20px; background: rgba(74, 105, 189, 0.6); border-radius: 5px; border-left: 4px solid #ffd32a; transition: all 0.3s; }
        .links-grid a:hover { background: rgba(74, 105, 189, 0.9); transform: translateX(5px); }
        .site-footer { background: rgba(12, 36, 97, 0.98); padding: 40px 0 20px; border-top: 3px solid #ffd32a; }
        .footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; }
        .footer-section { flex: 1; min-width: 250px; margin-bottom: 30px; padding: 0 20px; }
        .footer-section h3 { font-size: 1.5rem; margin-bottom: 20px; }
        friend-link { display: block; margin: 10px 0; color: #ffd32a; font-weight: 600; }
        .copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 20px; font-size: 0.9rem; color: #aaa; }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            .content-img { float: none; margin: 20px auto; max-width: 80%; display: block; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-links {
                position: fixed; top: 90px; right: -100%; width: 80%; height: calc(100vh - 90px);
                background: rgba(12, 36, 97, 0.98); flex-direction: column; align-items: center;
                padding-top: 40px; transition: right 0.5s ease-in-out; box-shadow: -5px 0 15px rgba(0,0,0,0.5);
            }
            .nav-links.active { right: 0; }
            .nav-links li { margin: 15px 0; }
            .header-inner { flex-wrap: wrap; }
            .search-form { flex-direction: column; }
            .search-input, .search-btn { border-radius: 5px; margin-bottom: 10px; }
            .footer-content { flex-direction: column; }
            .footer-section { padding: 0; }
        }
        @media (max-width: 576px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.9rem; }
            .container { padding: 0 15px; }
            main.container { padding: 20px; }
        }
