/* _content/EducGameWebsite/Components/Common/Buttons/MyButton.razor.rz.scp.css */
/* Общие стили для кнопки */
.button-29[b-5y3xf36qx3] {
    align-items: center;
    appearance: none;
    background-image: linear-gradient(45deg, #ff0076 0%, #4facfe 100%);
    border: 0;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.08),
    inset 0 -2px 4px rgba(255, 0, 118, 0.3);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    height: 3rem;
    justify-content: center;
    padding: 0 1.5rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
}

/* Эффект свечения */
.button-29[b-5y3xf36qx3]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent
    );
    transition: 0.6s;
}

/* Состояния кнопки */
.button-29:hover[b-5y3xf36qx3] {
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15),
    0 3px 6px rgba(0, 0, 0, 0.1),
    inset 0 -3px 6px rgba(255, 0, 118, 0.4);
}

.button-29:hover[b-5y3xf36qx3]::before {
    left: 100%;
}

.button-29:active[b-5y3xf36qx3] {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1),
    inset 0 2px 4px rgba(255, 0, 118, 0.3);
}

.button-29:focus[b-5y3xf36qx3] {
    outline: none;
    box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.5);
}

/* Адаптивность */
@media (max-width: 480px) {
    .button-29[b-5y3xf36qx3] {
        height: 2.75rem;
        padding: 0 1.25rem;
        font-size: 0.95rem;
        border-radius: 0.5rem;
    }
}
/* _content/EducGameWebsite/Components/Common/Cards/GameMainCard.razor.rz.scp.css */
/*GameMainCard.razor.css */
.game-card[b-rkw54p6drz] {
    position: relative;
    width: 15rem;
    min-height: 6rem;
    margin: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex-shrink: 0;
    transform-style: preserve-3d;
    z-index: 5;
}

.game-card:hover[b-rkw54p6drz] {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.square[b-rkw54p6drz] {
    width: 20px;
    height: 20px;
}

.description-panel[b-rkw54p6drz] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 2;
    transform: translateY(100%); /* Начальное положение - полностью скрыто */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Вместо этого добавим отдельные стили для анимации контента */
.description-panel-content[b-rkw54p6drz] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-out;
}

