/* /Components/ProjectCard.razor.rz.scp.css */
.project-card[b-pbp50k7cif] {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    background: #fff;
    outline: none;
}

.project-card:hover[b-pbp50k7cif],
.project-card:focus-visible[b-pbp50k7cif] {
    transform: translateY(-6px);
    box-shadow: 0 10px 32px rgba(108, 92, 231, 0.18);
}

.card-image-wrapper[b-pbp50k7cif] {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.card-image[b-pbp50k7cif] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.project-card:hover .card-image[b-pbp50k7cif] {
    transform: scale(1.06);
}

.card-overlay[b-pbp50k7cif] {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 12, 30, 0.82) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.22s ease;
}

.project-card:hover .card-overlay[b-pbp50k7cif],
.project-card:focus-visible .card-overlay[b-pbp50k7cif] {
    opacity: 1;
}

.card-title[b-pbp50k7cif] {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.card-hint[b-pbp50k7cif] {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.75rem;
    margin-top: 0.2rem;
}
/* /Components/ProjectGrid.razor.rz.scp.css */
.project-grid[b-glmayoaryw] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .project-grid[b-glmayoaryw] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .project-grid[b-glmayoaryw] {
        grid-template-columns: 1fr;
    }
}
/* /Components/ProjectModal.razor.rz.scp.css */
.modal-backdrop[b-mp1sektxlv] {
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 24, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
    animation: backdropFadeIn-b-mp1sektxlv 0.2s ease;
}

@keyframes backdropFadeIn-b-mp1sektxlv {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-container[b-mp1sektxlv] {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 2.25rem;
    max-width: 640px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn-b-mp1sektxlv 0.22s ease;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

@keyframes modalSlideIn-b-mp1sektxlv {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close-btn[b-mp1sektxlv] {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    line-height: 1;
    color: #888;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    transition: color 0.15s ease, background 0.15s ease;
}

.modal-close-btn:hover[b-mp1sektxlv] {
    color: #1a1a2e;
    background: #f0eff5;
}

.modal-title[b-mp1sektxlv] {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a2e;
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 2rem 0.5rem;
}

.modal-divider[b-mp1sektxlv] {
    width: 60px;
    height: 3px;
    background: var(--accent, #6c5ce7);
    border-radius: 2px;
    margin: 0 auto 1.25rem;
}

.modal-image[b-mp1sektxlv] {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    margin-bottom: 1.25rem;
    max-height: 320px;
}

.modal-meta[b-mp1sektxlv] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
    align-items: center;
}

.meta-row[b-mp1sektxlv] {
    display: flex;
    gap: 0.35rem;
    font-size: 0.85rem;
}

.meta-label[b-mp1sektxlv] {
    font-weight: 700;
    color: #1a1a2e;
}

.meta-value[b-mp1sektxlv] {
    color: #555577;
}

.modal-description[b-mp1sektxlv] {
    color: #3a3a5c;
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-play-btn[b-mp1sektxlv] {
    display: inline-block;
    background: var(--accent, #6c5ce7);
    color: #fff;
    padding: 0.65rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background 0.18s ease, transform 0.18s ease;
    margin: 0 auto;
    display: flex;
    width: fit-content;
}

.modal-play-btn:hover[b-mp1sektxlv] {
    background: #5649c0;
    transform: translateY(-2px);
    color: #fff;
}

@media (max-width: 480px) {
    .modal-container[b-mp1sektxlv] {
        padding: 1.5rem 1.25rem;
    }

    .modal-title[b-mp1sektxlv] {
        font-size: 1.35rem;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.app-wrapper[b-ldruleg61b] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ── Navbar ── */
.navbar[b-ldruleg61b] {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #12111f;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-content[b-ldruleg61b] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand[b-ldruleg61b] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.nav-logo[b-ldruleg61b] {
    height: 36px;
    width: 36px;
    object-fit: contain;
}

.nav-name[b-ldruleg61b] {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    color: #f0eff8;
}

.nav-links[b-ldruleg61b] {
    display: flex;
    gap: 2rem;
}

.nav-link[b-ldruleg61b] {
    color: rgba(240, 239, 248, 0.7);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.18s ease;
}

.nav-link:hover[b-ldruleg61b] {
    color: #a07dd4;
}

/* ── Main ── */
.main-content[b-ldruleg61b] {
    flex: 1;
}

/* ── Footer ── */
.site-footer[b-ldruleg61b] {
    text-align: center;
    padding: 2rem;
    color: #aaa;
    font-size: 0.8rem;
    border-top: 1px solid #e8e7f0;
    margin-top: 4rem;
}

@media (max-width: 540px) {
    .nav-content[b-ldruleg61b] {
        padding: 0 1rem;
    }

    .nav-links[b-ldruleg61b] {
        gap: 1.25rem;
    }
}
