 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #01adee;
            --primary-dark: #0190c7;
            --primary-light: #33bdf2;
            --accent: #ff6b35;
            --bg-light: #f7fafc;
            --bg-white: #ffffff;
            --text-dark: #1a202c;
            --text-gray: #4a5568;
            --text-light: #718096;
            --border: #e2e8f0;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 12px rgba(1,173,238,0.1);
            --shadow-lg: 0 10px 30px rgba(1,173,238,0.15);
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            background: var(--bg-light);
            line-height: 1.7;
        }

        /* Header/Hero */
        .blog-header {
            background: linear-gradient(135deg, #01adee 0%, #0190c7 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding-top: 120px;
        }

        .blog-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .blog-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom, transparent, var(--bg-light));
        }

        .header-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .category-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.85rem !important;
            font-weight: 600 !important;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .blog-title {
            font-size: 3rem !important;
            font-weight: 800 !important;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .blog-meta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            margin-top: 24px;
            font-size: 0.95rem !important;
            opacity: 0.95;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Featured Image */
        .featured-image {
            max-width: 1200px;
            margin: -60px auto 60px;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }

        .featured-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image-placeholder {
            width: 100%;
            background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 1.2rem !important;
            font-weight: 600 !important;
            box-shadow: var(--shadow-lg);
            text-align: center;
            line-height: 1.6;
        }

        .screenshot-placeholder {
            width: 100%;
            background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 1.1rem !important;
            font-weight: 600 !important;
            box-shadow: var(--shadow-md);
            text-align: center;
            line-height: 1.6;
            margin: 40px 0;
        }

        .screenshot-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }

        /* Article Container */
        .article-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px 80px;
        }

        .article-content {
            background: var(--bg-white);
            padding: 60px;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            margin-bottom: 40px;
        }

        /* Typography */
        .article-content h2 {
            font-size: 2rem !important;
            font-weight: 700 !important;
            color: var(--text-dark);
            margin: 48px 0 24px;
            line-height: 1.3;
            position: relative;
            padding-bottom: 12px;
        }

        .article-content h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .article-content h3 {
            font-size: 1.5rem !important;
            font-weight: 600 !important;
            color: var(--text-dark);
            margin: 36px 0 20px;
        }

        .article-content p {
            font-size: 1.125rem !important;
            line-height: 1.8;
            color: var(--text-gray);
            margin-bottom: 24px;
        }

        .article-content strong {
            color: var(--text-dark);
            font-weight: 600 !important;
        }

        .article-content ul {
            margin: 24px 0;
            padding-left: 30px;
        }

        .article-content ul li {
            margin-bottom: 12px;
            color: var(--text-gray);
            font-size: 1.125rem !important;
            line-height: 1.8;
        }

        /* Feature Cards */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            margin: 40px 0;
        }

        .feature-card {
            background: var(--bg-white);
            padding: 32px;
            border-radius: 12px;
            border: 2px solid var(--border);
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }

        .feature-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }

        .feature-icon {
            font-size: 2.5rem !important;
            margin-bottom: 16px;
            display: block;
        }

        .feature-card h4 {
            font-size: 1.25rem !important;
            font-weight: 600 !important;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .feature-card p {
            font-size: 1rem !important;
            color: var(--text-gray);
            margin: 0;
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            padding: 50px;
            border-radius: 12px;
            margin: 48px 0;
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 32px;
            margin-top: 32px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem !important;
            font-weight: 800 !important;
            display: block;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 0.95rem !important;
            opacity: 0.9;
        }

        /* Info Box */
        .info-box {
            background: #e6f7ff;
            border-left: 4px solid var(--primary);
            padding: 24px 32px;
            border-radius: 8px;
            margin: 32px 0;
        }

        .info-box p {
            margin: 0;
            color: var(--text-dark);
        }

        /* Image Grid */
        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .image-grid-item {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 0.9rem !important;
            box-shadow: var(--shadow-sm);
        }

        /* Tech Stack */
        .tech-stack {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white !important;
            padding: 40px;
            border-radius: 12px;
            margin: 40px 0;
        }

        .tech-stack h3 {
            color: white;
            margin-top: 0;
        }

        .tech-stack p {
            color: white;
        }

        .tech-stack strong {
            color: white;
        }

        .tech-list {
            list-style: none;
            margin-top: 20px;
            padding-left: 0;
        }

        .tech-list li {
            padding: 12px 0;
            padding-left: 32px;
            position: relative;
            font-size: 1.05rem !important;
            color: white !important;
        }

        .tech-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            font-weight: bold;
            font-size: 1.3rem !important;
            color: white;
        }

        /* Table */
        .content-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .content-table thead {
            background: var(--primary);
            color: white;
        }

        .content-table th {
            padding: 20px;
            text-align: left;
            font-weight: 600 !important;
        }

        .content-table td {
            padding: 18px 20px;
            border-bottom: 1px solid var(--border);
            color: var(--text-gray);
        }

        .content-table tr:last-child td {
            border-bottom: none;
        }

        .content-table tr:hover {
            background: var(--bg-light);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #01adee 0%, #0190c7 100%);
            color: white;
            padding: 60px;
            border-radius: 16px;
            text-align: center;
            box-shadow: var(--shadow-lg);
            margin: 60px 0;
        }

        .cta-section h2 {
            color: white;
            font-size: 2.5rem !important;
            margin-bottom: 16px !important;
        }

        .cta-section h2::after {
            display: none;
        }

        .cta-section p {
            font-size: 1.2rem !important;
            margin-bottom: 32px;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 16px 36px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600 !important;
            font-size: 1rem !important;
            transition: all 0.3s;
            display: inline-block;
            cursor: pointer;
        }

        .btn-primary {
            background: white;
            color: var(--primary);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.25);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin: 32px 0;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: white;
            text-decoration: none;
            background: rgba(255,255,255,0.15);
            padding: 14px 24px;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .contact-item:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-2px);
        }

        /* Sidebar */
        .sidebar {
            background: var(--bg-white);
            padding: 32px;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            margin-top: 40px;
        }

        .sidebar h3 {
            font-size: 1.25rem !important;
            margin-bottom: 20px !important;
            color: var(--text-dark);
        }

        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag {
            background: var(--primary);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem !important;
            font-weight: 500 !important;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: white;
            padding: 40px 20px;
            text-align: center;
            margin-top: 80px;
        }

        footer p {
            margin: 0;
            opacity: 0.8;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .blog-title {
                font-size: 2rem !important;
            }
            .article-content ul {
                padding-left:0px;
                }
                .tech-list li {
    padding: 0px 0;
    padding-left: 24px;
                }
            

            .article-content {
                padding: 32px 24px;
            }

            .article-content h2 {
                font-size: 1.5rem !important;
            }

            .stats-section,
            .cta-section {
                padding: 32px 24px;
            }

            .feature-grid,
            .image-grid {
                grid-template-columns: 1fr;
            }

            .contact-info {
                flex-direction: column;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }
        }
          h2 {
            font-size: 2rem !important;
            font-weight: 700 !important;
            color: var(--text-dark);
            margin: 48px 0 24px;
            line-height: 1.3;
            position: relative;
            padding-bottom: 12px;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        p {
            font-size: 1.125rem !important;
            line-height: 1.8;
            color: var(--text-gray);
            margin-bottom: 24px;
        }

        .features-list {
            margin: 40px 0;
        }

        .feature-item {
            background: white;
            padding: 28px 32px;
            border-radius: 12px;
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 24px;
            box-shadow: var(--shadow-sm);
            border-left: 4px solid var(--primary);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            box-shadow: var(--shadow-md);
            transform: translateX(8px);
        }

        .feature-number {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem !important;
            font-weight: 700 !important;
            flex-shrink: 0;
        }

        .feature-content {
            flex: 1;
        }

        .feature-content h4 {
            font-size: 1.25rem !important;
            font-weight: 600 !important;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .feature-content p {
            font-size: 1rem !important;
            color: var(--text-gray);
            margin: 0;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .feature-item {
                flex-direction: column;
                gap: 16px;
                padding: 24px;
            }

            .feature-number {
                width: 45px;
                height: 45px;
                font-size: 1.3rem !important;
            }

            h2 {
                font-size: 1.5rem !important;
            }
        }
        /* Font Sizes Increased by 40-45% with Proportional Scaling */

.category-badge {
    font-size: 1.19rem !important; /* Increased from 0.85rem (+40%) */
}

.blog-title {
    font-size: 4.35rem !important; /* Increased from 3rem (+45%) */
}

.blog-meta {
    font-size: 1.6rem !important; /* Increased from 0.95rem (+40%) */
}

.image-placeholder {
    font-size: 1.73rem !important; /* Increased from 1.2rem (+44%) */
}

.screenshot-placeholder {
    font-size: 1.58rem !important; /* Increased from 1.1rem (+44%) */
}

.article-content h2 {
    font-size: 2.9rem !important; /* Increased from 2rem (+45%) */
}

.article-content h3 {
    font-size: 2.18rem !important; /* Increased from 1.5rem (+45%) */
}

.article-content p {
    font-size: 1.6rem !important; /* Increased from 1.125rem (+42%) */
}

.article-content ul li {
    font-size: 1.6rem !important; /* Increased from 1.125rem (+42%) */
}

.feature-icon {
    font-size: 3.63rem !important; /* Increased from 2.5rem (+45%) */
}

.feature-card h4 {
    font-size: 1.81rem !important; /* Increased from 1.25rem (+45%) */
}

.feature-card p {
    font-size: 1.42rem !important; /* Increased from 1rem (+42%) */
}

.stat-number {
    font-size: 3.63rem !important; /* Increased from 2.5rem (+45%) */
}

.stat-label {
    font-size: 1.35rem !important; /* Increased from 0.95rem (+42%) */
}

.image-grid-item {
    font-size: 1.26rem !important; /* Increased from 0.9rem (+40%) */
}

.tech-list li {
    font-size: 1.49rem !important; /* Increased from 1.05rem (+42%) */
}

.tech-list li::before {
    font-size: 1.87rem !important; /* Increased from 1.3rem (+44%) */
}

.cta-section h2 {
    font-size: 3.63rem !important; /* Increased from 2.5rem (+45%) */
}

.cta-section p {
    font-size: 1.7rem !important; /* Increased from 1.2rem (+42%) */
}

.btn {
    font-size: 1.43rem !important; /* Increased from 1rem (+43%) */
    padding: 22px 48px; /* Increased padding proportionally */
}

.sidebar h3 {
    font-size: 1.81rem !important; /* Increased from 1.25rem (+45%) */
}

.tag {
    font-size: 1.6rem !important; /* Increased from 0.85rem (+42%) */
    padding: 13px 24px; /* Increased padding proportionally */
}

h2 {
    font-size: 2.9rem !important; /* Increased from 2rem (+45%) */
}

p {
    font-size: 1.6rem !important; /* Increased from 1.125rem (+42%) */
}

.feature-number {
    font-size: 2.18rem !important; /* Increased from 1.5rem (+45%) */
    width: 72px; /* Increased from 50px (+44%) */
    height: 72px; /* Increased from 50px (+44%) */
}

.feature-content h4 {
    font-size: 1.81rem !important; /* Increased from 1.25rem (+45%) */
}

.feature-content p {
    font-size: 1.42rem !important; /* Increased from 1rem (+42%) */
}

.content-table th {
    font-size: 1.43rem !important; /* Increased by 43% */
}

.content-table td {
    font-size: 1.43rem !important; /* Increased by 43% */
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .blog-title {
        font-size: 2.9rem !important; /* Increased from 2rem (+45%) */
    }

    .article-content h2 {
        font-size: 2.18rem !important; /* Increased from 1.5rem (+45%) */
    }

    .feature-number {
        width: 58px; /* Increased from 40px (+45%) */
        height: 58px; /* Increased from 40px (+45%) */
        font-size: 1.88rem !important; /* Increased proportionally */
    }

    h2 {
        font-size: 2.18rem !important; /* Increased by 45% */
    }
    
    .article-content p {
        font-size: 1.43rem !important; /* Increased by 43% */
    }
    
    p {
        font-size: 1.43rem !important; /* Increased by 43% */
    }
}
     
     @media (min-width: 1200px){
     .article-container {
    max-width: 1100px;
}   