* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

       body {
            /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
            background: #0a0a0a;
            color: #e0e0e0;
            line-height: 1.6;
            background: linear-gradient(to right, #2e2e2e77 70%, #252522b2 30%), url(../images/pattern1.svg);    
            background-attachment: fixed;
            overflow-x: hidden;

            width: 100%;
        }
        

        .containerr {
            max-width: 1200px;
            margin: 10% auto;
            padding: 20px;
            border-radius: 20px;
            background: #1a1a1a94;
        }

        header {
            background: #1a1a1a;
            padding: 20px 0;
            border-bottom: 3px solid #00d4ff;
            margin-bottom: 40px;
        }



        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #00d4ff;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #00d4ff;
        }

        h1 {
            font-size: 42px;
            color: #00d4ff;
            margin-bottom: 20px;
            text-align: center;
        }

        .subtitle {
            text-align: center;
            color: #bebebe;
            font-size: 18px;
            margin-bottom: 50px;
        }

        .underlined-link {
            text-decoration: underline;
            color: rgb(197, 197, 197); /* Or your brand color */
            padding-bottom: 2px; /* Space between text and underline */
        }

        .underlined-link:hover {
            color: rgb(42, 238, 58);
            text-decoration-thickness: 2px;
        }

        /* BLOG LISTING STYLES */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .blog-card {
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px #1cfd1877;
            border-color:#1bfd18;
        }

        .blog-card-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 14px;
        }

        .blog-card-content {
            padding: 25px;
        }

        .blog-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 13px;
            color: #888;
        }

        .blog-category {
            color: #00d4ff;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 11px;
            letter-spacing: 1px;
        }

        .blog-card h2 {
            font-size: 22px;
            color: #fff;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .blog-excerpt {
            color: #aaa;
            font-size: 15px;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .read-more {
            color: #00d4ff;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .read-more:hover {
            text-decoration: underline;
        }


        



        /* INDIVIDUAL POST STYLES */
        .post-header {
            max-width: 800px;
            margin: 0 auto 40px;
            text-align: center;
        }

        .post-title {
            font-size: 48px;
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .post-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: #888;
            font-size: 14px;
            margin-bottom: 30px;
        }

        .post-featured-image {
            width: 100%;
            max-width: 900px;
            height: 400px;
            margin: 0 auto 40px;
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            border: 1px solid #333;
        }

        .post-content {
            max-width: 800px;
            margin: 0 auto;
            background: #1a1a1a;
            padding: 40px;
            border-radius: 8px;
            border: 1px solid #333;
        }

        .post-content h2 {
            color: #00d4ff;
            font-size: 26px;
            margin: 30px 0 15px;
        }

        .post-content h3 {
            color: #fff;
            font-size: 24px;
            margin: 25px 0 12px;
        }

        .post-content p {
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.8;
            color: #ccc;
        }

        .post-content ul, .post-content ol {
            margin: 20px 0 20px 30px;
            color: #ccc;
        }

        .post-content li {
            margin-bottom: 10px;
        }

        .post-content code {
            background: #0a0a0a;
            padding: 2px 6px;
            border-radius: 3px;
            color: #00d4ff;
            font-family: 'Courier New', monospace;
        }

        .post-content pre {
            background: #0a0a0a;
            padding: 20px;
            border-radius: 5px;
            overflow-x: auto;
            margin: 20px 0;
            border: 1px solid #333;
        }

        .post-content blockquote {
            border-left: 4px solid #00d4ff;
            padding-left: 20px;
            margin: 20px 0;
            font-style: italic;
            color: #aaa;
        }

        .back-to-blog {
            display: inline-block;
            margin-bottom: 30px;
            color: #00d4ff;
            text-decoration: none;
            font-size: 14px;
        }

        .back-to-blog:hover {
            text-decoration: underline;
        }

       

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }

            h1 {
                padding: 8%;
                font-size: 32px;
            }

            .post-title {
                font-size: 32px;
            }

            .post-content {
                padding: 25px;
            }

            .nav-links {
                gap: 15px;
                font-size: 14px;
            }
        }

        /* CODE DISPLAY SECTION */
        .template-section {
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 8px;
            padding: 30px;
            margin: 40px 0;
        }

        .template-section h2 {
            color: #00d4ff;
            margin-bottom: 15px;
            font-size: 28px;
        }

        .template-section p {
            color: #aaa;
            margin-bottom: 20px;
        }

        .file-label {
            background: #00d4ff;
            color: #0a0a0a;
            padding: 8px 15px;
            border-radius: 4px;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .instructions {
            background: #0d3a4a;
            border-left: 4px solid #00d4ff;
            padding: 20px;
            margin: 30px 0;
            border-radius: 4px;
        }

        .instructions h3 {
            color: #00d4ff;
            margin-bottom: 15px;
        }

        .instructions ol {
            margin-left: 20px;
            color: #ccc;
        }

        .instructions li {
            margin-bottom: 10px;
        }