/* /Components/Controls/Messagebox.razor.rz.scp.css */
.msgbox-overlay[b-z1nhlcif6t] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    animation: fadeIn-b-z1nhlcif6t 0.3s ease;
}

.msgbox-dialog[b-z1nhlcif6t] {
    background: #fff;
    border-radius: 12px;
    width: 400px;
    max-width: 95%;
    animation: slideUp-b-z1nhlcif6t 0.25s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.msgbox-header[b-z1nhlcif6t] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    font-weight: 500;
}

.msgbox-title[b-z1nhlcif6t] {
    flex-grow: 1;
}

.msgbox-body[b-z1nhlcif6t] {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #333;
}

.msgbox-footer[b-z1nhlcif6t] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 0.75rem 1.25rem;
    border-top: 1px solid #dee2e6;
}

/* Animations */
@keyframes fadeIn-b-z1nhlcif6t {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-z1nhlcif6t {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */

.main[b-zz8jesgmtr] {
    width: 100%;
}

footer[b-zz8jesgmtr] {
    background: #182848;
    color: white;
    text-align: center;
    padding: 2rem;
}

    footer img[b-zz8jesgmtr] {
        margin-top: 1rem;
        max-width: 80px;
        height: auto;
    }
.thispage nav[b-zz8jesgmtr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #182848;
    color: white;
    position: relative;
    z-index: 1000;
}

.thispage .logo[b-zz8jesgmtr] {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f7d774;
}

.thispage .menu-btn[b-zz8jesgmtr] {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 1002;
}

    .thispage .menu-btn span[b-zz8jesgmtr] {
        width: 28px;
        height: 3px;
        background: white;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .thispage .menu-btn.open span:nth-child(1)[b-zz8jesgmtr] {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .thispage .menu-btn.open span:nth-child(2)[b-zz8jesgmtr] {
        opacity: 0;
    }

    .thispage .menu-btn.open span:nth-child(3)[b-zz8jesgmtr] {
        transform: rotate(-45deg) translate(5px, -5px);
    }

.thispage .nav-links[b-zz8jesgmtr] {
    display: flex;
    gap: 2rem;
}

    .thispage .nav-links a[b-zz8jesgmtr] {
        color: white;
        font-weight: 500;
        transition: color 0.3s;
    }

        .thispage .nav-links a:hover[b-zz8jesgmtr] {
            color: #f7d774;
        }

@media (max-width: 768px) {
    .thispage .menu-btn[b-zz8jesgmtr] {
        display: flex;
    }

    .thispage .nav-links[b-zz8jesgmtr] {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 2rem;
        background: rgba(24, 40, 72, 0.97);
        padding: 1rem 1.5rem;
        border-radius: 10px;
        gap: 1rem;
        box-shadow: 0 8px 16px rgba(0,0,0,0.3);
        width: max-content;
        z-index: 1001;
    }

        .thispage .nav-links.show[b-zz8jesgmtr] {
            display: flex !important;
        }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-mkpc21qw15] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-mkpc21qw15] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-mkpc21qw15] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-mkpc21qw15] {
    font-size: 1.1rem;
}

.bi[b-mkpc21qw15] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-mkpc21qw15] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-mkpc21qw15] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-mkpc21qw15] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-mkpc21qw15] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-mkpc21qw15] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-mkpc21qw15] {
        padding-bottom: 1rem;
    }

    .nav-item[b-mkpc21qw15]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-mkpc21qw15]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-mkpc21qw15]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-mkpc21qw15] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-mkpc21qw15] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-mkpc21qw15] {
        display: none;
    }

    .nav-scrollable[b-mkpc21qw15] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Pages/Forumhome.razor.rz.scp.css */
