.blog-post-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .blog-post-header {
        margin-bottom: 3rem;
        text-align: center;
    }

    .blog-post-meta {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        color: #c1d1e9;
        font-size: 0.95rem;
    }

    .blog-post-tag {
        padding: 0.5rem 1rem;
        background: rgba(31, 165, 253, 0.1);
        border-radius: 8px;
        color: #1fa5fd;
        font-weight: 500;
    }

    .blog-post-title {
        font-size: 2.5rem;
        font-weight: 600;
        background: linear-gradient(90deg, #fff, #1fa5fd);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

    .blog-post-image {
        position: relative;
        width: 100%;
        padding-top: 56.25%;
        border-radius: 24px;
        overflow: hidden;
        margin-bottom: 2rem;
    }

    .blog-post-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .blog-post-content {
        background: linear-gradient(145deg, rgba(9, 16, 26, 0.95) 0%, rgba(9, 16, 72, 0.95) 100%);
        border-radius: 24px;
        padding: 2.5rem;
        border: 1px solid rgba(31, 165, 253, 0.1);
    }

    .blog-post-text {
        color: #c1d1e9;
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .blog-post-text p {
        margin-bottom: 1.5rem;
    }

    .blog-post-text h2 {
        font-size: 1.8rem;
        color: #fff;
        margin: 2.5rem 0 1.5rem;
        font-weight: 600;
    }

    .blog-post-text h3 {
        font-size: 1.5rem;
        color: #fff;
        margin: 2rem 0 1rem;
        font-weight: 600;
    }

    .blog-post-text ul,
    .blog-post-text ol {
        margin: 1.5rem 0;
        padding-left: 1.5rem;
        color: #c1d1e9;
    }

    .blog-post-text li {
        margin-bottom: 0.75rem;
    }

    .blog-post-text a {
        color: #1fa5fd;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .blog-post-text a:hover {
        color: #0dcaf0;
    }

    .blog-post-text blockquote {
        border-left: 4px solid #1fa5fd;
        padding: 1rem 0 1rem 1.5rem;
        margin: 2rem 0;
        font-style: italic;
        color: #c1d1e9;
    }

    .blog-post-text img {
        max-width: 100%;
        border-radius: 12px;
        margin: 2rem 0;
    }

    .blog-post-text code {
        background: rgba(31, 165, 253, 0.1);
        padding: 0.2rem 0.4rem;
        border-radius: 4px;
        color: #1fa5fd;
        font-family: monospace;
    }

    .blog-post-text pre {
        background: rgba(9, 16, 26, 0.95);
        padding: 1.5rem;
        border-radius: 12px;
        overflow-x: auto;
        margin: 1.5rem 0;
    }

    .blog-post-text pre code {
        background: none;
        padding: 0;
        color: #c1d1e9;
    }

    .blog-post-footer {
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(31, 165, 253, 0.1);
    }

    .blog-post-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .blog-post-tag-item {
        padding: 0.5rem 1rem;
        background: rgba(31, 165, 253, 0.1);
        border-radius: 8px;
        color: #c1d1e9;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .blog-post-tag-item:hover {
        background: rgba(31, 165, 253, 0.2);
        transform: translateY(-2px);
    }

    .blog-post-share {
        display: flex;
        gap: 1rem;
        margin-top: 2rem;
    }

    .share-btn {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        background: linear-gradient(145deg, rgba(9, 16, 26, 0.95) 0%, rgba(9, 16, 72, 0.95) 100%);
        border: 1px solid rgba(31, 165, 253, 0.1);
        border-radius: 12px;
        color: #c1d1e9;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .share-btn:hover {
        background: linear-gradient(90deg, #1fa5fd 0%, #0dcaf0 100%);
        border-color: rgba(31, 165, 253, 0.3);
        color: #fff;
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        .blog-post-container {
            padding: 1rem;
        }

        .blog-post-title {
            font-size: 2rem;
        }

        .blog-post-content {
            padding: 1.5rem;
        }

        .blog-post-text {
            font-size: 1rem;
        }

        .blog-post-meta {
            flex-direction: column;
            gap: 1rem;
        }
    }

    .blog-post-layout {
        display: grid;
        grid-template-columns: 1fr 350px;
        gap: 2rem;
        margin-top: 2rem;
    }

    .blog-post-sidebar {
        position: relative;
        height: fit-content;
    }

    .product-card {
        background: linear-gradient(145deg, rgba(9, 16, 26, 0.95) 0%, rgba(9, 16, 72, 0.95) 100%);
        border-radius: 24px;
        overflow: hidden;
        border: 1px solid rgba(31, 165, 253, 0.1);
        margin-bottom: 2rem;
    }

    .product-card-image {
        width: 100%;
        padding-top: 56.25%;
        position: relative;
    }

    .product-card-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .product-card-content {
        padding: 1.5rem;
    }

    .product-card-title {
        font-size: 1.5rem;
        color: #fff;
        margin-bottom: 0.5rem;
    }

    .product-card-subtitle {
        color: #c1d1e9;
        margin-bottom: 1rem;
    }

    .product-card-price {
        margin-bottom: 1.5rem;
    }

    .price {
        font-size: 1.25rem;
        font-weight: 600;
        color: #1fa5fd;
    }

    .product-card-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.75rem 1.5rem;
        background: linear-gradient(90deg, #1fa5fd 0%, #0dcaf0 100%);
        border-radius: 12px;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .product-card-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(31, 165, 253, 0.2);
    }

    .product-features {
        background: linear-gradient(145deg, rgba(9, 16, 26, 0.95) 0%, rgba(9, 16, 72, 0.95) 100%);
        border-radius: 24px;
        padding: 1.5rem;
        border: 1px solid rgba(31, 165, 253, 0.1);
    }

    .features-title {
        color: #fff;
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .features-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .feature-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(31, 165, 253, 0.1);
    }

    .feature-item:last-child {
        border-bottom: none;
    }

    .feature-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(31, 165, 253, 0.1);
        border-radius: 12px;
        color: #1fa5fd;
    }

    .feature-content h5 {
        color: #fff;
        margin: 0 0 0.25rem;
        font-size: 1rem;
    }

    .feature-content p {
        color: #c1d1e9;
        margin: 0;
        font-size: 0.9rem;
    }

    @media (max-width: 1024px) {
        .blog-post-layout {
            grid-template-columns: 1fr;
        }

        .blog-post-sidebar {
            position: static;
        }
    }

    .btn-blog {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        width: 100%;
        padding: 1rem 1.5rem;
        margin-bottom: 2rem;
    }

    .btn svg {
        transition: transform 0.3s ease;
    }

    .btn:hover svg {
        transform: translateX(4px);
    }
    .tab-btn {
        padding: 12px 24px;
        border: none;
        background: rgba(31, 165, 253, 0.1);
        border-radius: 12px;
        color: #8b9bb4;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(90deg, #1fa5fd 0%, #0dcaf0 100%);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}