.expanded .description-panel-content[b-rkw54p6drz] {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.expanded .description-panel[b-rkw54p6drz] {
    transform: translateY(0); /* Показываем панель */
}

.description[b-rkw54p6drz] {
    margin: 1rem 0 0.5rem;
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    min-height: 2.4rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s 0.2s;
}

/* Анимация контента внутри панели */
.description[b-rkw54p6drz], .play-button[b-rkw54p6drz] {
    transform: translateY(20px);
    transition: all 0.3s ease-out;
}

.expanded .description[b-rkw54p6drz],
.expanded .play-button[b-rkw54p6drz] {
    transform: translateY(0);
}

.card-content[b-rkw54p6drz] {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1rem;
}

.image-container[b-rkw54p6drz] {
    width: 100%;
    height: 180px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.game-icon[b-rkw54p6drz] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-title[b-rkw54p6drz] {
    margin: 1rem 0 0.5rem;
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    min-height: 2.4rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.tags-container[b-rkw54p6drz] {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.game-tag[b-rkw54p6drz] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.play-button[b-rkw54p6drz] {
    align-self: flex-end;
    padding: 0.8rem 2rem;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.play-button:hover[b-rkw54p6drz] {
    background: linear-gradient(45deg, #ff0076, #4facfe);
    transform: translateY(-2px);
}

.compact-view[b-rkw54p6drz] {
    display: flex;
    flex-direction: column;
    height: 100%; /* Важное исправление */
    padding: 1rem;
}


/* Адаптивность */
@media (max-width: 768px) {
    .horizontal-scroll[b-rkw54p6drz] {
        gap: 1rem;
        padding-bottom: 0.5rem;
    }

    .vertical-scroll[b-rkw54p6drz] {
        grid-template-columns: 1fr;
        max-height: none;
    }

    .game-card[b-rkw54p6drz] {
        width: 260px;
        min-height: 300px;
        margin: 0.5rem;
    }

    .category-section[b-rkw54p6drz] {
        margin: 1rem;
        padding: 0.5rem;
    }
}
/* _content/EducGameWebsite/Components/Common/Cards/UserCard.razor.rz.scp.css */
.reassign-overlay[b-qjye71xaox] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.user-detail[b-qjye71xaox] {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
}


.client-name-label[b-qjye71xaox] {
    font-family: var(--font-marketing);
    font-size: 1.1rem;
    color: rgb(255, 248, 210);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.user-action-btn[b-qjye71xaox] {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.assign-btn[b-qjye71xaox] {
    background: linear-gradient(135deg, #5f27cd, #341f97);
    color: white;
}

.assignment-dropdown[b-qjye71xaox] {
    position: relative;
    margin-top: 0.5rem;
}

.dropdown-menu[b-qjye71xaox] {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    width: 100%;
}

.dropdown-item[b-qjye71xaox] {
    padding: 0.5rem 1rem;
    cursor: pointer;
    color: #333;
    transition: all 0.2s;
}

.dropdown-item:hover[b-qjye71xaox] {
    background: #f8f9fa;
}
/* _content/EducGameWebsite/Components/Common/CustomWindow/ConfirmationPopUp.razor.rz.scp.css */
/* Модальное окно подтверждения */
.modal-overlay[b-rpfn9v7k67] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.modal-overlay.active[b-rpfn9v7k67] {
    opacity: 1;
    visibility: visible;
}

.modal-content[b-rpfn9v7k67] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content[b-rpfn9v7k67] {
    transform: scale(1);
}

.modal-header[b-rpfn9v7k67] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.close-btn[b-rpfn9v7k67] {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #777;
}

.modal-body[b-rpfn9v7k67] {
    padding: 20px;
}

.modal-footer[b-rpfn9v7k67] {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    text-align: right;
}

.modal-footer button[b-rpfn9v7k67] {
    margin-left: 10px;
}
/* _content/EducGameWebsite/Components/Common/CustomWindow/CookiePopUp.razor.rz.scp.css */
/* Баннер куки */
.cookie-banner[b-lja19kpszh] {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(30, 30, 30, 0.95);
    color: white;
    z-index: 9999;
    transition: bottom 0.5s ease;
}

.cookie-banner.active[b-lja19kpszh] {
    bottom: 0;
}

.cookie-content[b-lja19kpszh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.cookie-message[b-lja19kpszh] {
    flex: 1;
    padding-right: 20px;
}

.cookie-actions[b-lja19kpszh] {
    flex-shrink: 0;
}
/* _content/EducGameWebsite/Components/Common/Layouts/Default/CustomNavMenu.razor.rz.scp.css */
/* Обновленные стили для .custom-nav-container */
.custom-nav-container[b-omcrcnbanq] {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    backdrop-filter: blur(10px);
    border-radius: 1.25rem;
    -webkit-backdrop-filter: blur(10px);
    margin: 0.5rem auto;
    max-width: 98%;
    transition: height 0.4s ease; /* Добавляем плавную анимацию высоты */
    overflow: visible; /* Разрешаем контенту выходить за границы */
}

/* Добавляем обертку для закругления */
.nav-inner-wrapper[b-omcrcnbanq] {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
}


.top-row[b-omcrcnbanq] {
    display: flex;
    align-items: center;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), inset 0 0 8px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Бежевая тема */
.theme-beige .top-row[b-omcrcnbanq] {
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Узкий экран */
.top-row.narrow[b-omcrcnbanq] {
    justify-content: space-between;
}

.navbar-toggler[b-omcrcnbanq] {
    background: none;
    border: none;
    color: #fff8d2;
    font-size: 2rem;
    cursor: pointer;
}

.theme-beige .navbar-toggler[b-omcrcnbanq] {
    color: #333333;
}

.navbar-brand[b-omcrcnbanq] {
    color: #fff8d2;
    font-weight: bold;
    text-decoration: none;
    font-size: 2rem;
}

.navbar-toggler-icon[b-omcrcnbanq] {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    align-content: center;
}

.theme-beige .navbar-brand[b-omcrcnbanq] {
    color: #333333;
}

.functional-buttons[b-omcrcnbanq] {
    display: flex;
    gap: 15px;
}

.functional-buttons button[b-omcrcnbanq] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-beige .functional-buttons button[b-omcrcnbanq] {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333333;
}

.functional-buttons button:hover[b-omcrcnbanq] {
    background: #ff00ff;
    color: white;
}

.theme-beige .functional-buttons button:hover[b-omcrcnbanq] {
    background: #d4b996;
}

/* Мобильное меню */
/* Убираем абсолютное позиционирование у мобильного меню */
.mobile-menu[b-omcrcnbanq] {
    position: relative; /* Меняем на относительное позиционирование */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem; /* Закругляем только нижние углы */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), inset 0 0 8px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    max-height: 0; /* Начальное состояние - свернуто */
    overflow: hidden; /* Скрываем содержимое при свернутом состоянии */
    transition: max-height 0.4s ease; /* Анимация высоты */
    transform: none !important; /* Убираем трансформации */
    opacity: 1 !important; /* Всегда видимое */
    pointer-events: all !important; /* Всегда кликабельное */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 0.5rem 0 0.5rem;
    margin: 0.5rem 0;
}

/* Класс для открытого состояния */
.mobile-menu.open[b-omcrcnbanq] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    max-height: 500px; /* Достаточная высота для всех пунктов */
}

.theme-beige .mobile-menu[b-omcrcnbanq] {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mobile-menu div[b-omcrcnbanq] {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu div:hover[b-omcrcnbanq] {
    background: rgba(255, 255, 255, 0.1);
}

.theme-beige .mobile-menu div:hover[b-omcrcnbanq] {
    background: rgba(0, 0, 0, 0.05);
}


.functional-btn[b-omcrcnbanq] {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff8d2;
    cursor: pointer;
    transition: background 0.3s;
}

.functional-btn:hover[b-omcrcnbanq] {
    background: rgba(255, 255, 255, 0.2);
}

.functional-buttons-wide[b-omcrcnbanq] {
    display: flex;
    gap: 15px;
    margin-left: auto;
}

.functional-btn-wide[b-omcrcnbanq] {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 20px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff8d2;
    cursor: pointer;
    transition: background 0.3s;
}

.functional-btn-wide:hover[b-omcrcnbanq] {
    background: rgba(255, 255, 255, 0.2);
}

.functional-panel[b-omcrcnbanq] {
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), inset 0 0 8px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: max-height 0.4s ease;
}

.functional-header[b-omcrcnbanq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close-functional[b-omcrcnbanq] {
    background: none;
    border: none;
    color: #fff8d2;
    font-size: 1.5rem;
    cursor: pointer;
}

.theme-beige .functional-header button[b-omcrcnbanq] {
    color: #333333;
}

/* Широкий экран */
.top-row.wide[b-omcrcnbanq] {
    justify-content: space-between;
}

.nav-links[b-omcrcnbanq] {
    display: flex;
    gap: 15px;
}

.nav-link[b-omcrcnbanq] {
    color: #fff8d2;
    text-decoration: none;
    padding: 8px 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border-radius: 1.25rem;
    font-size: 1.3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), inset 0 0 8px rgba(255, 255, 255, 0.2);
}

.theme-beige .nav-link[b-omcrcnbanq] {
    color: #333333;
}

.nav-link:hover[b-omcrcnbanq] {
    background: rgba(255, 255, 255, 0.1);
}

.theme-beige .nav-link:hover[b-omcrcnbanq] {
    background: rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .navbar-brand[b-omcrcnbanq] {
        font-size: 2rem;
    }
}
/* _content/EducGameWebsite/Components/Common/Layouts/Default/MainLayout.razor.rz.scp.css */
.page-legacy[b-mpozcn0dzu] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-mpozcn0dzu] {
    flex: 1;
}

.sidebar[b-mpozcn0dzu] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-mpozcn0dzu] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.top-row[b-mpozcn0dzu]  a, .top-row[b-mpozcn0dzu]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}

.top-row[b-mpozcn0dzu]  a:hover, .top-row[b-mpozcn0dzu]  .btn-link:hover {
    text-decoration: underline;
}

.top-row[b-mpozcn0dzu]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
    .top-row[b-mpozcn0dzu] {
        justify-content: space-between;
    }

    .top-row[b-mpozcn0dzu]  a, .top-row[b-mpozcn0dzu]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page-legacy[b-mpozcn0dzu] {
        flex-direction: row;
    }

    .sidebar[b-mpozcn0dzu] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-mpozcn0dzu] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-mpozcn0dzu]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-mpozcn0dzu], article[b-mpozcn0dzu] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-mpozcn0dzu] {
    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-mpozcn0dzu] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* _content/EducGameWebsite/Components/Common/Layouts/Default/NavMenu.razor.rz.scp.css */

.navbar-toggler[b-watwtnf84f] {
    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-watwtnf84f] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-watwtnf84f] {
    min-height: 3.5rem;
    background-color: rgba(0, 0, 0, 0.4);
}

.navbar-brand[b-watwtnf84f] {
    font-size: 1.1rem;
}

.bi[b-watwtnf84f] {
    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-watwtnf84f] {
    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-watwtnf84f] {
    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-watwtnf84f] {
    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-watwtnf84f] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

.nav-item:first-of-type[b-watwtnf84f] {
    padding-top: 1rem;
}

.nav-item:last-of-type[b-watwtnf84f] {
    padding-bottom: 1rem;
}

.nav-item[b-watwtnf84f]  .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-watwtnf84f]  a.active {
    background-color: rgba(255, 255, 255, 0.37);
    color: white;
}

.nav-item[b-watwtnf84f]  .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-scrollable[b-watwtnf84f] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-watwtnf84f] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-watwtnf84f] {
        display: none;
    }

    .nav-scrollable[b-watwtnf84f] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/EducGameWebsite/Components/Common/Layouts/Game/GameHeader.razor.rz.scp.css */
