        * { 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.8;
            color: #e8e0d0;
            background-color: #0f0f14;
            background-image: linear-gradient(to bottom, #1a1a1a 0%, #0a0a0a 100%);
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a { color: #d4af37; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #ffdf6b; text-shadow: 0 0 8px rgba(212, 175, 55, 0.5); }
        img { max-width: 100%; height: auto; display: block; }
        ul, ol { padding-left: 2rem; margin: 1rem 0; }
        h1, h2, h3, h4 { color: #f0e6d2; font-weight: 700; line-height: 1.3; margin-top: 2rem; margin-bottom: 1rem; }
        h1 { font-size: 2.8rem; border-bottom: 3px solid #a8763e; padding-bottom: 0.5rem; }
        h2 { font-size: 2.2rem; color: #d4af37; }
        h3 { font-size: 1.8rem; }
        h4 { font-size: 1.4rem; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        .container { width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 1rem; }
        .mt-3 { margin-top: 1rem; }
        .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
        .site-header {
            background: rgba(10, 10, 10, 0.95);
            border-bottom: 1px solid #333;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.5rem;
            font-weight: bold;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px #000;
        }
        .my-logo:hover { color: #ffdf6b; }
        .nav-desktop { display: flex; gap: 2rem; }
        .nav-desktop a { padding: 0.5rem 1rem; border-radius: 4px; }
        .nav-desktop a:hover { background: rgba(212, 175, 55, 0.1); }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #d4af37;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(20, 20, 25, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            border-top: 1px solid #333;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            padding: 1rem;
            border-bottom: 1px solid #2a2a2a;
        }
        .nav-mobile a:last-child { border-bottom: none; }
        .breadcrumb {
            padding: 1rem 0;
            color: #aaa;
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #d4af37; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-content { background: rgba(25, 25, 30, 0.7); padding: 2rem; border-radius: 10px; border: 1px solid #333; }
        .sidebar {
            background: rgba(25, 25, 30, 0.7);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid #333;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .featured-img {
            width: 100%;
            border-radius: 8px;
            border: 2px solid #a8763e;
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(168, 118, 62, 0.15), rgba(20, 20, 30, 0.8));
            border-left: 5px solid #d4af37;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, #a8763e, #d4af37);
            color: #000;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        }
        .search-form, .comment-form, .rating-form {
            background: rgba(40, 40, 45, 0.8);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .form-group { margin-bottom: 1rem; }
        .form-control {
            width: 100%;
            padding: 0.8rem;
            background: #1a1a1f;
            border: 1px solid #444;
            border-radius: 4px;
            color: #f0e6d2;
        }
        .form-control:focus { outline: none; border-color: #d4af37; }
        .star-rating {
            direction: rtl;
            display: inline-block;
            font-size: 1.8rem;
        }
        .star-rating input { display: none; }
        .star-rating label {
            color: #555;
            cursor: pointer;
            padding: 0 3px;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label { color: #ffdf00; }
        .site-footer {
            background: rgba(10, 10, 10, 0.95);
            border-top: 1px solid #333;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            padding: 0.8rem;
            background: rgba(40, 40, 45, 0.5);
            border-radius: 5px;
        }
        .copyright {
            text-align: center;
            color: #777;
            font-size: 0.9rem;
            padding-top: 2rem;
            border-top: 1px solid #333;
            margin-top: 2rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-container { flex-wrap: wrap; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .article-content, .sidebar { padding: 1.5rem; }
        }
