       @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #000;
            color: #e7e9ea;
            line-height: 1.4;
        }

        .root {
            max-width: 1000px;
            margin: 0 auto;
            min-height: 100vh;
            border-right: 1px solid #212121;
            border-left: 1px solid #212121;
        }


        .banner {
            height: 200px;
            background: linear-gradient(135deg, #1da1f2, #14171a);
            width: 100%;
            position: relative;
            background: linear-gradient(90deg, #a73d00, #ff7d31, #ffbc2d, #a73d00);
            background-size: 240% 240%;
            animation: gradient-animation 8s ease infinite;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .blog-title {
            font-size: 3.1rem;
            color: black;
            font-family: "IBM Plex Mono", monospace;
            height: 100%;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: linear-gradient(to bottom, #ffffff00, #b9b9b900, #77777700, #00000070, #000000);
        }



        @keyframes gradient-animation {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .profile-section {
            padding: 16px;
            position: relative;
            border-bottom: 1px solid #2f3336;
        }

        .profile-image {
            width: 110px;
            height: 110px;
            border-radius: 30%;
            background-image: url("../assets/logoProfile.png");
            /* background-color: #1da1f2; */
            border: 4px solid #000;
            margin-top: -77px;
            margin-bottom: 12px;
            background-size: cover;
        }

        .blog-name {
            font-size: 20px;
            font-weight: 800;

        }

        .user-tag {
            color: #71767b;
            font-size: 15px;
            margin-bottom: 10px;
        }

        #at-the-rate {

            color: #ff6207;
        }

        .blog-subtitle {
            color: #71767b;
            font-size: 15px;
            margin-bottom: 8px;
        }

        .social-bar {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;

        }

        .social-bar-items {
            cursor: pointer;
            text-decoration: none;
            color: #71767b;
            transition: 0.25s ease-in-out;
        }
        .social-bar-items:hover{
            color: #ff6207;
            transform: translateY(-7.5px);
        }


        .contact-email {
            color: #ff6207;
            text-decoration: none;
            font-size: 15px;
            margin-bottom: 8px;
            display: block;
        }

        .contact-email:hover {
            text-decoration: underline;
        }

        .started-year {
            color: #71767b;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .calendar-icon {
            width: 16px;
            height: 16px;
            fill: #ff62079c;
        }

        .nav-bar {
            display: flex;
            border-bottom: 1px solid #2f3336;
            background-color: #000;
            position: sticky;
            top: 0;
            z-index: 100;
            gap: 2rem;
            overflow-x: auto;
            white-space: nowrap;



            -ms-overflow-style: none;

            scrollbar-width: none;

        }

        /* Hide scrollbar for Chrome, Safari and Opera */
        .nav-bar::-webkit-scrollbar {
            display: none;
        }

        .nav-item {
            flex: 0 0 auto;
            padding: 16px 8px;
            text-align: center;
            color: #71767b;
            cursor: pointer;
            font-size: 15px;
            font-weight: 500;
            border-bottom: 2px solid transparent;
            transition: all 0.2s;
        }



        .nav-item:hover {
            background-color: rgba(29, 161, 242, 0.1);
            color: #ff6207;
        }

        .nav-item.active {
            color: #e7e9ea;
            border-bottom-color: #ff6207;
        }

        .posts-container {
            min-height: 400px;
        }

        .post-card {
            border-bottom: 1px solid #2f3336;
            padding: 16px;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .post-card:hover {
            background-color: rgba(255, 255, 255, 0.03);
        }

        .post-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.3;
            color: #ffffff;
            font-family: "IBM Plex Mono", monospace;
            word-spacing: -6px;
            text-transform: capitalize;

        }



        .post-preview {
            color: #8a8a8a;
            font-size: 15px;
            line-height: 1.4;
        }

        .post-tags {
            display: flex;
            gap: 6px;
            margin-top: 12px;
            flex-wrap: wrap;
            
        }

        .tag {
            background-color: #ff620711;
            color: #ff6207;
            padding: 2px 8px;
            border-radius: 12px;
            border: 1px dashed #ff620754;
            font-size: 12px;
        }
                .post-meta {
            display: flex;
            gap: 12px;
            color: #71767b;
            font-size: 14px;
            margin-top: 12px;
            justify-content: space-between;
        }

        .post-content {
            padding: 16px;
            display: none;
            opacity: 0;
            transition: opacity 5s ease-in;
        }



        .post-content.active {
            display: block;
            transition: 0.2s ease-in;
        }

        .back-button {
            background: none;
            border: 1px solid #2f3336;
            color: #ff6207;
            padding: 8px 16px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 14px;
            margin-bottom: 16px;
            transition: all 0.2s;
        }

        .back-button:hover {
            background-color: rgba(29, 161, 242, 0.1);
        }

        .post-full-title {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .post-full-meta {
            color: #71767b;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .post-body {
            line-height: 1.6;
        }

        .post-body h1,
        .post-body h2,
        .post-body h3 {
            margin: 24px 0 12px 0;
            color: #e7e9ea;
        }

        .post-body h1 {
            font-size: 24px;
        }

        .post-body h2 {
            font-size: 20px;
        }

        .post-body h3 {
            font-size: 18px;
        }

        .post-body p {
            margin-bottom: 16px;
        }

        .post-body code {
            background-color: #2f3336;
            padding: 2px 4px;
            border-radius: 4px;
            font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
            font-size: 14px;
        }

        .post-body pre {
            background-color: #2f3336;
            padding: 16px;
            border-radius: 8px;
            overflow-x: auto;
            margin: 16px 0;
        }

        .post-body pre code {
            background: none;
            padding: 0;
        }

        .post-body ul,
        .post-body ol {
            margin-left: 20px;
            margin-bottom: 16px;
        }

        .post-body li {
            margin-bottom: 4px;
        }

        .loading {
            text-align: center;
            padding: 40px 16px;
            color: #71767b;
        }

        .error {
            text-align: center;
            padding: 40px 16px;
            color: #f91880;
        }

        .no-posts {
            text-align: center;
            padding: 40px 16px;
            color: #71767b;
        }

        @media (max-width: 480px) {
            .nav-item {
                font-size: 13px;
                padding: 12px 4px;
            }

           
        }