        * { 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, #f5f7fa 0%, #f0f2f5 100%);
            background-attachment: fixed;
            max-width: 1400px;
            margin: 0 auto;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
        }
        h1, h2, h3, h4 { font-family: 'Georgia', serif; color: #2c3e50; margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: 2.8rem; border-bottom: 3px solid #e74c3c; padding-bottom: 0.5rem; margin-top: 1.5rem; }
        h2 { font-size: 2.2rem; color: #34495e; border-left: 5px solid #3498db; padding-left: 15px; margin-top: 2.5rem; }
        h3 { font-size: 1.8rem; color: #16a085; margin-top: 2rem; }
        h4 { font-size: 1.4rem; color: #8e44ad; margin-top: 1.5rem; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        a { color: #2980b9; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #e74c3c; text-decoration: underline; }
        .lead { font-size: 1.3rem; font-weight: 300; color: #555; }
        strong { color: #2c3e50; font-weight: 700; }
        em { font-style: italic; color: #7f8c8d; }
        .container { width: 100%; padding: 0 20px; }
        .main-content { display: grid; grid-template-columns: 1fr 300px; gap: 40px; padding: 30px 20px; }
        @media (max-width: 992px) { .main-content { grid-template-columns: 1fr; } }
        .site-header { background: linear-gradient(to right, #1a2980, #26d0ce); color: white; padding: 1rem 0; }
        .header-container { display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
        .my-logo { font-family: 'Impact', 'Arial Black', sans-serif; font-size: 2.8rem; letter-spacing: 2px; }
        .my-logo a { color: white; text-decoration: none; }
        .my-logo span { color: #f1c40f; }
        .nav-desktop { display: flex; gap: 25px; }
        .nav-desktop a { color: white; font-weight: 600; padding: 8px 12px; border-radius: 4px; }
        .nav-desktop a:hover { background: rgba(255, 255, 255, 0.2); text-decoration: none; }
        .hamburger { display: none; font-size: 1.8rem; background: none; border: none; color: white; cursor: pointer; }
        .nav-mobile { display: none; flex-direction: column; background: #2c3e50; position: absolute; width: 100%; top: 100%; left: 0; z-index: 1000; }
        .nav-mobile.active { display: flex; }
        .nav-mobile a { color: white; padding: 15px 20px; border-bottom: 1px solid #34495e; }
        .nav-mobile a:hover { background: #34495e; }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
        }
        .breadcrumb { background: #ecf0f1; padding: 12px 20px; font-size: 0.9rem; }
        .breadcrumb a { color: #7f8c8d; }
        .breadcrumb span { color: #95a5a6; }
        .article-content { background: white; padding: 40px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .article-img { width: 100%; max-height: 500px; object-fit: cover; border-radius: 10px; margin: 30px 0; border: 8px solid #f8f9fa; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
        .highlight-box { background: linear-gradient(120deg, #e3f2fd, #f3e5f5); border-left: 6px solid #9b59b6; padding: 25px; margin: 30px 0; border-radius: 0 10px 10px 0; }
        .quote { font-size: 1.4rem; color: #2d3436; text-align: center; padding: 25px; background: #ffeaa7; border-radius: 12px; margin: 30px 0; font-style: italic; border: 2px dashed #fab1a0; }
        .sidebar { background: white; padding: 30px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); align-self: start; position: sticky; top: 20px; }
        .sidebar h3 { font-size: 1.5rem; margin-top: 0; }
        .widget { margin-bottom: 35px; }
        .link-list { list-style: none; }
        .link-list li { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px dashed #eee; }
        .link-list a::before { content: "🎲 "; }
        .search-box, .comment-form, .rating-form { background: #f8f9fa; padding: 25px; border-radius: 10px; margin: 30px 0; border: 1px solid #e9ecef; }
        .form-group { margin-bottom: 20px; }
        label { display: block; margin-bottom: 8px; font-weight: 600; color: #495057; }
        input, textarea, select { width: 100%; padding: 14px; border: 2px solid #ced4da; border-radius: 8px; font-size: 1rem; transition: border 0.3s; }
        input:focus, textarea:focus, select:focus { border-color: #80bdff; outline: none; box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25); }
        button, .btn { background: linear-gradient(to right, #3498db, #2ecc71); color: white; border: none; padding: 14px 28px; border-radius: 8px; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; display: inline-block; }
        button:hover, .btn:hover { background: linear-gradient(to right, #2980b9, #27ae60); transform: translateY(-3px); box-shadow: 0 7px 14px rgba(0,0,0,0.15); text-decoration: none; }
        .stars { display: flex; gap: 10px; margin: 15px 0; }
        .star { font-size: 2rem; color: #ddd; cursor: pointer; transition: color 0.2s; }
        .star:hover, .star.active { color: #f39c12; }
        .site-footer { background: #2c3e50; color: #ecf0f1; padding: 50px 20px 30px; margin-top: 50px; }
        .footer-container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h3 { color: #f1c40f; border-bottom: 2px solid #34495e; padding-bottom: 10px; margin-bottom: 20px; }
        friend-link { display: block; margin: 10px 0; }
        friend-link a { color: #bdc3c7; }
        .copyright { text-align: center; padding-top: 30px; border-top: 1px solid #34495e; margin-top: 30px; font-size: 0.9rem; color: #95a5a6; }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .article-content { padding: 25px; }
            .main-content { padding: 20px 10px; gap: 25px; }
            .sidebar { position: static; }
        }
