
        :root {
            --primary: #ca9a4e;
            --secondary: #473f3c;
            --dark-bg: #1a1a1a;
            --light-text: #ffffff;
            --dark-text: #222222;
            --gray-bg: #2d2d2d;
            --card-bg: #373737;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
        }

        body {
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--dark-bg);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

      
        /* Main Content Styles */
        .blog-main {
            flex: 1;
            padding: 60px 0;
            margin: 80px 0;
        }

        .blog-header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .blog-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--primary);
            line-height: 1.3;
        }

        .blog-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .blog-hero {
            width: 100%;
            height: 500px;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 40px;
            position: relative;
        }

        .blog-hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-hero:hover img {
            transform: scale(1.05);
        }

        .blog-content {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 40px;
        }

        .article-content {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .article-section {
            margin-bottom: 40px;
        }

        .article-section h2 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
        }

        .article-section h2 i {
            margin-right: 15px;
            font-size: 1.5rem;
        }

        .article-section p {
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .article-section ul, .article-section ol {
            margin: 20px 0;
            padding-left: 30px;
        }

        .article-section li {
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
        }

        .highlight-box {
            background: rgba(202, 154, 78, 0.1);
            border-left: 4px solid var(--primary);
            padding: 25px;
            border-radius: 0 8px 8px 0;
            margin: 30px 0;
        }

        .highlight-box p {
            margin: 0;
            font-style: italic;
            font-size: 1.2rem;
        }

        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 30px 0;
        }

        .tag {
            background: rgba(202, 154, 78, 0.2);
            color: var(--primary);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }

    
        .social-share {
            display: flex;
            gap: 15px;
        }

        .social-share a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--card-bg);
            border-radius: 50%;
            color: var(--light-text);
            transition: var(--transition);
        }

        .social-share a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        /* Sidebar Styles */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .sidebar-widget {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .widget-title {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .author-widget {
            text-align: center;
        }

        .author-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 3px solid var(--primary);
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-name {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--light-text);
        }

        .author-bio {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .author-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .author-social a {
            color: var(--light-text);
            transition: var(--transition);
        }

        .author-social a:hover {
            color: var(--primary);
        }

        .related-posts {
            list-style: none;
        }

        .related-post {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .related-post:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .related-post-thumb {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .related-post-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .related-post:hover .related-post-thumb img {
            transform: scale(1.1);
        }

        .related-post-content h4 {
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .related-post-content h4 a {
            color: var(--light-text);
            text-decoration: none;
            transition: var(--transition);
        }

        .related-post-content h4 a:hover {
            color: var(--primary);
        }

        .related-post-date {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.8rem;
        }

        .newsletter-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .newsletter-widget input {
            background: var(--dark-bg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 12px 15px;
            border-radius: 8px;
            color: var(--light-text);
            outline: none;
        }

        .newsletter-widget input:focus {
            border-color: var(--primary);
        }

        .subscribe-btn {
            background: var(--primary);
            color: var(--dark-text);
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .subscribe-btn:hover {
            background: #d8ae67;
        }

        /* Comments Section */
        .comments-section {
            margin-top: 60px;
        }

        .section-title {
            color: var(--primary);
            margin-bottom: 30px;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .comments-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .comment {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .comment-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }

        .comment-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .comment-content {
            flex: 1;
        }

        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .comment-author {
            font-weight: 600;
            color: var(--light-text);
        }

       

        /* Animations */
        @keyframes pulse {
            0%, 100% {
                transform: scale(1) translate(0, 0);
            }
            50% {
                transform: scale(1.1) translate(10px, -10px);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
          
            
            .blog-title {
                font-size: 2.2rem;
            }
            
            .blog-content {
                grid-template-columns: 1fr;
            }
            
            .blog-hero {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
           
            
            .blog-title {
                font-size: 1.8rem;
            }
            
            .article-section h2 {
                font-size: 1.5rem;
            }
            
            .blog-hero {
                height: 300px;
            }
            
        
        }
  