        * {
            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: #e8e6e3;
            background-color: #121212;
            background-image: linear-gradient(to bottom, #0c0c0c, #1a1a1a);
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #f5e07a;
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 5px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(18, 18, 18, 0.95);
            border-bottom: 2px solid #3d2b1f;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Georgia', serif;
            font-size: 2.2rem;
            font-weight: bold;
            background: linear-gradient(90deg, #8B4513, #D4AF37, #8B4513);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .my-logo:hover {
            animation: glow 1.5s ease-in-out infinite alternate;
        }
        @keyframes glow {
            from { text-shadow: 0 0 5px #8B4513; }
            to { text-shadow: 0 0 15px #D4AF37, 0 0 20px #8B4513; }
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #d4af37;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #d4af37;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            background-color: #1a1a1a;
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb span {
            margin: 0 8px;
            color: #666;
        }
        .main-content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content-area {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: linear-gradient(to bottom, #1e1e1e, #222);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #444;
        }
        .article-content h1 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            color: #d4af37;
            text-align: center;
            border-bottom: 3px double #8B4513;
            padding-bottom: 20px;
        }
        .article-content h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: #c9b37e;
            padding-left: 10px;
            border-left: 5px solid #8B4513;
        }
        .article-content h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: #e0cda9;
        }
        .article-content h4 {
            font-size: 1.3rem;
            margin: 25px 0 12px;
            color: #f0e6d2;
        }
        .article-content p {
            margin-bottom: 1.8em;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-content blockquote {
            border-left: 4px solid #d4af37;
            padding-left: 25px;
            margin: 30px;
            font-style: italic;
            color: #bbb;
            background-color: rgba(212, 175, 55, 0.05);
            padding-top: 15px;
            padding-bottom: 15px;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box {
            background-color: #2a2118;
            border: 1px solid #5d4c3a;
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
            box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
        }
        .highlight-box h3 {
            color: #d4af37;
            margin-top: 0;
        }
        .article-content strong {
            color: #f5e07a;
            font-weight: 700;
        }
        .hero-image {
            width: 100%;
            margin: 30px 0;
            border: 3px solid #5d4c3a;
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #888;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px dashed #555;
        }
        .sidebar {
            background-color: #1a1a1a;
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #333;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar h3 {
            color: #d4af37;
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3d2b1f;
        }
        .search-form input[type="search"] {
            width: 100%;
            padding: 12px 15px;
            background-color: #2a2a2a;
            border: 1px solid #555;
            border-radius: 5px;
            color: #fff;
            font-size: 1rem;
        }
        .search-form button {
            width: 100%;
            margin-top: 10px;
            padding: 12px;
            background: linear-gradient(to bottom, #8B4513, #5d2900);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: linear-gradient(to bottom, #a0522d, #6b3400);
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            font-size: 2rem;
            color: #555;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffd700;
            transform: scale(1.2);
        }
        .rating-widget button {
            width: 100%;
            padding: 12px;
            background-color: #2d5a27;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .rating-widget button:hover {
            background-color: #3a6b33;
        }
        .comments-section {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid #3d2b1f;
        }
        .comment-form textarea {
            width: 100%;
            height: 150px;
            padding: 15px;
            background-color: #2a2a2a;
            border: 1px solid #555;
            border-radius: 5px;
            color: #fff;
            font-family: inherit;
            font-size: 1rem;
            resize: vertical;
            margin-bottom: 15px;
        }
        .comment-form button {
            padding: 15px 30px;
            background: linear-gradient(to right, #1e3c72, #2a5298);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: linear-gradient(to right, #2a5298, #3a6bc7);
        }
        .site-footer {
            background-color: #0c0c0c;
            padding: 50px 0 30px;
            border-top: 3px solid #3d2b1f;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-widget {
            flex: 1;
            min-width: 250px;
        }
        .footer-widget h4 {
            color: #d4af37;
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: inline-block;
            background-color: #222;
            padding: 8px 15px;
            margin: 5px;
            border-radius: 5px;
            border: 1px solid #444;
            transition: all 0.3s;
        }
        friend-link:hover {
            background-color: #333;
            border-color: #d4af37;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #333;
            color: #777;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(18, 18, 18, 0.98);
                padding: 20px;
                border-top: 1px solid #3d2b1f;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            .main-nav ul li {
                margin: 10px 0;
            }
            .article-content {
                padding: 25px;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
        }