/* GameHeader.razor.css */
.header[b-rdc5gfsa87] {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 1.25rem;
    text-align: center;
    border-radius: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.header h1[b-rdc5gfsa87] {
    margin: 0;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.header nav[b-rdc5gfsa87] {
    margin-top: 0.625rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

@media (max-width: 480px) {
    .header[b-rdc5gfsa87] {
        padding: 1rem;
        border-radius: 0.5rem;
    }

    .header h1[b-rdc5gfsa87] {
        font-size: 1.5rem;
    }

    .header nav[b-rdc5gfsa87] {
        flex-direction: column;
        gap: 0.5rem;
    }
}
/* _content/EducGameWebsite/Components/Common/Layouts/Game/GameLayout.razor.rz.scp.css */
/* GameLayout.razor.css */
.game-layout[b-8ijgd89xiy] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(45deg, #ff0076, #4facfe);
    color: white;
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
}

.game-layout[b-8ijgd89xiy]::before {
    content: '';
    position: absolute;
    width: 200vw;
    height: 200vh;
    background: linear-gradient(45deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.1) 100%);
    transform: rotate(-15deg);
    animation: bg-flow-b-8ijgd89xiy 20s linear infinite;
}

@keyframes bg-flow-b-8ijgd89xiy {
    0% {
        transform: translateX(-50%) rotate(-15deg);
    }
    100% {
        transform: translateX(50%) rotate(-15deg);
    }
}

.header[b-8ijgd89xiy] {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 1.25rem;
    text-align: center;
    border-radius: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.header h1[b-8ijgd89xiy] {
    margin: 0;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.header nav[b-8ijgd89xiy] {
    margin-top: 0.625rem;
}

.header nav a[b-8ijgd89xiy] {
    color: white;
    text-decoration: none;
    margin: 0 0.625rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.header nav a:hover[b-8ijgd89xiy] {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.game-main-content[b-8ijgd89xiy] {
    flex: 1;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    margin: 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    position: relative;
    z-index: 2;
}

.footer[b-8ijgd89xiy] {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    color: white;
    text-align: center;
    padding: 0.625rem;
    margin-top: auto;
    border-radius: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

@media (max-width: 480px) {
    .game-layout[b-8ijgd89xiy] {
        padding: 1rem;
    }

    .header[b-8ijgd89xiy] {
        padding: 1rem;
        border-radius: 0.5rem;
    }

    .header h1[b-8ijgd89xiy] {
        font-size: 1.5rem;
    }

    .main-content[b-8ijgd89xiy] {
        padding: 1rem;
        margin: 1rem;
        border-radius: 0.5rem;
    }

    .footer[b-8ijgd89xiy] {
        padding: 0.5rem;
        border-radius: 0.5rem;
    }
}
/* _content/EducGameWebsite/Components/Common/Layouts/Workspace/WorkspaceMainLayout.razor.rz.scp.css */
.workspace-container[b-h0gifxxgx0] {
    background: linear-gradient(125deg,
    rgba(79, 172, 254, 0.8) 0%,
    rgba(255, 0, 118, 0.6) 40%,
    rgba(38, 176, 80, 0.7) 100%) fixed;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-top: calc(4rem + 0.5rem + 1rem); /* Высота шапки + отступ + top шапки */
    padding-left: 1%;
    padding-right: 1%;
    padding-bottom: 1%;

}

.layout-content[b-h0gifxxgx0] {
    display: flex;
    max-width: 1600px;
    margin: 0 auto;
    gap: 0;
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Навигационная панель */
.nav-container[b-h0gifxxgx0] {
    width: 280px;
    background: rgba(30, 30, 45, 0.7);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
}

.nav-container.collapsed[b-h0gifxxgx0] {
    transform: translateX(-100%);
    width: 0;
    opacity: 0;
}

.nav-divider[b-h0gifxxgx0] {
    width: 1px;
    background: linear-gradient(to bottom,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent);
    margin-left: auto;
}

/* Основной контент */
.main-content[b-h0gifxxgx0] {
    flex-grow: 1;
    padding: 2rem;
    position: relative;
}

.toggle-nav-btn[b-h0gifxxgx0] {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.toggle-nav-btn:hover[b-h0gifxxgx0] {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.toggle-nav-btn i[b-h0gifxxgx0] {
    font-size: 1.2rem;
}
/* _content/EducGameWebsite/Components/Common/Widgets/AbstractWidgets/WidgetCard.razor.rz.scp.css */
.widget-card[b-oeuz822h1l] {
    background: rgba(40, 40, 60, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.widget-card:hover[b-oeuz822h1l] {
    background: rgba(50, 50, 70, 0.7);
    transform: translateY(-7px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(79, 172, 254, 0.3);
}

.widget-card[b-oeuz822h1l]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #4facfe, #00f2fe);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.widget-card:hover[b-oeuz822h1l]::before {
    opacity: 1;
}

.widget-icon[b-oeuz822h1l] {
    font-size: 2.5rem;
    color: #4facfe;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}

.widget-card:hover .widget-icon[b-oeuz822h1l] {
    transform: scale(1.1);
    color: #00f2fe;
}

.widget-content h3[b-oeuz822h1l] {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.widget-content p[b-oeuz822h1l] {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
}

.widget-badge[b-oeuz822h1l] {
    background: rgba(79, 172, 254, 0.2);
    color: #4facfe;
    border-radius: 50px;
    padding: 0.3rem 0.8rem;
    font-size: 0.85rem;
    display: inline-block;
    margin-top: 1rem;
    border: 1px solid rgba(79, 172, 254, 0.3);
}


/* _content/EducGameWebsite/Components/Common/Widgets/SpecificWidgets/Shared/DailyProgressWidget.razor.rz.scp.css */
/* Experiment*/
/* wwwroot/css/widgets.css */
.daily-leaderboard[b-vasgj8cidg] {
    padding: 15px;
    border-radius: 8px;
    background-color: #f8f9fa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.leader-row[b-vasgj8cidg] {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.leader-column[b-vasgj8cidg] {
    flex: 1;
    text-align: center;
    padding: 15px;
    border-radius: 6px;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.leader-column:hover[b-vasgj8cidg] {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.user-id[b-vasgj8cidg] {
    font-weight: bold;
    font-size: 1.1rem;
    color: #343a40;
}

.target[b-vasgj8cidg] {
    margin: 10px 0;
    color: #6c757d;
}

.progress[b-vasgj8cidg] {
    font-weight: 500;
    color: #28a745;
}

.badge-custom[b-vasgj8cidg] {
    margin-top: 10px;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.completed[b-vasgj8cidg] {
    background-color: #d4edda;
    color: #155724;
}

.in-progress[b-vasgj8cidg] {
    background-color: #fff3cd;
    color: #856404;
}

.loading[b-vasgj8cidg], .empty[b-vasgj8cidg] {
    text-align: center;
    padding: 20px;
    color: #6c757d;
}
/* _content/EducGameWebsite/Components/Common/Widgets/SpecificWidgets/Shared/ProgressChart.razor.rz.scp.css */
/* _content/EducGameWebsite/Components/Features/Account/Account.razor.rz.scp.css */
/* Account Page Specific Styles */
.user-card[b-ezp2jl2ckq] {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), inset 0 0 8px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.user-card:hover[b-ezp2jl2ckq] {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.25);
}

.user-card-header[b-ezp2jl2ckq] {
    font-family: var(--font-marketing);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.user-card-title[b-ezp2jl2ckq] {
    font-family: var(--font-marketing);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff8d2;
    margin: 0;
}

.user-card-subtitle[b-ezp2jl2ckq] {
    font-family: var(--font-marketing);
    font-size: 1rem;
    color: rgb(255, 248, 210, 0.8);
    margin-top: 0.25rem;
}

.user-card-content[b-ezp2jl2ckq] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.user-detail[b-ezp2jl2ckq] {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.client-name-label[b-ezp2jl2ckq] {
    font-family: var(--font-marketing);
    font-size: 1.1rem;
    color: rgb(255, 248, 210);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.user-detail-value[b-ezp2jl2ckq] {
    font-family: var(--font-marketing);
    font-size: 1.1rem;
    color: #fff8d2;
    font-weight: 500;
}

.user-actions[b-ezp2jl2ckq] {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.user-action-btn[b-ezp2jl2ckq] {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.assign-btn[b-ezp2jl2ckq] {
    background: linear-gradient(135deg, #5f27cd, #341f97);
    color: white;
}

.view-btn[b-ezp2jl2ckq] {
    background: linear-gradient(135deg, #54a0ff, #2e86de);
    color: white;
}

.manage-btn[b-ezp2jl2ckq] {
    background: linear-gradient(135deg, #1dd1a1, #10ac84);
    color: white;
}

/* For nested users (specialist's clients) */
.nested-users[b-ezp2jl2ckq] {
    margin-top: 1.5rem;
    padding-left: 1.5rem;
    border-left: 2px dashed rgba(255, 255, 255, 0.2);
}

.nested-title[b-ezp2jl2ckq] {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Empty state */
.empty-state[b-ezp2jl2ckq] {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin: 1rem 0;
}

.empty-state-text[b-ezp2jl2ckq] {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}
/* _content/EducGameWebsite/Components/Features/Account/Components/RefCodeGenerator.razor.rz.scp.css */
/* _content/EducGameWebsite/Components/Features/Game/GamePlatformPage.razor.rz.scp.css */
/* GamePlatform.razor.css */
.platform-title[b-q8vlsqdq8j] {
    text-align: center;
    margin: 2rem 0;
    font-size: 2.2rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.user-greeting[b-q8vlsqdq8j] {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.category-section[b-q8vlsqdq8j] {
    margin: 2rem auto;
    max-width: 1200px;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.category-section h3[b-q8vlsqdq8j] {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    padding-left: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    border-left: 4px solid #ff0076;
}

.horizontal-scroll[b-q8vlsqdq8j] {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: #ff0076 rgba(255, 255, 255, 0.1);
    -webkit-overflow-scrolling: touch;
}

.horizontal-scroll[b-q8vlsqdq8j]::-webkit-scrollbar {
    height: 8px;
}

.horizontal-scroll[b-q8vlsqdq8j]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.horizontal-scroll[b-q8vlsqdq8j]::-webkit-scrollbar-thumb {
    background: #ff0076;
    border-radius: 4px;
}

.vertical-scroll[b-q8vlsqdq8j] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-height: 600px;
    overflow-y: auto;
    padding: 1rem;
}

.empty-state[b-q8vlsqdq8j] {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.7);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    margin: 1rem;
}

.auth-prompt[b-q8vlsqdq8j] {
    text-align: center;
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.auth-button[b-q8vlsqdq8j] {
    background: linear-gradient(45deg, #ff0076, #4facfe);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 118, 0.3);
    position: relative;
    overflow: hidden;
}

.auth-button:hover[b-q8vlsqdq8j] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 118, 0.4);
}

.auth-button[b-q8vlsqdq8j]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            120deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent
    );
    transition: 0.5s;
}

.auth-button:hover[b-q8vlsqdq8j]::before {
    left: 100%;
}

/* Общие стили для фона */
body[b-q8vlsqdq8j] {
    background: linear-gradient(45deg, #00f2fe, #4facfe, #ff0076);
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.glow-effect[b-q8vlsqdq8j] {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    opacity: 0.4;
}
/* _content/EducGameWebsite/Components/Features/Game/GameViewerPage.razor.rz.scp.css */
/* GameViewer.razor.css */
.game-container[b-rpdpmsol6b] {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

.game-frame[b-rpdpmsol6b] {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0.5rem; /* 8px в rem */
    box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1); /* 10px в rem */
}

@media (max-width: 480px) and (orientation: portrait) {
    .game-frame[b-rpdpmsol6b] {
        border-radius: 0.25rem; /* Уменьшаем радиус скругления */
    }
}
/* _content/EducGameWebsite/Components/Features/Trajectories/Components/GameGrid.razor.rz.scp.css */
.games-title[b-izcml9q51k] {
    color: #ffffff;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.theme-beige .games-title[b-izcml9q51k] {
    color: #333333;
    text-shadow: none;
}

.no-games-message[b-izcml9q51k] {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 1.8rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.theme-beige .no-games-message[b-izcml9q51k] {
    color: #333333;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Стили для обертки карточки */
.games-grid[b-izcml9q51k] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px;
}

.theme-beige .games-grid[b-izcml9q51k] {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.games-grid :hover[b-izcml9q51k] {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
/* _content/EducGameWebsite/Components/Features/Trajectories/Components/StudentSelector.razor.rz.scp.css */
.student-selector[b-j77o4zv5kb] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.theme-beige .student-selector[b-j77o4zv5kb] {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.selector-title[b-j77o4zv5kb] {
    margin-top: 0;
    color: #ffffff;
    font-size: 1.2rem;
}

.theme-beige .selector-title[b-j77o4zv5kb] {
    color: #333333;
}

.student-list[b-j77o4zv5kb] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.student-list div[b-j77o4zv5kb] {
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
}

.theme-beige .student-list div[b-j77o4zv5kb] {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333333;
}

.student-list div:hover[b-j77o4zv5kb] {
    background: #ff00ff;
    color: white;
}

.theme-beige .student-list div:hover[b-j77o4zv5kb] {
    background: #d4b996;
}
/* _content/EducGameWebsite/Components/Features/Trajectories/Components/TrajectoryFilter.razor.rz.scp.css */
.trajectory-filter[b-x739sccd7a] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.theme-beige .trajectory-filter[b-x739sccd7a] {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.filter-section[b-x739sccd7a] {
    margin-bottom: 20px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.filter-section h5[b-x739sccd7a] {
    margin-bottom: 10px;
    font-weight: 500;
    color: #e0e0e0;
}
.filter-title[b-x739sccd7a] {
    margin-top: 0;
    color: #ffffff;
    font-size: 1.2rem;
}

.theme-beige .filter-title[b-x739sccd7a] {
    color: #333333;
}

.filter-group[b-x739sccd7a] {
    margin-bottom: 15px;
}

.group-title[b-x739sccd7a] {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 1rem;
}

.theme-beige .group-title[b-x739sccd7a] {
    color: #333333;
}

.filter-options[b-x739sccd7a] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-option[b-x739sccd7a] {
    padding: 8px 16px;
    border-radius: 20px;
    background-color: rgba(41, 98, 255, 0.1);
    border: 1px solid rgba(41, 98, 255, 0.3);
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-beige .filter-option[b-x739sccd7a] {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333333;
}

.filter-option:hover[b-x739sccd7a] {
    background-color: rgba(41, 98, 255, 0.2);
    transform: translateY(-2px);
}

.filter-option.selected[b-x739sccd7a] {
    background-color: rgba(41, 98, 255, 0.4);
    border-color: #2962FF;
    box-shadow: 0 0 10px rgba(41, 98, 255, 0.3);
}

.theme-beige .filter-option:hover[b-x739sccd7a] {
    background: #d4b996;
}
.btn[b-x739sccd7a] {
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-secondary[b-x739sccd7a] {
    background-color: #6c757d;
    color: white;
    border: none;
}

.btn-secondary:hover[b-x739sccd7a] {
    background-color: #5a6268;
}

.btn-primary[b-x739sccd7a] {
    background-color: #2962FF;
    color: white;
    border: none;
}

.btn-primary:hover[b-x739sccd7a] {
    background-color: #0039cb;
}
/* _content/EducGameWebsite/Components/Features/Trajectories/TrajectoriesPage.razor.rz.scp.css */
/* Фон страницы */
.page-background[b-rsfk8ume1c] {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    padding: 15px;
    transition: all 0.3s ease;
}

/* Бежевая тема */
.theme-beige .page-background[b-rsfk8ume1c] {
    background: #f5f1e8;
}

/* Контейнеры */
.layout-container[b-rsfk8ume1c] {
    display: flex;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.sidebar-trajs[b-rsfk8ume1c] {
    flex: 0 0 250px;
    align-self: flex-start;
    position: sticky;
    top: 15px;
}

.traj-games-area[b-rsfk8ume1c] {
    flex: 1;
    min-width: 0;
}

.traj-games-area-full[b-rsfk8ume1c] {
    width: 100%;
}

@media (max-width: 991px) {
    .sidebar-trajs[b-rsfk8ume1c] {
        display: none;
    }
}

/* Сетка игр */
.games-grid[b-rsfk8ume1c] {
    display: grid;
    gap: 1.5rem;
    padding: 1rem;
}

@media (min-width: 768px) {
    .games-grid[b-rsfk8ume1c] {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .games-grid[b-rsfk8ume1c] {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* _content/EducGameWebsite/Components/Features/Trajectories/TrajectoriesView.razor.rz.scp.css */
.trajectories-container[b-0ru1dg2k9x] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 60px); /* Вычитаем высоту шапки */
}

.trajectory-navigation[b-0ru1dg2k9x] {
    height: 30%;
    padding: 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    overflow-y: auto;
}

.games-area[b-0ru1dg2k9x] {
    height: 70%;
    padding: 15px;
    overflow-y: auto;
}

.back-button[b-0ru1dg2k9x] {
    background: none;
    border: none;
    color: #0d6efd;
    padding: 5px 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.back-button:hover[b-0ru1dg2k9x] {
    text-decoration: underline;
}

.navigation-cards[b-0ru1dg2k9x] {
    height: calc(100% - 40px);
}

.cards-list[b-0ru1dg2k9x] {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.trajectory-card[b-0ru1dg2k9x], .theme-card[b-0ru1dg2k9x], .level-card[b-0ru1dg2k9x] {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    width: 250px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: white;
}

.trajectory-card:hover[b-0ru1dg2k9x], .theme-card:hover[b-0ru1dg2k9x], .level-card:hover[b-0ru1dg2k9x] {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: #0d6efd;
}

.trajectory-card h4[b-0ru1dg2k9x], .theme-card h4[b-0ru1dg2k9x], .level-card h4[b-0ru1dg2k9x] {
    margin-top: 0;
    color: #212529;
}

.trajectory-meta[b-0ru1dg2k9x] {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.skill-badge[b-0ru1dg2k9x], .difficulty-badge[b-0ru1dg2k9x] {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.skill-badge[b-0ru1dg2k9x] {
    background-color: #e0f7fa;
    color: #0097a7;
}

.difficulty-badge[b-0ru1dg2k9x] {
    background-color: #fff3e0;
    color: #ef6c00;
}

.theme-order[b-0ru1dg2k9x] {
    margin-top: 8px;
    color: #6c757d;
    font-size: 0.9rem;
}

.level-card .level-order[b-0ru1dg2k9x], .level-card .games-count[b-0ru1dg2k9x] {
    margin-top: 5px;
    color: #6c757d;
    font-size: 0.9rem;
}

.games-grid[b-0ru1dg2k9x] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.placeholder[b-0ru1dg2k9x] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #6c757d;
}

.placeholder i[b-0ru1dg2k9x] {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #adb5bd;
}

.loading-placeholder[b-0ru1dg2k9x] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #6c757d;
}

.loading-placeholder i[b-0ru1dg2k9x] {
    font-size: 2rem;
    animation: spin-b-0ru1dg2k9x 1s linear infinite;
}

@keyframes spin-b-0ru1dg2k9x {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/* _content/EducGameWebsite/Components/Features/Workspace/Components/WidgetSection.razor.rz.scp.css */
.widget-section[b-tzff6lns94] {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.widget-section:hover[b-tzff6lns94] {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.section-title[b-tzff6lns94] {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(79, 172, 254, 0.5);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.widgets-grid[b-tzff6lns94] {
    display: inline;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.8rem;
}
/* _content/EducGameWebsite/Components/Features/Workspace/Components/WorkspaceHeader.razor.rz.scp.css */
.workspace-header[b-ta1m67lgst] {
    background: rgba(20, 20, 35, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 1rem; /* Фиксированный отступ сверху */
    left: 1%; /* Процентные отступы по бокам */
    right: 1%;
    height: 4rem;
    border-radius: 0.75rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    max-width: calc(100% - 40px);
}

.header-content[b-ta1m67lgst] {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1[b-ta1m67lgst] {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.user-actions[b-ta1m67lgst] {
    display: flex;
    gap: 1.2rem;
}

.nav-btn[b-ta1m67lgst] {
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-radius: 50px;
    padding: 0.7rem 1.6rem;
    color: white;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    backdrop-filter: blur(5px);
    font-weight: 500;
}

.nav-btn:hover[b-ta1m67lgst] {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.nav-btn i[b-ta1m67lgst] {
    font-size: 1.25rem;
}
/* _content/EducGameWebsite/Components/Features/Workspace/Components/WorkspaceNavMenu.razor.rz.scp.css */
.nav-menu[b-9ay1np40ks] {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 2rem 1.5rem;
    width: 100%;
}

.section-btn[b-9ay1np40ks] {
    background: transparent;
    /*border: none;*/
    border-radius: 12px;
    padding: 1.1rem 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-btn:hover[b-9ay1np40ks] {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(5px);
}

.section-btn[b-9ay1np40ks]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #4facfe, #00f2fe);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section-btn:hover[b-9ay1np40ks]::before {
    opacity: 1;
}

.section-btn.active[b-9ay1np40ks] {
    background: rgba(79, 172, 254, 0.15);
    color: white;
    font-weight: 500;
}

.section-btn.active[b-9ay1np40ks]::before {
    opacity: 1;
}

.section-icon[b-9ay1np40ks] {
    font-size: 1.3rem;
    min-width: 30px;
    color: #4facfe;
}
/* _content/EducGameWebsite/Components/Features/Workspace/WorkspacePage.razor.rz.scp.css */
/* _content/EducGameWebsite/Components/Shared/Login.razor.rz.scp.css */
.login-container[b-u5dwovsrpl] {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.login-title[b-u5dwovsrpl] {
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

.form-group[b-u5dwovsrpl] {
    margin-bottom: 20px;
}

.form-control[b-u5dwovsrpl] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus[b-u5dwovsrpl] {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.btn-primary[b-u5dwovsrpl] {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover[b-u5dwovsrpl] {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.alert[b-u5dwovsrpl] {
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.alert-danger[b-u5dwovsrpl] {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.validation-message[b-u5dwovsrpl] {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}