.page[b-64kexa6pxb] {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom right, #3b82f6, #1e40af);
    color: #1e293b;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

.forum-container[b-64kexa6pxb] {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    animation: fadeSlideUp-b-64kexa6pxb 0.6s ease-out;
}

@keyframes fadeSlideUp-b-64kexa6pxb {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.forum-header[b-64kexa6pxb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e0e7ff;
}

    .forum-header h2[b-64kexa6pxb] {
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0;
        color: #1e3a8a;
    }

.user-name[b-64kexa6pxb] {
    color: #2563eb;
}

.action-bar[b-64kexa6pxb] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.create-button[b-64kexa6pxb] {
    background-color: #10b981;
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    transition: transform 0.2s ease;
}

    .create-button:hover[b-64kexa6pxb] {
        transform: scale(1.05);
    }

.filter-select[b-64kexa6pxb] {
    padding: 0.65rem 1rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #cbd5e1;
    background: #f9fafb;
    color: #1e293b;
}

.thread-list[b-64kexa6pxb] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.thread-card[b-64kexa6pxb] {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 1.25rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

    .thread-card:hover[b-64kexa6pxb] {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    }

.thread-top[b-64kexa6pxb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .thread-top h3[b-64kexa6pxb] {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0;
    }

.meta[b-64kexa6pxb] {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0.5rem 0 0.75rem;
}

.view-link[b-64kexa6pxb] {
    font-size: 0.95rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

    .view-link:hover[b-64kexa6pxb] {
        text-decoration: underline;
    }

.badge[b-64kexa6pxb] {
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.solved-badge[b-64kexa6pxb] {
    background: #22c55e;
    color: white;
}

.unsolved-badge[b-64kexa6pxb] {
    background: #facc15;
    color: #1e293b;
}

.empty-message[b-64kexa6pxb] {
    text-align: center;
    font-style: italic;
    font-size: 1.1rem;
    color: #64748b;
    margin-top: 2rem;
}

@media (max-width: 640px) {
    .action-bar[b-64kexa6pxb] {
        flex-direction: column;
        align-items: flex-start;
    }

    .forum-header[b-64kexa6pxb] {
        flex-direction: column;
        align-items: flex-start;
    }

        .forum-header h2[b-64kexa6pxb] {
            margin-bottom: 0.5rem;
        }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #f9f9f9;
    color: #333;
}

 a {
    text-decoration: none;
    color: inherit;
}


 .hero {
    text-align: center;
    padding: 5rem 2rem;
    background: white;
    color: #111;
    position: relative;
    overflow: hidden;
}

     .hero h1,  .hero p {*/
        /* opacity: 0; */
        /* animation: fadeInUp 1s ease forwards; */
    /*}

     .hero h1 {
        font-size: 3rem;
        animation-delay: 0.3s;
    }

         .hero h1 span {
            color: #4b6cb1;
        }

     .hero p {
        font-size: 1.2rem;
        margin-top: 1rem;
        animation-delay: 0.6s;
    }

 .particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

 .particle {
    position: absolute;
    background: linear-gradient(90deg, rgba(75,108,183,0.2), rgba(24,40,76,0.3));
    border-radius: 50%;
    opacity: 0.6;
    animation: floatAround infinite ease-in-out;
}

@keyframes floatAround {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(30px, -20px) scale(1.3);
        opacity: 0.7;
    }

    100% {
        transform: translate(-30px, 20px) scale(1);
        opacity: 0.4;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        transform: translateX(-40px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInRight {
    from {
        transform: translateX(40px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

 section {
    padding: 4rem 2rem;
    opacity: 0;
}

 #services.show {
    animation: fadeInLeft 1s ease forwards;
}

 #pricing.show {
    animation: fadeInRight 1s ease forwards;
}

 #about.show {
    animation: zoomIn 1s ease forwards;
}

 #contact.show {
    animation: fadeInUp 1s ease forwards;
}

 #services {
    background: #f1f6fb;
}

 #pricing {
    background: #fef9ef;
}

 #about {
    background: #f0f0f0;
}

 #contact {
    background: #f9f9f9;
}

 .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #182848;
}

     .section-title i {
        margin-right: 0.5rem;
        color: #f7d774;
    }

 .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

 #services .card-grid {
    display: flex;
    flex-direction: column;
}

 .card {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

     .card:nth-child(1) {
        animation-delay: 0.2s;
    }

     .card:nth-child(2) {
        animation-delay: 0.4s;
    }

     .card:nth-child(3) {
        animation-delay: 0.6s;
    }

     .card img {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 1rem;
    }

     .card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

     .card h3 {
        color: #4b6cb1;
        margin-bottom: 0.5rem;
    }

     .card p {
        font-size: 1rem;
    }

::deep form.contactform {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(30px);
     
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

::deep form.contactform.show {
    opacity: 1;
}

::deep form.input,
::deep form.textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

 button.submit {
    background: #4b6cb1;
    color: white;
    padding: 0.8rem;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

     button.submit:hover {
        background: #182848;
    }

footer {
    background: #182848;
    color: white;
    text-align: center;
    padding: 2rem;
}

    footer img {
        margin-top: 1rem;
        max-width: 80px;
        height: auto;
    }

@media (min-width: 700px) {
     .hero {
        padding: 10rem 2rem;
    }

    .particle {
        opacity: 0.4;
    }

     .hero h1 {
        font-size: 4rem;
    }

     .hero p {
        font-size: 2.4rem;
    }

     #services .card-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.faq-link-container {
    text-align: center;
    margin-top: 2rem;
}

::deep a.faq-link-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #28a745;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    ::deep a.faq-link-button:hover {
        background-color: #218838;
        transform: translateY(-2px);
    }

.faq-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}*/
/* PRICING SECTION */
 /*.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

 .pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 320px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

     .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    }

     .pricing-card:nth-child(1) {
        animation-delay: 0.2s;
    }

     .pricing-card:nth-child(2) {
        animation-delay: 0.4s;
    }

     .pricing-card:nth-child(3) {
        animation-delay: 0.6s;
    }

 .plan-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #182848;
    margin-bottom: 0.5rem;
}

 .plan-price {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #4b6cb1;
}

     .plan-price span {
        font-size: 0.9rem;
        color: #888;
    }

 .plan-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
    color: #555;
}

     .plan-features li {
        padding: 0.5rem 0;
        border-bottom: 1px solid #eee;
    }

 .pricing-card button {
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

 .pricing-card.featured {
    border: 2px solid #4b6cb1;
    background: #f4f8ff;
}

 .badge {
    display: inline-block;
    background: #d4a019;*/ /* darker yellow */
    /*color: white;
    font-weight: bold;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}*/
.hero-premium[b-gfep8zlxwh] {
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 120px;
    background: linear-gradient( 135deg, #0f172a, #1e293b, #0b132b );

}
    .hero-premium .container[b-gfep8zlxwh] {
        position: relative;
        z-index: 2;
    }
    /* Animated gradient glow */
    .hero-premium[b-gfep8zlxwh]::before {
        content: "";
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle,#4facfe,transparent 60%);
        top: -150px;
        left: -150px;
        filter: blur(120px);
        animation: floatGlow-b-gfep8zlxwh 10s ease-in-out infinite alternate;
    }

    .hero-premium[b-gfep8zlxwh]::after {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle,#ff7b00,transparent 60%);
        bottom: -150px;
        right: -150px;
        filter: blur(120px);
        animation: floatGlow-b-gfep8zlxwh 12s ease-in-out infinite alternate;
    }

@keyframes floatGlow-b-gfep8zlxwh {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-40px);
    }
}

.gradient-text[b-gfep8zlxwh] {
    background: linear-gradient( 90deg, #ffd166, #ff7b00, #ff006e );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-btn[b-gfep8zlxwh] {
    transition: all .3s ease;
}

    .hero-btn:hover[b-gfep8zlxwh] {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(255,193,7,.4);
    }

.dashboard-preview[b-gfep8zlxwh] {
    border-radius: 20px;
    padding: 10px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transform: rotate(-3deg);
    transition: all .4s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

    .dashboard-preview:hover[b-gfep8zlxwh] {
        transform: rotate(0deg) scale(1.05);
    }
    .dashboard-preview img[b-gfep8zlxwh] {
        animation: floatDashboard-b-gfep8zlxwh 6s ease-in-out infinite;
    }

@keyframes floatDashboard-b-gfep8zlxwh {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}
@media (max-width: 768px) {

    .dashboard-preview[b-gfep8zlxwh] {
        transform: none;
        margin-top: 30px;
    }

        .dashboard-preview img[b-gfep8zlxwh] {
            max-width: 85%;
        }
    .hero-premium[b-gfep8zlxwh] {
        padding-top: 80px;
        padding-bottom: 80px;
        text-align: center;
    }

    .hero-title[b-gfep8zlxwh] {
        font-size: 2rem;
    }
    .particles .particle:nth-child(n+12)[b-gfep8zlxwh] {
        display: none;
    }
    .particle[b-gfep8zlxwh] {
        animation-duration: 20s;
    }
}

.particle[b-gfep8zlxwh] {
    position: absolute;
    animation: floatParticle-b-gfep8zlxwh linear infinite;
    pointer-events: none;
}

    /* white dots */
    .particle.dot[b-gfep8zlxwh] {
        background: white;
        border-radius: 50%;
        box-shadow: 0 0 8px white;
    }

    /* blue glow */
    .particle.glow[b-gfep8zlxwh] {
        background: #4facfe;
        border-radius: 50%;
        box-shadow: 0 0 15px #4facfe;
    }

    /* orange glow */
    .particle.orange[b-gfep8zlxwh] {
        background: #ff7b00;
        border-radius: 50%;
        box-shadow: 0 0 15px #ff7b00;
    }

    /* squares */
    .particle.square[b-gfep8zlxwh] {
        background: rgba(255,255,255,.7);
        transform: rotate(45deg);
    }

    /* big blurred orb */
    .particle.orb[b-gfep8zlxwh] {
        background: #00f2fe;
        border-radius: 50%;
        filter: blur(8px);
        opacity: .4;
    }

@keyframes floatParticle-b-gfep8zlxwh {

    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-120vh);
    }
}
.support-call-section[b-gfep8zlxwh] {
    background: linear-gradient(135deg,#141e30,#243b55);
}

.support-card[b-gfep8zlxwh] {
    background: white;
    color: black;
}

.support-step[b-gfep8zlxwh] {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

    .support-step:last-child[b-gfep8zlxwh] {
        border-bottom: none;
    }

    .support-step:hover[b-gfep8zlxwh] {
        background: #f8f9fa;
        transition: 0.3s;
        transform: translateX(4px);
    }
.contact-section[b-gfep8zlxwh] {
    background: #f8f9fa;
}

.contact-card[b-gfep8zlxwh] {
    background: white;
    border-radius: 12px;
    border: 1px solid #eee;
}

.contact-item[b-gfep8zlxwh] {
    margin-bottom: 18px;
}

    .contact-item strong[b-gfep8zlxwh] {
        display: block;
        font-size: 14px;
    }

    .contact-item div[b-gfep8zlxwh] {
        font-size: 15px;
    }
/* /Components/Pages/Login.razor.rz.scp.css */

body[b-po135o9i1x] {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

.login-container[b-po135o9i1x] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    padding: 1rem;
}

.login-card[b-po135o9i1x] {
    background-color: white;
    padding: 2.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 400px;
    animation: floatIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.animated-fade[b-po135o9i1x] {
    animation: fadeIn-b-po135o9i1x 1s ease-in-out forwards;
}

@keyframes fadeIn-b-po135o9i1x {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.title[b-po135o9i1x] {
    text-align: center;
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #1e293b;
}



.submit-button[b-po135o9i1x] {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(to right, #3b82f6, #2563eb);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 0.6rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

    .submit-button:hover[b-po135o9i1x] {
        background: linear-gradient(to right, #2563eb, #1d4ed8);
        transform: translateY(-2px);
    }

.validation-msg[b-po135o9i1x] {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    margin-left: 0.25rem;
}

.validation-summary[b-po135o9i1x] {
    color: #ef4444;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
}

.error-msg[b-po135o9i1x] {
    color: #dc2626;
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
}

.register-text[b-po135o9i1x] {
    text-align: center;
    color: #64748b;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

    .register-text a[b-po135o9i1x] {
        color: #3b82f6;
        text-decoration: none;
        font-weight: 500;
    }

        .register-text a:hover[b-po135o9i1x] {
            text-decoration: underline;
        }
/* /Components/Pages/NewPost.razor.rz.scp.css */
.newpost-wrapper[b-58u0b5gehr] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    min-height: 100vh;
    background: #f0f4f8;
}

.title[b-58u0b5gehr] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1c1c1e;
}



.form[b-58u0b5gehr] {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

textarea[b-58u0b5gehr] {
    width: 100%;
    min-height: 140px;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-family: inherit;
    background-color: #fdfdfd;
    transition: border-color 0.3s;
}

    textarea:focus[b-58u0b5gehr] {
        outline: none;
        border-color: #17a2b8;
        background-color: #fff;
    }

.submit-btn[b-58u0b5gehr] {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    color: #fff;
    border: none;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    align-self: flex-end;
}

.custom-select[b-58u0b5gehr] {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    cursor: pointer;
    background-color: #fdfdfd;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.41 0L6 4.58 10.59 0 12 1.41 6 7.41 0 1.41z' fill='%23333'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px 8px;
}

    .custom-select:focus[b-58u0b5gehr] {
        outline: none;
        border-color: #17a2b8;
        box-shadow: 0 0 0 2px rgba(23, 162, 184, 0.25);
        background-color: #fff;
    }

.submit-btn:hover[b-58u0b5gehr] {
    background: linear-gradient(to right, #0072ff, #0052cc);
    transform: translateY(-2px);
}
/* /Components/Pages/Threadinfo.razor.rz.scp.css */

.page-title[b-oz87hwzm37] {
    text-align: center;
    font-size: 2.8rem;
    margin: 2rem 0;
    font-weight: 700;
    color: #202124;
}

.thread-container[b-oz87hwzm37] {
    display: flex;
    justify-content: center;
    padding: 0 1rem;
}

.thread-card[b-oz87hwzm37] {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-group[b-oz87hwzm37], .meta-group[b-oz87hwzm37] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.description-group[b-oz87hwzm37] {
    display: flex;
    flex-direction: column;
}

label[b-oz87hwzm37] {
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
    display: block;
}

.input[b-oz87hwzm37],
.textarea[b-oz87hwzm37],
.select[b-oz87hwzm37] {
    width: 100%;
    font-size: 1rem;
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #fdfdfd;
    transition: border-color 0.3s, box-shadow 0.3s;
}

    .input:focus[b-oz87hwzm37],
    .textarea:focus[b-oz87hwzm37],
    .select:focus[b-oz87hwzm37] {
        border-color: #0d6efd;
        box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
        outline: none;
    }

.readonly[b-oz87hwzm37] {
    background: #f3f3f3;
}

.select[b-oz87hwzm37] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' fill='gray' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6H0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    cursor: pointer;
}


.actions[b-oz87hwzm37] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.action-buttons[b-oz87hwzm37] {
    display: flex;
    gap: 12px;
}

button[b-oz87hwzm37] {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    background: #0d6efd;
    color: white;
    transition: background 0.3s ease, transform 0.2s ease;
}

    button:hover[b-oz87hwzm37] {
        background: #084298;
        transform: translateY(-1px);
    }

    button.delete[b-oz87hwzm37] {
        background: #dc3545;
    }

        button.delete:hover[b-oz87hwzm37] {
            background: #b02a37;
        }

    button[disabled][b-oz87hwzm37] {
        background: #ccc !important;
        cursor: not-allowed;
    }

/* Stylish Toggle Switch */
.switch[b-oz87hwzm37] {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    font-weight: 500;
}

    .switch input[b-oz87hwzm37] {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider[b-oz87hwzm37] {
    position: relative;
    width: 50px;
    height: 26px;
    background-color: #ccc;
    border-radius: 34px;
    transition: background-color 0.3s;
    cursor: pointer;
}

    .slider[b-oz87hwzm37]::before {
        content: "";
        position: absolute;
        height: 20px;
        width: 20px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        border-radius: 50%;
        transition: transform 0.3s;
    }

.switch input:checked + .slider[b-oz87hwzm37] {
    background-color: #0d6efd;
}

    .switch input:checked + .slider[b-oz87hwzm37]::before {
        transform: translateX(24px);
    }

.switch-label[b-oz87hwzm37] {
    font-size: 0.95rem;
    color: #333;
}

.loading[b-oz87hwzm37] {
    text-align: center;
    font-size: 1.2rem;
    color: #777;
    margin-top: 4rem;
}

@media (max-width: 600px) {
    .info-group[b-oz87hwzm37], .meta-group[b-oz87hwzm37] {
        grid-template-columns: 1fr;
    }
}


