/* /Areas/Blog/Index.razor.rz.scp.css */
/*.category-pills {
    margin-bottom: 50px;
}

.category-pill {
    background: rgba(81, 43, 212, 0.2);
    border: 1px solid var(--dotnet-purple);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    margin: 5px;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
}

    .category-pill:hover,
    .category-pill.active {
        background: var(--dotnet-purple);
        transform: translateY(-3px);
        box-shadow: 0 5px 20px rgba(81, 43, 212, 0.4);
    }

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(81, 43, 212, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .blog-card:hover {
        transform: translateY(-10px);
        border-color: var(--dotnet-purple);
        box-shadow: 0 15px 50px rgba(81, 43, 212, 0.4);
    }

.blog-card-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--dotnet-purple) 0%, var(--dotnet-light-purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
}

.blog-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

    .blog-meta i {
        color: var(--dotnet-accent);
    }

.blog-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

    .blog-title a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s;
    }

        .blog-title a:hover {
            color: var(--dotnet-accent);
        }

.blog-excerpt {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.blog-tags {
    margin-bottom: 15px;
}

.blog-tag {
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid var(--dotnet-accent);
    color: var(--dotnet-accent);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-right: 8px;
    display: inline-block;
}

.read-more {
    background: linear-gradient(135deg, var(--dotnet-purple) 0%, var(--dotnet-light-purple) 100%);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-weight: 500;
}

    .read-more:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 20px rgba(81, 43, 212, 0.4);
        color: #fff;
    }

.featured-post {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--dotnet-purple);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

    .featured-post::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(81, 43, 212, 0.1) 0%, transparent 70%);
        animation: pulse 4s ease-in-out infinite;
    }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.featured-badge {
    background: linear-gradient(135deg, var(--dotnet-purple) 0%, var(--dotnet-light-purple) 100%);
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(81, 43, 212, 0.3);
}

.pagination {
    margin-top: 60px;
    justify-content: center;
}*/

