        * { 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-color: #f8f9fa;
            background-image: linear-gradient(to bottom, #f0f4f8 0%, #ffffff 100%);
            max-width: 100%;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 { font-family: Georgia, 'Times New Roman', Times, serif; color: #1a472a; margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: 2.8rem; margin-top: 1.5rem; text-align: center; border-bottom: 3px solid #d3a625; padding-bottom: 0.5rem; }
        h2 { font-size: 2.2rem; margin-top: 2.5rem; padding-left: 0.5rem; border-left: 5px solid #740001; }
        h3 { font-size: 1.8rem; margin-top: 2rem; color: #0e1a40; }
        h4 { font-size: 1.4rem; margin-top: 1.5rem; color: #5d5d5d; }
        p { margin-bottom: 1.2rem; text-align: justify; hyphens: auto; }
        a { color: #2a623d; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #d3a625; text-decoration: underline; }
        .lead { font-size: 1.2rem; font-weight: 500; color: #444; }
        .highlight { background-color: #fffacd; padding: 0.2rem 0.4rem; border-radius: 3px; }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        .last-update { font-style: italic; color: #666; text-align: right; margin-top: 2rem; padding-top: 1rem; border-top: 1px dashed #ccc; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .site-header { background: linear-gradient(135deg, #0e1a40 0%, #1a472a 100%); color: white; padding: 1rem 0; box-shadow: 0 4px 12px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
        .header-container { display: flex; justify-content: space-between; align-items: center; }
        .my-logo a { font-family: 'Harry P', fantasy, serif; font-size: 2.5rem; color: #d3a625; text-shadow: 2px 2px 4px #000; letter-spacing: 1px; }
        .my-logo a:hover { color: #ffdb6d; text-decoration: none; }
        .mobile-toggle { display: none; font-size: 1.8rem; cursor: pointer; }
        @media (max-width: 768px) {
            .mobile-toggle { display: block; }
            .nav-menu { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: #1a472a; flex-direction: column; padding: 1rem; box-shadow: 0 5px 10px rgba(0,0,0,0.2); }
            .nav-menu.active { display: flex; }
        }
        .nav-menu { display: flex; list-style: none; }
        .nav-menu li { margin-left: 1.8rem; }
        .nav-menu a { color: #eee; font-weight: 500; padding: 0.5rem 0.8rem; border-radius: 4px; }
        .nav-menu a:hover { background-color: rgba(211, 166, 37, 0.2); text-decoration: none; }
        .breadcrumb { padding: 1rem 0; font-size: 0.9rem; color: #666; }
        .breadcrumb a { color: #2a623d; }
        .sidebar { background: #ffffff; border-left: 5px solid #d3a625; padding: 25px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        .widget { margin-bottom: 2rem; }
        .widget-title { font-size: 1.3rem; margin-bottom: 1rem; color: #0e1a40; padding-bottom: 0.5rem; border-bottom: 2px solid #eee; }
        .search-form, .comment-form, .rating-form { margin-bottom: 2rem; }
        .form-group { margin-bottom: 1rem; }
        .form-label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
        .form-input, .form-textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s, box-shadow 0.3s;
        }
        .form-input:focus, .form-textarea:focus { outline: none; border-color: #2a623d; box-shadow: 0 0 0 3px rgba(42, 98, 61, 0.2); }
        .form-textarea { min-height: 120px; resize: vertical; }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, #1a472a, #2a623d);
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: background 0.3s, transform 0.2s;
        }
        .btn:hover { background: linear-gradient(to right, #2a623d, #3a7a4f); transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.1); text-decoration: none; }
        .btn:active { transform: translateY(0); }
        .stars { display: flex; gap: 5px; margin-bottom: 1rem; }
        .star { font-size: 1.8rem; color: #ddd; cursor: pointer; transition: color 0.2s; }
        .star:hover, .star.active { color: #ffc107; }
        .article-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border: 3px solid #d3a625;
        }
        .content-block { background: white; padding: 30px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); margin-bottom: 30px; }
        .internal-links { background: #f0f7f0; padding: 20px; border-radius: 8px; margin: 2rem 0; }
        .internal-links ul { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 10px; }
        .internal-links li { padding: 0.5rem 0; border-bottom: 1px dotted #ccc; }
        .internal-links li:last-child { border-bottom: none; }
        .site-footer { background: #0e1a40; color: #ccc; padding: 3rem 0 1.5rem; margin-top: 4rem; }
        .footer-container { display: flex; flex-wrap: wrap; justify-content: space-between; }
        .footer-section { flex: 1; min-width: 250px; margin-bottom: 2rem; padding-right: 20px; }
        .footer-section h4 { color: #d3a625; font-size: 1.3rem; margin-bottom: 1.2rem; }
        friend-link { display: block; color: #aaa; margin-bottom: 0.8rem; }
        friend-link:hover { color: #ffdb6d; }
        .copyright { text-align: center; padding-top: 1.5rem; border-top: 1px solid #2a3b5c; width: 100%; color: #aaa; font-size: 0.9rem; }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-container, .footer-container { flex-direction: column; text-align: center; }
            .nav-menu li { margin: 0.5rem 0; }
            .sidebar { border-left: none; border-top: 5px solid #d3a625; margin-top: 2rem; }
        }
