/* Стили для панорамы Minecraft с блюр эффектом */
.minecraft-panorama-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.minecraft-panorama-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
    backdrop-filter: blur(2px);
}

/* Дополнительный блюр эффект для canvas */
.minecraft-panorama-container canvas {
    filter: blur(4px) brightness(0.8);
    transform: scale(1.1);
}

/* Анимация появления */
@keyframes panoramaFadeIn {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.minecraft-panorama-container {
    animation: panoramaFadeIn 2s ease-in-out;
}

/* Стили для карточки входа */
.card {
    box-shadow: 0 8px 32px rgba(100, 100, 100, 0.8), 
                0 4px 16px rgba(90, 90, 90, 0.6),
                0 2px 8px rgba(80, 80, 80, 0.4) !important;
}

/* Адаптивность */
@media (max-width: 768px) {
    .minecraft-panorama-container canvas {
        filter: blur(6px) brightness(0.7);
    }
}