/* Filters Section */
.filters-section[b-67pobbxaqg] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(81, 43, 212, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.filters-header[b-67pobbxaqg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filters-title[b-67pobbxaqg] {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dotnet-accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.clear-filters[b-67pobbxaqg] {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

    .clear-filters:hover[b-67pobbxaqg] {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

.filters-grid[b-67pobbxaqg] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.filter-group[b-67pobbxaqg] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-label[b-67pobbxaqg] {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.filter-input[b-67pobbxaqg] {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(81, 43, 212, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}

    .filter-input:focus[b-67pobbxaqg] {
        outline: none;
        border-color: var(--dotnet-purple);
        box-shadow: 0 0 0 3px rgba(81, 43, 212, 0.2);
    }

    .filter-input[b-67pobbxaqg]::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

/* Category Pills */
.category-pills[b-67pobbxaqg] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.category-pill[b-67pobbxaqg] {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(81, 43, 212, 0.3);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .category-pill:hover[b-67pobbxaqg] {
        background: rgba(81, 43, 212, 0.2);
        color: #fff;
        transform: translateY(-2px);
    }

    .category-pill.active[b-67pobbxaqg] {
        background: linear-gradient(135deg, var(--dotnet-purple), var(--dotnet-light-purple));
        border-color: var(--dotnet-purple);
        color: #fff;
        box-shadow: 0 5px 20px rgba(81, 43, 212, 0.3);
    }

    .category-pill .count[b-67pobbxaqg] {
        background: rgba(255, 255, 255, 0.2);
        padding: 2px 8px;
        border-radius: 10px;
        font-size: 0.8rem;
    }

/* Sort & View Controls */
.controls-bar[b-67pobbxaqg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.results-count[b-67pobbxaqg] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.controls-right[b-67pobbxaqg] {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sort-select[b-67pobbxaqg] {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(81, 43, 212, 0.3);
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

    .sort-select:hover[b-67pobbxaqg] {
        background: rgba(81, 43, 212, 0.2);
    }

.view-toggle[b-67pobbxaqg] {
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 10px;
    border: 1px solid rgba(81, 43, 212, 0.3);
}

.view-btn[b-67pobbxaqg] {
    padding: 8px 12px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
}

    .view-btn:hover[b-67pobbxaqg] {
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
    }

    .view-btn.active[b-67pobbxaqg] {
        background: var(--dotnet-purple);
        color: #fff;
    }

/* Articles Grid */
.articles-grid[b-67pobbxaqg] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

    .articles-grid.list-view[b-67pobbxaqg] {
        grid-template-columns: 1fr;
    }

.article-card[b-67pobbxaqg] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(81, 43, 212, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

    .article-card:hover[b-67pobbxaqg] {
        transform: translateY(-10px);
        border-color: var(--dotnet-purple);
        box-shadow: 0 15px 50px rgba(81, 43, 212, 0.4);
    }

.article-image[b-67pobbxaqg] {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--dotnet-purple) 0%, var(--dotnet-light-purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

    .article-image img[b-67pobbxaqg] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.article-featured[b-67pobbxaqg] {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-content[b-67pobbxaqg] {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-meta[b-67pobbxaqg] {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
}

    .article-meta i[b-67pobbxaqg] {
        color: var(--dotnet-accent);
    }

.article-category[b-67pobbxaqg] {
    background: rgba(0, 217, 255, 0.2);
    border: 1px solid var(--dotnet-accent);
    color: var(--dotnet-accent);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-title[b-67pobbxaqg] {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.3;
}

.article-excerpt[b-67pobbxaqg] {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.article-tags[b-67pobbxaqg] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.article-tag[b-67pobbxaqg] {
    background: rgba(81, 43, 212, 0.2);
    border: 1px solid rgba(81, 43, 212, 0.5);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.article-footer[b-67pobbxaqg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(81, 43, 212, 0.2);
}

.read-more[b-67pobbxaqg] {
    background: linear-gradient(135deg, var(--dotnet-purple), var(--dotnet-light-purple));
    padding: 8px 20px;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

    .read-more:hover[b-67pobbxaqg] {
        transform: translateX(5px);
        box-shadow: 0 5px 20px rgba(81, 43, 212, 0.4);
        color: #fff;
    }

.article-stats[b-67pobbxaqg] {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* List View Specific */
.articles-grid.list-view .article-card[b-67pobbxaqg] {
    flex-direction: row;
}

.articles-grid.list-view .article-image[b-67pobbxaqg] {
    width: 300px;
    height: auto;
    min-height: 250px;
}

.articles-grid.list-view .article-content[b-67pobbxaqg] {
    flex: 1;
}

/* Pagination */
.pagination[b-67pobbxaqg] {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 50px 0;
}

.page-btn[b-67pobbxaqg] {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(81, 43, 212, 0.3);
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

    .page-btn:hover[b-67pobbxaqg] {
        background: rgba(81, 43, 212, 0.2);
        transform: translateY(-3px);
    }

    .page-btn.active[b-67pobbxaqg] {
        background: var(--dotnet-purple);
        border-color: var(--dotnet-purple);
    }

    .page-btn:disabled[b-67pobbxaqg] {
        opacity: 0.3;
        cursor: not-allowed;
    }

/* No Results */
.no-results[b-67pobbxaqg] {
    text-align: center;
    padding: 60px 20px;
}

    .no-results i[b-67pobbxaqg] {
        font-size: 4rem;
        color: var(--dotnet-accent);
        margin-bottom: 20px;
    }

    .no-results h3[b-67pobbxaqg] {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .no-results p[b-67pobbxaqg] {
        color: rgba(255, 255, 255, 0.6);
    }

/* Responsive */
@media (max-width: 768px) {
    .page-title[b-67pobbxaqg] {
        font-size: 2.5rem;
    }

    .filters-grid[b-67pobbxaqg] {
        grid-template-columns: 1fr;
    }

    .articles-grid[b-67pobbxaqg] {
        grid-template-columns: 1fr;
    }

        .articles-grid.list-view .article-card[b-67pobbxaqg] {
            flex-direction: column;
        }

        .articles-grid.list-view .article-image[b-67pobbxaqg] {
            width: 100%;
            height: 200px;
        }

    .controls-bar[b-67pobbxaqg] {
        flex-direction: column;
        align-items: stretch;
    }

    .controls-right[b-67pobbxaqg] {
        justify-content: space-between;
    }
}


@keyframes spin-b-67pobbxaqg {
    to {
        transform: rotate(360deg);
    }
}
/* /Components/Account/Shared/ExternalLoginPicker.razor.rz.scp.css */
.social-btn[b-7k4gfuu3g6] {
    background: rgba(81, 43, 212, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 15px;
    transition: all 0.3s;
    font-weight: 600;
}

    .social-btn:hover[b-7k4gfuu3g6] {
        background: rgba(81, 43, 212, 0.2);
        border-color: var(--dotnet-accent);
        transform: translateY(-2px);
    }
/* /Components/Layout/Footer.razor.rz.scp.css */
footer[b-fb8l0bj85k] {
    background: rgba(30, 30, 30, 0.95);
    padding: 40px 0;
    margin-top: 80px;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */


#blazor-error-ui[b-k06c6jfk7b] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-k06c6jfk7b] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar[b-v74x5pb01s] {
    background: rgba(30, 30, 30, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(81, 43, 212, 0.3);
}

.navbar-brand[b-v74x5pb01s] {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dotnet-purple) !important;
    text-shadow: 0 0 20px rgba(81, 43, 212, 0.5);
}

.nav-link[b-v74x5pb01s] {
    color: rgba(255, 255, 255, 0.85) !important;
    transition: all 0.3s;
    margin: 0 10px;
    padding-top: 1em;
}

    .nav-link:hover[b-v74x5pb01s] {
        color: var(--dotnet-accent) !important;
        transform: translateY(-2px);
    }

    .nav-link.nav-link-btn[b-v74x5pb01s] {
        padding-top: 0.7em;
    }
    .nav-link i[b-v74x5pb01s] {
        font-size: 1.4em;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-z0bmexnbfw],
.components-reconnect-repeated-attempt-visible[b-z0bmexnbfw],
.components-reconnect-failed-visible[b-z0bmexnbfw],
.components-pause-visible[b-z0bmexnbfw],
.components-resume-failed-visible[b-z0bmexnbfw],
.components-rejoining-animation[b-z0bmexnbfw] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-z0bmexnbfw],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-z0bmexnbfw],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-z0bmexnbfw],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-z0bmexnbfw],
#components-reconnect-modal.components-reconnect-retrying[b-z0bmexnbfw],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-z0bmexnbfw],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-z0bmexnbfw],
#components-reconnect-modal.components-reconnect-failed[b-z0bmexnbfw],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-z0bmexnbfw] {
    display: block;
}


#components-reconnect-modal[b-z0bmexnbfw] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-z0bmexnbfw 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-z0bmexnbfw 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-z0bmexnbfw 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-z0bmexnbfw]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-z0bmexnbfw 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-z0bmexnbfw {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-z0bmexnbfw {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-z0bmexnbfw {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-z0bmexnbfw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-z0bmexnbfw] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-z0bmexnbfw] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-z0bmexnbfw] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-z0bmexnbfw] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-z0bmexnbfw] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-z0bmexnbfw] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-z0bmexnbfw 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-z0bmexnbfw] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-z0bmexnbfw {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Contact.razor.rz.scp.css */
.contact-container[b-bxcnjd063b] {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.contact-grid[b-bxcnjd063b] {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info[b-bxcnjd063b] {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form-card[b-bxcnjd063b] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(81, 43, 212, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
}

.faq-section[b-bxcnjd063b] {
    margin-top: 60px;
}

.faq-title[b-bxcnjd063b] {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dotnet-accent);
}

.faq-grid[b-bxcnjd063b] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.faq-card[b-bxcnjd063b] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(81, 43, 212, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s;
}

    .faq-card:hover[b-bxcnjd063b] {
        border-color: var(--dotnet-purple);
        transform: translateY(-5px);
    }

.faq-question[b-bxcnjd063b] {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dotnet-accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-answer[b-bxcnjd063b] {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .contact-grid[b-bxcnjd063b] {
        grid-template-columns: 1fr;
    }

    .contact-form-card[b-bxcnjd063b] {
        padding: 30px 20px;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.home-page[b-oman46i3yv] {
    min-height: 100vh;
}

.hero-section[b-oman46i3yv] {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding: 4rem 2rem;
    position: relative;
}

    .hero-section[b-oman46i3yv]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(81, 43, 212, 0.3) 0%, transparent 50%);
        z-index: 0;
    }

.hero-content[b-oman46i3yv] {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.hero-title[b-oman46i3yv] {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #00d9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle[b-oman46i3yv] {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

    .hero-subtitle .highlight[b-oman46i3yv] {
        color: #00d9ff;
        font-weight: 600;
    }

.hero-description[b-oman46i3yv] {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-buttons[b-oman46i3yv] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/*.btn-primary, .btn-outline {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #512bd4, #7c4dff);
    color: #fff;
    border: none;
    box-shadow: 0 5px 25px rgba(81, 43, 212, 0.4);
}

    .btn-primary:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 35px rgba(81, 43, 212, 0.6);
    }*/

.btn-outline[b-oman46i3yv] {
    border: 2px solid #00d9ff;
    color: #00d9ff;
    background: transparent;
}

    .btn-outline:hover[b-oman46i3yv] {
        background: #00d9ff;
        color: #1e1e1e;
        transform: translateY(-5px);
    }

.hero-avatar[b-oman46i3yv] {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #512bd4, #7c4dff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: #fff;
    box-shadow: 0 20px 60px rgba(81, 43, 212, 0.5);
    animation: float-b-oman46i3yv 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes float-b-oman46i3yv {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.section-title[b-oman46i3yv] {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #fff 0%, #00d9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-section[b-oman46i3yv] {
    padding: 6rem 2rem;
}

.services-grid[b-oman46i3yv] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card[b-oman46i3yv] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(81, 43, 212, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
}

    .service-card:hover[b-oman46i3yv] {
        transform: translateY(-10px);
        border-color: #512bd4;
        box-shadow: 0 20px 50px rgba(81, 43, 212, 0.4);
    }

.service-icon[b-oman46i3yv] {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #512bd4, #7c4dff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    margin: 0 auto 1.5rem;
}

.service-title[b-oman46i3yv] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00d9ff;
    margin-bottom: 1rem;
}

.service-description[b-oman46i3yv] {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.stats-section[b-oman46i3yv] {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(81, 43, 212, 0.3);
    border-bottom: 1px solid rgba(81, 43, 212, 0.3);
}

.stats-grid[b-oman46i3yv] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-number[b-oman46i3yv] {
    font-size: 4rem;
    font-weight: 700;
    color: #00d9ff;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label[b-oman46i3yv] {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-section[b-oman46i3yv] {
    padding: 6rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title[b-oman46i3yv] {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-text[b-oman46i3yv] {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-cta[b-oman46i3yv] {
    background: linear-gradient(135deg, #512bd4, #7c4dff);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    transition: all 0.3s;
}

    .btn-cta:hover[b-oman46i3yv] {
        transform: translateY(-5px);
        box-shadow: 0 10px 35px rgba(81, 43, 212, 0.6);
    }

.social-links[b-oman46i3yv] {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-btn[b-oman46i3yv] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(81, 43, 212, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

    .social-btn:hover[b-oman46i3yv] {
        background: #512bd4;
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(81, 43, 212, 0.5);
    }

@media (max-width: 991.98px) {
    .hero-section[b-oman46i3yv] {
        flex-direction: column;
        text-align: center;
    }

    .hero-title[b-oman46i3yv] {
        font-size: 2.5rem;
    }

    .hero-avatar[b-oman46i3yv] {
        width: 200px;
        height: 200px;
        font-size: 5rem;
    }

    .section-title[b-oman46i3yv] {
        font-size: 2rem;
    }

    .hero-buttons[b-oman46i3yv] {
        justify-content: center;
    }
}
/* /Components/Pages/NotFound.razor.rz.scp.css */
.container-404[b-qjq65086uo] {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
}

.error-code[b-qjq65086uo] {
    font-size: 10rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--dotnet-accent) 0%, var(--dotnet-light-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
    animation: float-b-qjq65086uo 3s ease-in-out infinite;
    text-shadow: 0 0 50px rgba(0, 217, 255, 0.3);
}

@keyframes float-b-qjq65086uo {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.error-icon[b-qjq65086uo] {
    font-size: 5rem;
    color: var(--dotnet-purple);
    margin: 20px 0;
    animation: pulse-b-qjq65086uo 2s ease-in-out infinite;
}

@keyframes pulse-b-qjq65086uo {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.error-title[b-qjq65086uo] {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0;
    animation: fadeInDown-b-qjq65086uo 1s ease 0.2s both;
}

.error-subtitle[b-qjq65086uo] {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    animation: fadeInUp-b-qjq65086uo 1s ease 0.4s both;
}

.error-message[b-qjq65086uo] {
    background: rgba(81, 43, 212, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    animation: fadeInUp-b-qjq65086uo 1s ease 0.6s both;
}

    .error-message code[b-qjq65086uo] {
        color: var(--dotnet-accent);
    }

@keyframes fadeInDown-b-qjq65086uo {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp-b-qjq65086uo {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-element[b-qjq65086uo] {
    position: fixed;
    font-size: 1.5rem;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

.element-1[b-qjq65086uo] {
    top: 10%;
    left: 5%;
    animation: float-left-b-qjq65086uo 8s ease-in-out infinite;
}

.element-2[b-qjq65086uo] {
    top: 20%;
    right: 10%;
    animation: float-right-b-qjq65086uo 10s ease-in-out infinite;
}

.element-3[b-qjq65086uo] {
    bottom: 15%;
    left: 10%;
    animation: float-left-b-qjq65086uo 12s ease-in-out infinite;
}

.element-4[b-qjq65086uo] {
    bottom: 10%;
    right: 5%;
    animation: float-right-b-qjq65086uo 9s ease-in-out infinite;
}

@keyframes float-left-b-qjq65086uo {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(-30px) translateY(-30px);
    }
}

@keyframes float-right-b-qjq65086uo {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(30px) translateY(-30px);
    }
}

.fun-text[b-qjq65086uo] {
    color: var(--dotnet-accent);
    font-weight: 600;
}
/* /Components/Pages/Resume.razor.rz.scp.css */
.cv-section[b-o57lmde3d9] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(81, 43, 212, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 30px;
    transition: all 0.3s;
}

    .cv-section:hover[b-o57lmde3d9] {
        border-color: var(--dotnet-purple);
        box-shadow: 0 10px 40px rgba(81, 43, 212, 0.3);
        transform: translateY(-5px);
    }

.section-title[b-o57lmde3d9] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dotnet-accent);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

    .section-title i[b-o57lmde3d9] {
        font-size: 2.2rem;
    }

.timeline-item[b-o57lmde3d9] {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px;
}

    .timeline-item[b-o57lmde3d9]::before {
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        width: 16px;
        height: 16px;
        background: var(--dotnet-purple);
        border-radius: 50%;
        box-shadow: 0 0 20px rgba(81, 43, 212, 0.6);
    }

    .timeline-item[b-o57lmde3d9]::after {
        content: '';
        position: absolute;
        left: 7px;
        top: 24px;
        width: 2px;
        height: calc(100% + 10px);
        background: linear-gradient(180deg, var(--dotnet-purple) 0%, transparent 100%);
    }

    .timeline-item:last-child[b-o57lmde3d9]::after {
        display: none;
    }

.timeline-date[b-o57lmde3d9] {
    color: var(--dotnet-accent);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.timeline-title[b-o57lmde3d9] {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.timeline-company[b-o57lmde3d9] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.timeline-description[b-o57lmde3d9] {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 12px;
}

.timeline-tech[b-o57lmde3d9] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.tech-tag[b-o57lmde3d9] {
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid var(--dotnet-accent);
    color: var(--dotnet-accent);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.skill-category[b-o57lmde3d9] {
    margin-bottom: 30px;
}

.skill-category-title[b-o57lmde3d9] {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dotnet-light-purple);
    margin-bottom: 15px;
}

.skill-item[b-o57lmde3d9] {
    background: rgba(81, 43, 212, 0.2);
    border: 1px solid var(--dotnet-purple);
    border-radius: 10px;
    padding: 12px 20px;
    margin-bottom: 12px;
    transition: all 0.3s;
}

    .skill-item:hover[b-o57lmde3d9] {
        background: rgba(81, 43, 212, 0.3);
        transform: translateX(10px);
    }

.skill-name[b-o57lmde3d9] {
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill-level[b-o57lmde3d9] {
    font-size: 0.85rem;
    color: var(--dotnet-accent);
}

.skill-bar[b-o57lmde3d9] {
    background: rgba(255, 255, 255, 0.1);
    height: 6px;
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress[b-o57lmde3d9] {
    background: linear-gradient(90deg, var(--dotnet-purple) 0%, var(--dotnet-accent) 100%);
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease;
}

.education-item[b-o57lmde3d9] {
    background: rgba(81, 43, 212, 0.1);
    border-left: 4px solid var(--dotnet-purple);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: all 0.3s;
}

    .education-item:hover[b-o57lmde3d9] {
        background: rgba(81, 43, 212, 0.2);
        transform: translateX(10px);
    }

.education-degree[b-o57lmde3d9] {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.education-school[b-o57lmde3d9] {
    color: var(--dotnet-accent);
    margin-bottom: 5px;
}

.education-date[b-o57lmde3d9] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.download-cv[b-o57lmde3d9] {
    background: linear-gradient(135deg, var(--dotnet-purple) 0%, var(--dotnet-light-purple) 100%);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(81, 43, 212, 0.4);
}

    .download-cv:hover[b-o57lmde3d9] {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(81, 43, 212, 0.6);
        color: #fff;
    }

.info-card[b-o57lmde3d9] {
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid var(--dotnet-accent);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.info-card-item[b-o57lmde3d9] {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

    .info-card-item:last-child[b-o57lmde3d9] {
        margin-bottom: 0;
    }

.info-card-icon[b-o57lmde3d9] {
    color: var(--dotnet-accent);
    font-size: 1.5rem;
    width: 30px;
}

.info-card-text[b-o57lmde3d9] {
    color: rgba(255, 255, 255, 0.9);
}

.language-item[b-o57lmde3d9] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(81, 43, 212, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 12px;
    border: 1px solid rgba(81, 43, 212, 0.3);
}

.language-name[b-o57lmde3d9] {
    font-weight: 600;
}

.language-level[b-o57lmde3d9] {
    color: var(--dotnet-accent);
    font-size: 0.9rem;
}
